Arduino

0x01 配置arduino开发环境

  1. 下载arduino开发软件http://arduino.cc/en/Main/Software

  2. 安装arduino uno开发板驱动

    2.1 usb 连接 arduino uno开发板 2.2 点击 控制面板 -> 端口 右击有黄色叹号的 USB Device 更新安装驱动

    image

  3. 测试简单 demo

    image

     void setup()
     { 
     }
     void loop()
     {   
       digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
       delay(1000);               // wait for a second
       digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
       delay(1000);               // wait for a second
    
     }
    

0x02 其他资料

参考资料http://www.geek-workshop.com/forum-49-1.html

Comments