SlideShare a Scribd company logo
1 of 37
Download to read offline
XBee 無線傳輸
Arduino 機器人研習
講師: 賴偉民
為什麼要用無線通訊?
1.設備間的通訊更靈活
2.不受限於設備連結的長度
3.資料的運算不再受限於控制板
無線通訊模組
RF無線射頻
藍牙
RFID
XBee
WIFI
XBee 硬體介紹
硬體介紹
• XBee 硬體規格
– IEEE 802.15.4 ZigBee無線網路
– 非同步通訊裝置
– 工作電壓: 2.8-3.4 V
– 訊號發送消耗電流: 45-50mA
– 最大通訊速率250kbps
– 室內傳輸距離: 30公尺
– 室外傳輸距離: 100公尺
– 6個10-bits ADC輸入腳位及8個數位I/O腳位
硬體介紹
(1)互傳資料的XBee ID一定要相同
(2)發送和接收端名稱相反
ID:AAAA
發送端(另一塊XBee):1234
接收端(自己):5678
Data
ID:AAAA
發送端(另一塊XBee):5678
接收端(自己):1234
硬體介紹
• 一對多無線傳輸
ID:AAAA
發送端(另一塊XBee):1234
接收端(自己):5678
ID:AAAA
發送端(另一塊XBee):5678
接收端(自己):1234
ID:AAAA
發送端(另一塊XBee):5678
接收端(自己):1234
ID:AAAA
發送端(另一塊XBee):5678
接收端(自己):1234
XBee 硬體設定
XBee硬體設定
• XBee模組的設定需透過Digi公司開發的X-CTU軟
體
– http://www.digi.com/support/productdetail?pid=3
352&osvid=57&type=utilities
XBee硬體設定
• XBee設定-步驟一
– 安裝XBee驅動程式
– 將XBee裝至XBee USB轉板上
– 連接電腦
– 開啟XBee設定程式
XBee硬體設定
• XBee設定-步驟二
– 選取連接XBee的USB COM點
– 確認下列設定
Baud: 9600
Flow Control: NONE
Data Bits: 8
Parity: NONE
Stop Bits: 1
– 按下Test/Query
XBee硬體設定
• 如果彈出的視窗如圖顯
示,代表連線成功,按
下OK
XBee硬體設定
• 如果彈出的視窗如圖顯示,
代表有設定錯誤,請重新
檢查一次
XBee硬體設定
• XBee設定-步驟三
– 點選Modem Configuration
– 點選Read並確認程式有顯示
XBee的資訊
XBee硬體設定
• XBee設定-步驟四
– 將ID設定成AAAA
– 將DL(發送端)設定成5678
– 將MY(接收端)設定成1234
– 按下Write
– 設定完成
– 關閉程式後拔除USB
– 更換下一個XBee後,重覆
上面的步驟
XBee 範例 : 無線聊天室
XBee 範例 : 無線聊天室
• 透過XBee無線傳輸裝置,在兩台電腦間互相傳遞
訊息,並在X-CTU上顯示結果
Data
XBee 範例 : 無線聊天室
• 步驟一
– 兩兩成員之間互相配對相同的ID,以及相反的DL和MY
– 開啟X-CTU程式並連接
– 點選Terminal
XBee 範例 : 無線聊天室
• 步驟二
– 在下面的空白處輸入資料
(藍色字是送出的資料,紅色字是接收的資料)
Serial 通訊函式庫
Serial 通訊函式庫
• Arduino具備通訊用腳位
TX : 送出資料 RX : 接收資料
Serial 通訊函式庫
• Serial.begin(鮑率);
– 開啟與裝置間的通訊,針對不同的裝置,在初始化時
給予不同的鮑率值,例如與電腦的通訊設定成9600
<補>什麼是鮑率?
鮑率是資料傳輸的速率,也就是每秒傳送的資料多寡,
單位是bps(bits per second),常見的鮑率有1200、
2400、4800、9600、38400等,較常用的是9600
Serial 通訊函式庫
Serial.begin(9600);
Serial3.begin(9600);
Serial2.begin(9600);
Serial1.begin(9600);
Serial 通訊函式庫
• Serial.available();
– 判別是否有資料正被輸入Arduino,如果有的話,此函
式會大於0;此指令較常用在判斷式的條件上
ex.
if(Serial.available()>0){
}
Serial 通訊函式庫
• Serial.read();
– 當電腦或其它設備要送資料給Arduino時,可以用此函
式接收,但輸入的值只限於ASCII碼上有的
ex.
int c;
c=Serial.read( );
Serial 通訊函式庫
• ASCII
– 大部份的電腦都用8
bits來儲存字元,因
此用0到255這256個
數字來對應不同的字
元。
Serial 通訊函式庫
• Serial.print(字串);
• Serial.println(字串);
– 用於將資料輸出給其它裝置,如果是輸出給電腦,寫
法如上面所示:如果是從Arduino的1號和2號通訊接腳
輸出給其它裝置,則需寫成:
Serial1.println(字串);
Serial2.println(字串);
Serial 通訊函式庫
• 輸出資料型態:
– Serial.println(a,DEC); 以10進位形式輸出
– Serial.println(a,HEX); 以16進位形式輸出
– Serial.println(a,BIN); 以2進位形式輸出
– Serial.println(a,OCT); 以8進位形式輸出
– Serial.println(a); 以字串形式輸出
Serial 通訊函式庫
• Serial.write();
– 將資料以ASCII的型式輸出(較舊的版本是用
Serial.println( ,BYTE)來輸出ASCII的資料,新版的改用
此函式)
ex.
Serial.write(123); //根據ASCII表可知會輸出{
Serial.println( );
XBee 範例 : PC與Arduino
XBee 範例 : PC與Arduino
• 透過XBee無線傳輸裝置,從電腦傳送資料給
Arduino,並透過Arduino上的USB將資料回傳至
電腦上的Serial Monitor
XBee 範例 : PC與Arduino
• 材料
– Arduino X 1
– XBee X 2
– XBee USB轉接板 X 1
– XBee Explorer轉板 X 1
– 麵包板 X 1
XBee 範例 : PC與Arduino
• XBee Explorer轉板
Dout: 從XBee送值給Arduino
Din : 接收Arduino傳給XBee的值
XBee 範例 : PC與Arduino
• 接線
將XBee USB轉接板連接至電腦
XBee 範例 : PC與Arduino
XBee 範例 : PC與Arduino
• 開啟XBee驅動程式
• 選擇正確的COM點
• 連線成功後點選Terminal
XBee 範例 : PC與Arduino

