有趣的專案及參考資料
Ted Lee
Lct4246@gmail.com
Lct4246@gmail.com
Feb. 19, 2017
参考資料:
[1]| WiFi晶片 | Arduino晶片 | 作業系統 | 應用 | |
| Arduino Yun | Atheros AR9331 | ATmega32U4 | Linino(OpenWrt) | Router+Arduino |
| 聯發科LinkIt Smart 7688 | MT7688AN | ─ | OpenWrt | Router |
| 聯發科LinkIt Smart 7688 Duo | MT7688AN | ATmega32U4 | OpenWrt | Router+Arduino |
| 樹莓派(Raspberry Pi) 3 | BCM43143 | ─ | Debian | 單板電腦 |
| Arduino | ─ | ATmega32U4 | ─ | 微控制器(互動艺術) |
| 聯發科LinkIt ONE | MT5931 | ─ | ─ | GPRS |
| 雲服務 | 亞馬遜AWS | MCS | ||
| 微軟Azsure IBM Bluemix |
[1]
[1]
Gesture based TV Remote Control Using Raspberry Pi and Skywriter HAT
[1]int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
void setup() {
// declare pin 9 to be an output:
pinMode(9, OUTPUT);
}
void loop() {
// set the brightness of pin 9:
analogWrite(9, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255){
fadeAmount = -fadeAmount ;
}
delay(30); // wait for 30 milliseconds to see the dimming effect
}
流程圖(.vsdx)int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by
void setup() {
// declare pin 9 to be an output:
pinMode(9, OUTPUT);
}
void loop() {
// set the brightness of pin 9:
analogWrite(9, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255){
fadeAmount = -fadeAmount ;
}
delay(30); // wait for 30 milliseconds to see the dimming effect
}
流程圖(.vsdx)