Arduino GPIO public Arduino Uno Rev3 ピン配置 UNO R3 | Arduino Documentation 回路図 Arduino_Uno_Rev3-schematic.pdf GPIO 1 2 3 4 5 6 7 8 9 10 11 12void setup() { // put your setup code here, to run once: pinMode(0, OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(0, HIGH); delay(1000); digitalWrite(0, LOW); delay(1000); }