More Related Content

What's hot

Industrial Networking - Profibus
Industrial Networking - ProfibusIndustrial Networking - Profibus
Industrial Networking - ProfibusYogesh Kumar
 
「Python言語」はじめの一歩 / First step of Python
「Python言語」はじめの一歩 / First step of Python「Python言語」はじめの一歩 / First step of Python
「Python言語」はじめの一歩 / First step of PythonTakanori Suzuki
 
CoAP master presentaion
CoAP master presentaionCoAP master presentaion
CoAP master presentaionTarik Sefiri
 
Comparing ospf vs isis
Comparing ospf vs isisComparing ospf vs isis
Comparing ospf vs isisrushi7567
 
Wi-Fi Wireless Fidelity
Wi-Fi Wireless FidelityWi-Fi Wireless Fidelity
Wi-Fi Wireless FidelityGurpreet Singh
 
Ccnp workbook network bulls
Ccnp workbook network bullsCcnp workbook network bulls
Ccnp workbook network bullsSwapnil Kapate
 
List of usernames and passwords for Huawei routers
List of usernames and passwords for Huawei routersList of usernames and passwords for Huawei routers
List of usernames and passwords for Huawei routersHuanetwork
 
Nokia_IP-MPLS_SmartGrid_Application_Note_EN
Nokia_IP-MPLS_SmartGrid_Application_Note_ENNokia_IP-MPLS_SmartGrid_Application_Note_EN
Nokia_IP-MPLS_SmartGrid_Application_Note_ENJuan Boggiano
 
