2016年7月16日 星期六

[Arduino]Day1-安裝與Hello world


1.手邊的Arduino是UNO-R3
接上USB就能自動抓到驅動

2.官網
https://www.arduino.cc/
到download抓開發軟體,選just download即可
https://www.arduino.cc/en/Main/Donate
目前版本
1.6.9

3.硬體設定
在工具列->工具->板子,選擇UNO

4.第一個練習 Hello world
int input_char;
int ledpin=13;
void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);//設定鮑率
  pinMode(ledpin,OUTPUT);//設定pin13為輸出,因為他接在LED
}

void loop() {
  // put your main code here, to run repeatedly:
  input_char=Serial.read();//讀取串列埠
  if(input_char=='R')//如果收到'R'
  {
    digitalWrite(ledpin,HIGH);//將Pin13設定High,亮LED
    delay(500);//Delay0.5秒
    digitalWrite(ledpin,LOW);//將Pin13設定Low,滅LED
    delay(500);
    Serial.println("Hello World!");//顯示Hello world
    }
}

5.打勾邊譯

6.右邊箭頭上傳

7.工具列->工具->序列埠控制器
叫出序列埠控制器
打入大寫R,按傳送,就可以看到LED亮,滅,序列埠監控出現"Hello World!"






沒有留言:

張貼留言

[Sensor]MPU92/65

MPU92/65是很久以前買的感測器 基本上有加速度計、陀螺儀、電子羅盤、溫度計 以下是該電子商城的介紹 https://www.factoryforward.com/product/gy-87-mpu-9265-3-axis-9-dof-attitude-gyro-magnet...