
arduino 开发版 uno 的驱动程序,有时候没有安装,我使用 驱动人生,安装的
下面图片显示 arduino IDE ,是官网 下载的。

#defineLED13 //define led 13
voidsetup(){
// put your setup code here, to run once:
pinMode(LED,OUTPUT);
}
voidloop(){
// put your main code here, to run repeatedly:
digitalWrite(LED,HIGH);
delay(2000);
digitalWrite(LED,LOW);
delay(5000);
}
本文网址:http://www.ruanjianyingyong.com/html/Arduino/1250.html
读完这篇文章后,您心情如何?