Comando de IOS de Cisco
Comando de IOS de CiscoComando de IOS de Cisco
Comando de IOS de Ciscojamigog
 
VOIP Design & Implementation
VOIP Design & ImplementationVOIP Design & Implementation
VOIP Design & ImplementationAhmed A. Arefin
 
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)Ming-Hung Hseih
 

What's hot (20)

Industrial Networking - Profibus
Industrial Networking - ProfibusIndustrial Networking - Profibus
Industrial Networking - Profibus
 
1 hart
1 hart1 hart
1 hart
 
Sensor networks: 6LoWPAN & LPWAN
Sensor networks: 6LoWPAN & LPWANSensor networks: 6LoWPAN & LPWAN
Sensor networks: 6LoWPAN & LPWAN
 
「Python言語」はじめの一歩 / First step of Python
「Python言語」はじめの一歩 / First step of Python「Python言語」はじめの一歩 / First step of Python
「Python言語」はじめの一歩 / First step of Python
 
CoAP master presentaion
CoAP master presentaionCoAP master presentaion
CoAP master presentaion
 
Redes industriais aula-1
Redes industriais aula-1Redes industriais aula-1
Redes industriais aula-1
 
Comparing ospf vs isis
Comparing ospf vs isisComparing ospf vs isis
Comparing ospf vs isis
 
Introduction to PROFIBUS and PROFINET - andy verwer
Introduction to PROFIBUS and PROFINET -  andy verwerIntroduction to PROFIBUS and PROFINET -  andy verwer
Introduction to PROFIBUS and PROFINET - andy verwer
 
Python變數與資料運算
Python變數與資料運算Python變數與資料運算
Python變數與資料運算
 
Industrial ethernet e zigbee
Industrial ethernet e zigbeeIndustrial ethernet e zigbee
Industrial ethernet e zigbee
 
Wi-Fi Wireless Fidelity
Wi-Fi Wireless FidelityWi-Fi Wireless Fidelity
Wi-Fi Wireless Fidelity
 
Ccnp workbook network bulls
Ccnp workbook network bullsCcnp workbook network bulls
Ccnp workbook network bulls
 
List of usernames and passwords for Huawei routers
List of usernames and passwords for Huawei routersList of usernames and passwords for Huawei routers
List of usernames and passwords for Huawei routers
 
Nokia_IP-MPLS_SmartGrid_Application_Note_EN
Nokia_IP-MPLS_SmartGrid_Application_Note_ENNokia_IP-MPLS_SmartGrid_Application_Note_EN
Nokia_IP-MPLS_SmartGrid_Application_Note_EN
 
CCIE Lab - IGP Routing
CCIE Lab -  IGP Routing  CCIE Lab -  IGP Routing
CCIE Lab - IGP Routing
 
Senai recife
Senai   recifeSenai   recife
Senai recife
 
Comando de IOS de Cisco
Comando de IOS de CiscoComando de IOS de Cisco
Comando de IOS de Cisco
 
VOIP Design & Implementation
VOIP Design & ImplementationVOIP Design & Implementation
VOIP Design & Implementation
 
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
 
Protocole EIGRP
Protocole EIGRPProtocole EIGRP
Protocole EIGRP
 

Similar to Chapter 2 XBee無線傳輸

成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統艾鍗科技
 
成果展簡報 嵌入式無線數位廟宇求籤管理系統
成果展簡報 嵌入式無線數位廟宇求籤管理系統 成果展簡報 嵌入式無線數位廟宇求籤管理系統
成果展簡報 嵌入式無線數位廟宇求籤管理系統 艾鍗科技
 
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2Awei Hsu
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報艾鍗科技
 
