iT邦幫忙

DAY 10
0

x86 android 設備與外部硬體溝通研究系列 第 10

x86 android 設備與外部硬體溝通研究 - Arduino 開發環境 (10/30)

  • 分享至 

  • xImage
  •  

我們的最終目標是想要拿 android 跟 arduino 溝通,今天簡單介紹如何建立 arduino 的開發環境

我們需要準備:

  1. 一張 arduino 的開發版
  2. 一條 usb 連接線
  3. (windows) 請到 arduino 下載 IDE package
  4. 這包 IDE 中包含 arduion serial port driver , 他會把 arduino 的 USB 轉換為 RS232 serial port 跟電腦溝通
  5. 把arduino 跟 PC連接後,看看裝置管理員,手動更新arduino driver ,選擇瀏覽剛剛下載的 IDE package 中 driver 資料夾,完成安裝
  6. (linux) 如果是 ubuntu 可以直接使以下指令安裝 IDE +driver

sudo apt-get update && sudo apt-get install arduino arduino-core
7. 開啟 IDE , 到上方 Tools> Board > 選擇你的板子名稱
8. 到 Tools > Serial Port 中選擇COM port , 現在主機板多數沒有 com port , 所以你應該會看到唯一的一個 port , 如果有2個以上,就試著選號碼比較大的,因為是新安裝的,系統會指派比較後面的號碼。
9. 到這邊大致上是完成了,要怎測試到底能不能動呢?
10. 可以選 File > Example > 1.Basic > Blink , 他會開啟一個簡單的範例
11. 我們稍微修改一下如下:

/*
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.

  Most Arduinos have an on-board LED you can control. On the Uno and
  Leonardo, it is attached to digital pin 13. If you're unsure what
  pin the on-board LED is connected to on your Arduino model, check
  the documentation at http://arduino.cc

  This example code is in the public domain.

  modified 8 May 2014
  by Scott Fitzgerald
 */


// 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(5000);              // wait for 5 second , 我改了這邊的數值為 5 秒鐘
  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
  delay(5000);              // wait for 5 second , 
}
  1. 然後選擇左上方的 verify 圖示,檢查有沒有語法錯誤
  2. verify 結果沒錯誤,就可以用 upload 把程式燒錄到arduino裡
  3. 你應該可以看到 arduino : 13 pin 連接的 LED (L) 橘色燈號每5秒鐘一明一滅
  4. 完成,有空可以多看看他內建的許多範例程式

我們明天見


上一篇
x86 android 設備與外部硬體溝通研究 - Cordova Plugin (9/30)
下一篇
x86 android 設備與外部硬體溝通研究 - Arduino firmata protocol -1 (11/30)
系列文
x86 android 設備與外部硬體溝通研究30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言