arduino.tw
Flash互動遊戲-打地鼠 [光敏電阻應用]
http://www.arduino.tw/index.php/course/simple-arduino/flash互動遊戲-打地鼠-光敏電阻應用.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週一, 10 十月 2011 18:40. 包含範圍 Flash ActionScript 3.0 Arduino MAC平台. 是依照 GNU General Public License. Powered By T3 Framework.
arduino.tw
9.繼電器控制
http://www.arduino.tw/index.php/course/head-first-arduino/9-繼電器控制.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週五, 04 六月 2010 15:57. Int pin = 7; int incomingByte = 0; void setup() { Serial.begin(9600); pinMode(pin,OUTPUT); } void loop () { if(Serial.available() 0){ incomingByte = Serial.read(); Serial.print("ON! Serial.println(incomingByte); if(incomingByte = 65){ / A digitalWrite(pin,HIGH); delay(150); }else{ digitalWrite(pin,LOW); delay(150); } } }. 是依照 GNU General Public License. Powered By T3 Framework.
arduino.tw
2.了解Arduino硬體
http://arduino.tw/index.php/course/head-first-arduino/2-arduino.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週五, 28 五 2010 03:16. 是依照 GNU General Public License. Powered By T3 Framework.
arduino.tw
1.安裝Arduino
http://www.arduino.tw/index.php/course/head-first-arduino/1-arduino入門教學.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週三, 24 一月 2007 18:50. 目前Arduino軟體已經進化成兩個版本,一是Arduino 1.0.x,另一個版本為Arduino 1.5.x。 兩者的不同處在於1.0.x不支援最新款的Arduino DUE開發板,而1.5.x可以支援全系列的Arduino板子,而且1.5.x還新增了中文語系,您可以依據需求下載適合的版本,下載的網址如下. Int ledPin = 13;. PinMode(ledPin, OUTPUT); / 設定腳位輸出狀態. DigitalWrite(ledPin, HIGH);. DigitalWrite(ledPin, LOW); / 設定PIN13. Delay(1000); / 延遲. 如果你購買的是基本款Arduino UNO,那請在上面的選單先選Tools- Board- Arduino UNO. Powered By T3 Framework.
arduino.tw
8.加速度感測
http://arduino.tw/index.php/course/head-first-arduino/8.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週一, 15 七月 2013 14:25. 是依照 GNU General Public License. Powered By T3 Framework.
arduino.tw
3.基本電子電路概念
http://www.arduino.tw/index.php/course/head-first-arduino/3.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週四, 03 六月 2010 12:29. 由圖中可看到, 其中的元件組成有一個電池、一組電線、直流馬達, 其中一條連向馬達的電線, 中間被一個按壓式開關阻隔。 如果電池的電力充足, 並打開開關, 那麼直流馬達將開始旋轉。 這是如何工作的 我們可以將整個裝置想像成如同一套水力運作裝置, 電池就是水幫浦、按壓式開關就是水龍頭、直流馬達是水車輪。 當你旋轉打開水龍頭, 如同按壓電路中的開關, 水順著幫浦的壓力被傳送到水管之中, 水會衝擊水車使它開始旋轉。 左圖是一個水力的運作裝置示意圖, 其中有兩個重要的關鍵 水的壓力 (決定於幫補的壓力供給) 及水管中流動的水量 (水管的尺寸會影響水的壓力, 進而也影響水對水車的衝擊力)。 是一個水力的運作裝置示意圖, 其中有兩個重要的關鍵 水的壓力 (決定於幫補的壓力供給) 及水管中流動的水量 (水管的尺寸會影響水的壓力, 進而也影響水對水車的衝擊力)。
arduino.tw
0.如果你還不知道Arduino是什麼?
http://arduino.tw/index.php/course/head-first-arduino/0-如果你還不知道arduino是什麼?.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週二, 19 六月 2012 06:53. An Introduction to the Arduino. Make創辦人Dale Dougherty來台灣演講( MAKE Taiwan. 是依照 GNU General Public License. Powered By T3 Framework.
arduino.tw
Arduino入門
http://www.arduino.tw/index.php/course/head-first-arduino.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. 發佈於 週一, 15 七月 2013 14:25. 發佈於 週二, 19 六月 2012 06:53. An Introduction to the Arduino. Make創辦人Dale Dougherty來台灣演講( MAKE Taiwan. 發佈於 週日, 12 九月 2010 06:03. RandNumber1 = random(300);. Serial.print("Number1 = ");. RandNumber2 = random(10, 20);. Serial.print("Number2 = ");. 發佈於 週一, 12 九月 2011 16:41. Int incomingByte = 0;. For incoming serial data. Opens serial port, sets data rate to 9600 bps. Say what you got:.
arduino.tw
6.距離感測
http://www.arduino.tw/index.php/course/head-first-arduino/6.html
Arduino 連接 Flash 方法 in Windows. Flash CS5 AS 3.0 with Arduino in MAC. RandomBox 亂數選擇器 max7219 arduino. Arduin Sharp GP2D12 連接方式. 發佈於 週五, 28 五 2010 09:32. 1 先查看sharp gp2d12這顆距離感測器的相關datasheet sparkfun. 中查到他是屬於短距離偵測,偵測範圍從3cm 40cm左右,輸出的電壓從3.1v 0.3v. Int potPin = 0;. Int analog = 0;. Analog = analogRead(potPin);. 是依照 GNU General Public License. Powered By T3 Framework.
SOCIAL ENGAGEMENT