void setup() {
// 注释
// put your setup code here, to run once:
// 设置 13 引脚 输出 模式
pinMode(13,OUTPUT);
pinMode(12,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
// 13 引脚 输出 高电平
digitalWrite(13,HIGH);
digitalWrite(12,LOW);
delay(1000); // 延迟/等待 1s=1000ms
digitalWrite(13,LOW);
digitalWrite(12,HIGH);
delay(1000);
}