Arduino IDE 安装方法 在Intel Edison 官网有详细的介绍链接如下
https://software.intel.com/zh-cn/articles/get-started-arduino-install
Arduino 库
https://github.com/Seeed-Studio/Sketchbook_Starter_Kit_V2.0
程序库的安装
LED Socket kit v1.3的原理图
用到时候遇到一个奇异的问题
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
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
}
板载的LED 能正常 一闪一闪
可以将LED的端口改3时,却不正常。
后面重启电脑后,重新编译下载程序,问题解决
|