Iot technology and implementation
Iot technology and implementationIot technology and implementation
Iot technology and implementationkuoyichen
 
物聯網科技與實作 Iot technology and projects
物聯網科技與實作 Iot technology and projects物聯網科技與實作 Iot technology and projects
物聯網科技與實作 Iot technology and projectsKuo-Yi Chen
 
Team work4.3华为
Team work4.3华为Team work4.3华为
Team work4.3华为zy620713
 
[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務MAKERPRO.cc
 
Alibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconAlibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconYiwei Ma
 
02 IoT implementation
02 IoT implementation02 IoT implementation
02 IoT implementation艾鍗科技
 
2015 台联 产品简报 简体版
2015 台联 产品简报 简体版2015 台联 产品简报 简体版
2015 台联 产品简报 简体版萬清 Bryan 范
 
2015 北京台联 产品简报
2015 北京台联 产品简报2015 北京台联 产品简报
2015 北京台联 产品简报暄祐 沈
 
Cisco路由器产品介绍1
Cisco路由器产品介绍1Cisco路由器产品介绍1
Cisco路由器产品介绍1zhjun
 
無線網路資訊安全概論 講義
無線網路資訊安全概論 講義無線網路資訊安全概論 講義
無線網路資訊安全概論 講義Hayashi Yoshiki
 
無線網路資訊安全概論 講義
無線網路資訊安全概論 講義無線網路資訊安全概論 講義
無線網路資訊安全概論 講義Hayashi Yoshiki
 
物联网与微博平台探索
物联网与微博平台探索物联网与微博平台探索
物联网与微博平台探索Tang Fulin
 

Similar to Chapter 2 XBee無線傳輸 (20)

成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統
 
成果展簡報 嵌入式無線數位廟宇求籤管理系統
成果展簡報 嵌入式無線數位廟宇求籤管理系統 成果展簡報 嵌入式無線數位廟宇求籤管理系統
成果展簡報 嵌入式無線數位廟宇求籤管理系統
 
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2
藍牙BLE 低功耗系統在iBeacon - IoT 物聯網上的應用 v2
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報
 
Ap
ApAp
Ap
 
Iot technology and implementation
Iot technology and implementationIot technology and implementation
Iot technology and implementation
 
物聯網科技與實作 Iot technology and projects
物聯網科技與實作 Iot technology and projects物聯網科技與實作 Iot technology and projects
物聯網科技與實作 Iot technology and projects
 
Team work4.3华为
Team work4.3华为Team work4.3华为
Team work4.3华为
 
[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務
 
Alibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconAlibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qcon
 
02 IoT implementation
02 IoT implementation02 IoT implementation
02 IoT implementation
 
走近ZigBee
走近ZigBee走近ZigBee
走近ZigBee
 
Tcpip
TcpipTcpip
Tcpip
 
2015 台联 产品简报 简体版
2015 台联 产品简报 简体版2015 台联 产品简报 简体版
2015 台联 产品简报 简体版
 
2015 北京台联 产品简报
2015 北京台联 产品简报2015 北京台联 产品简报
2015 北京台联 产品简报
 
Cisco路由器产品介绍1
Cisco路由器产品介绍1Cisco路由器产品介绍1
Cisco路由器产品介绍1
 
無線網路資訊安全概論 講義
無線網路資訊安全概論 講義無線網路資訊安全概論 講義
無線網路資訊安全概論 講義
 
無線網路資訊安全概論 講義
無線網路資訊安全概論 講義無線網路資訊安全概論 講義
無線網路資訊安全概論 講義
 
物联网与微博平台探索
物联网与微博平台探索物联网与微博平台探索
物联网与微博平台探索
 
S4A
S4AS4A
S4A
 

More from CAVEDU Education

Google TPU Edge SBC_190424
Google TPU Edge SBC_190424Google TPU Edge SBC_190424
Google TPU Edge SBC_190424CAVEDU Education
 
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...CAVEDU Education
 
BBC Micro:bit beginner project
BBC Micro:bit beginner projectBBC Micro:bit beginner project
BBC Micro:bit beginner projectCAVEDU Education
 
LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 CAVEDU Education
 
Latte panda workshop_japan
Latte panda workshop_japanLatte panda workshop_japan
Latte panda workshop_japanCAVEDU Education
 
拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707CAVEDU Education
 
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeLinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeCAVEDU Education
 
170615 國中小自造者教育師資培訓營
170615  國中小自造者教育師資培訓營170615  國中小自造者教育師資培訓營
170615 國中小自造者教育師資培訓營CAVEDU Education
 
170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板CAVEDU Education
 
Maker Movement and Education in Taiwan
Maker Movement and Education in TaiwanMaker Movement and Education in Taiwan
Maker Movement and Education in TaiwanCAVEDU Education
 
物聯網教學與上海深圳maker行
物聯網教學與上海深圳maker行物聯網教學與上海深圳maker行
物聯網教學與上海深圳maker行CAVEDU Education
 
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireIBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireCAVEDU Education
 
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireAAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireCAVEDU Education
 
物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台CAVEDU Education
 
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座FinalCAVEDU Education
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsCAVEDU Education
 
LinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceLinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceCAVEDU Education
 

More from CAVEDU Education (20)

Google TPU Edge SBC_190424
Google TPU Edge SBC_190424Google TPU Edge SBC_190424
Google TPU Edge SBC_190424
 
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
From computational Thinking to computational Action - Dr. Hal Abelson, MIT Ap...
 
180321 MIT見聞分享
180321   MIT見聞分享180321   MIT見聞分享
180321 MIT見聞分享
 
BBC Micro:bit beginner project
BBC Micro:bit beginner projectBBC Micro:bit beginner project
BBC Micro:bit beginner project
 
LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697 LINE Messaging API with LinkIt 7697
LINE Messaging API with LinkIt 7697
 
Latte panda workshop_japan
Latte panda workshop_japanLatte panda workshop_japan
Latte panda workshop_japan
 
拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707拿鐵熊貓外殼設計0707
拿鐵熊貓外殼設計0707
 
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / OnkscapeLinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
LinkIt 7697 outer case - DesignSpark Mechanical / Onkscape
 
170615 國中小自造者教育師資培訓營
170615  國中小自造者教育師資培訓營170615  國中小自造者教育師資培訓營
170615 國中小自造者教育師資培訓營
 
170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板170522_Raspberry Pi 相容開發板
170522_Raspberry Pi 相容開發板
 
LinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorialLinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorial
 
Maker Movement and Education in Taiwan
Maker Movement and Education in TaiwanMaker Movement and Education in Taiwan
Maker Movement and Education in Taiwan
 
物聯網教學與上海深圳maker行
物聯網教學與上海深圳maker行物聯網教學與上海深圳maker行
物聯網教學與上海深圳maker行
 
161123
161123161123
161123
 
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker FaireIBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
IBM以雲端技術與物聯網創新產業應用@2016 New Taipei Maker Faire
 
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faireAAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
AAEON 當創客碰上UP板 - Intel Cherry Trail 高效能maker開發者平台@2016 new taipei maker faire
 
物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台物聯網好棒棒 您專屬的IoT私有雲平台
物聯網好棒棒 您專屬的IoT私有雲平台
 
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
絕地武士心靈控制家用雲端智慧型物聯網光劍搭載無線路由器光劍底座Final
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- Basics
 
LinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud serviceLinkIt ONE tutorial #2- Communication and cloud service
LinkIt ONE tutorial #2- Communication and cloud service
 

Chapter 2 XBee無線傳輸