digitalWrite(led,LOW); //led引脚输出低电平,点亮led delay(1000); //延时1s digitalWrite(led,HIGH); //led引脚输出高电平,熄灭led delay(1000); //延时1s