Arduino
0x01 配置arduino开发环境
下载arduino开发软件http://arduino.cc/en/Main/Software
安装arduino uno开发板驱动
2.1 usb 连接 arduino uno开发板 2.2 点击 控制面板 -> 端口 右击有黄色叹号的 USB Device 更新安装驱动
测试简单 demo
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 }