setup()
每次 Arduino 上电或重启后,setup 函数只运行一次。
示例
int buttonPin = 3; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { // ... }