SlideShare a Scribd company logo
1 of 42
Download to read offline
IoT
ESP8266
材料
• Adruino Nano x 1
• ESP8266 x 1
• FTDI232TTL x 1
• RGB LED x 1
• 杜邦線數根
開發套件和平台
ESP8266 介紹
ESP8266
介紹
• 規格-ESP-12

802.11 b/g/n

WiFi Direct (P2P)、soft-AP

整合TCP/IP 協議

整合TR switch、 balun、LNA、 PA 和 matching network

整合 PLLs、穩壓器、DCXO 和電源管理單元

802.11b模式下 +19.5dBm 的輸出功率

⼩小於 10uA 的漏电流

整合低功耗 32 位元 CPU,可以兼作應⽤用處理器

SDIO 1.1/2.0、 SPI、UART

STBC、 1×1 MIMO、2×1 MIMO

A-MPDU & A-MSDU 聚合 & 0.4ms 的保護間隔

2ms 之内唤醒並開始傳送資料

待機狀態消耗功率少於 1.0mW (DTIM3)
ESP8266
功能
• 序列傳輸 : 最⼤大速率 460800 bps
• PWM : 燈光調節 RGB LED, ⾺馬達調速等
• GPIO : 控制開關 繼電器等
ESP8266
⼯工作模式
• SAT : 透過路由器連接網路
• AP : 做為 AP 提供設備連結
• SAT+AP : 混合模式
ESP8266
AT
• https://github.com/espressif/esp8266_at/wiki
ESP8266
NodeMCU
• http://www.nodemcu.com/index_cn.html
連接線路
LAB 000
接腳說明
PIN Function Description
1 URXD
1.UART_RXD,接收︔;
2.General Purpose Input/Output:GPIO3︔;
2 UTXD
1.UART_TXD,發送︔;
2)General Purpose Input/Output:GPIO1︔;
5 RESET(GPIO 16) 外部Reset,低電位重開,⾼高電位⼯工作(default)︔;
6 GND GND
8 VCC 3.3V
9 ANT WiFi Antenna
11 GPIO0
預設WiFi Status:WiFi⼯工作指⽰示燈
1.⼯工作模式选择:
空接:Flash Boot,⼯工作模式︔;
接地:UART Download,下載模式︔;
12 ADC ADC,输入:0V-1V︔;
13 GPIO15
14 CH_PD
1.⾼高电位⼯工作︔;
2.低电位關閉供電︔;
15 GPIO2 空接:⼯工作模式︔;預設⾼高電位
燒寫韌體
• 切斷ESP8266電源,將 GPIO0 接地重開進⼊入燒寫模式
FIRMWARE
Espressif Systems
LAB 101
下載
• https://github.com/espressif/esp8266_at
• AT 版本 0.20
• SDK 0.9.4
燒寫位址
• 路徑 : FirmwareAT020094
連結
• ⼯工具 

ESP8266 Config
更新
• AT 平台⼀一直都在發展 尚有很多 BUG

https://espressif.com/new-sdk-release/
• ⺫⽬目前版本是 

ESP8266 SDK (esp_iot_sdk_v1.0.1_b1_15_04_02)
• 下載位址

http://bbs.espressif.com/viewtopic.php?
f=5&t=321&sid=02f8c3b3a9a0045ffec0440a07d70e8e
更新並燒寫
• 路徑 : FirmwareAT023101b
AT指令
Espressif Systems
LAB 102
AT 指令練習
• 路徑 : FirmwareAT/023101b4A-ESP8266 AT 指令_V0.23b1.pdf
• 原本晶⽚片傳輸是 115200 需要改為 9600 才能供 Arduino 使⽤用

AT+UART_DEF = 9600,8,1,0,0
• 開啟 Arduino 燒寫 

LabsLab102Arduino

WIFI_Command
AT
指令 描述
AT 測試
AT+RST 重啟
AT+GMR 版本
AT+GSLP 進⼊入 deep-sleep
ATE 開關 ECHO 模式
AT+RESTORE 恢複出廠設置
AT+UART_CUR 暫時更改⺫⽬目前傳輸率
AT+UART_DEF 更改⺫⽬目前傳輸率 寫到 FLASH
SERVER
建⽴立 Server 並提供內容
LAB 103
線路連接
撰寫 ARDUINO和網⾴頁 程式
• 路徑

LabsLab103ArduinoWIFI_SERVER
RGB LED
Arduino 透過 AT 將 ESP8266 設置為
SERVER, 透過將⾴頁控制 RGB LED
LAB 104
撰寫 ARDUINO和網⾴頁 程式
• 路徑

LabsLab104ArduinoWIFI_LED
改寫為 PWM 選⾊色
• 路徑

LabsLab104Arduino
WIFI_LEDPWM
NODEMCU
透過 LUA 腳本開發 IoT
LAB 105
下載並燒寫 NODEMCU
• 下載 Firmware

http://bbs.nodemcu.com/t/nodemcu-firmware-download-
build-20150318-new-location/27
• 路徑

FirmwareNodeMCU
LUA 腳本
• http://www.lua.org/
• NodeMCU API ⼿手冊

路徑:Firmware/NodeMCU/

nodeMcuAPI簡中.pdf

NodeMCU API Instruction En.pdf
⼯工具
LuaLoader
• 設定 PORT
• 再點選 Open Comx
⼯工具
LuaLoader
• 按下右側的 Restart 或是輸⼊入 node.restart()

正常情況下會看到 NodeMCU x.x.x build … 等資訊
GPIO
• 輸出GPIO0

gpio.mode(3,gpio.OUTPUT)
• 將 GPIO0 輸出⾼高電位

gpio.write(3,gpio.HIGH)
• 讀取

gpio.mode(3,gpio.INPUT,gpio.FLOAT)

gpio.read(3)
原始碼
• https://github.com/nodemcu/nodemcu-firmware
NODEMCU
撰寫 Lua 讓ESP8266⼀一啟動即連網並取
得IP
LAB 106
INIT.LUA
• NodeMCU ⼀一啟動⾃自動執⾏行的腳本
燒寫
• 將 Lab106 的 *.lua 覆寫到Tools
Lua Programs
• ⼯工具 NodeMCU Studio 2015

路徑 : Tools/NodeMCU Studio
2015_beta0.2.exe
• 按下 Download 即可寫⼊入
NODEMCU
取得遠端 API 服務並解析資料
LAB 107
解析字串
• 字串處理教學

https://www.ptt.cc/bbs/mud_sanc/M.1371321418.A.995.html
• JSON 物件

http://www.kyne.com.au/~mark/software/lua-cjson-manual.html
• Table 物件

http://lua-users.org/wiki/TablesTutorial
處理取得物件
• 4~8⾏行處理
HEADER 和 JSON
NODEMCU
獨⽴立運作的 WWW Server
控制 GPIO 0 和 GPIO 4
LAB 108
WEB SERVER
• 路徑

LabsLab108
• 執⾏行並取得 IP
UNION U INC.
通聯⾏行動創意科技有限公司
83144 ⾼高雄市⼤大寮區承德街5號1F / 電郵 : service@unumobile.com / 統⼀一編號 : 54631308
No.5, Chengde St., Daliao Dist., Kaohsiung City 83144,Taiwan (R.O.C.)
© Union U Inc. 通聯⾏行動創意科技有限公司 2014 All Rights Reserved
http://www.unumobile.com

More Related Content

What's hot

瞻營全電子_六足機器人(二)
瞻營全電子_六足機器人(二)瞻營全電子_六足機器人(二)
瞻營全電子_六足機器人(二)CAVEDU Education
 
認識 RoBoard 硬體
認識 RoBoard 硬體認識 RoBoard 硬體
認識 RoBoard 硬體roboard
 
Arduino 底層原始碼解析心得
Arduino 底層原始碼解析心得Arduino 底層原始碼解析心得
Arduino 底層原始碼解析心得roboard
 
HC 05藍芽模組連線
HC 05藍芽模組連線HC 05藍芽模組連線
HC 05藍芽模組連線Chen-Hung Hu
 
Arduino 習作工坊 - Lesson 4 通訊之夜
Arduino 習作工坊 -  Lesson 4 通訊之夜Arduino 習作工坊 -  Lesson 4 通訊之夜
Arduino 習作工坊 - Lesson 4 通訊之夜CAVEDU Education
 
Arduino 與 raspberry pi 硬體差異與應用
Arduino 與  raspberry pi 硬體差異與應用Arduino 與  raspberry pi 硬體差異與應用
Arduino 與 raspberry pi 硬體差異與應用Marcus Pek
 
Raspberry Pi 溫濕度發報機
Raspberry Pi 溫濕度發報機Raspberry Pi 溫濕度發報機
Raspberry Pi 溫濕度發報機艾鍗科技
 
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)roboard
 
Chapter 3 XBee無線遙控車
Chapter 3 XBee無線遙控車Chapter 3 XBee無線遙控車
Chapter 3 XBee無線遙控車CAVEDU Education
 
Arduino Yun 物聯網 Lesson 1
Arduino Yun 物聯網 Lesson 1Arduino Yun 物聯網 Lesson 1
Arduino Yun 物聯網 Lesson 1CAVEDU Education
 
成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統艾鍗科技
 
RoBoard 與 Lego NXT Sensors 之連接
RoBoard 與 Lego NXT Sensors 之連接RoBoard 與 Lego NXT Sensors 之連接
RoBoard 與 Lego NXT Sensors 之連接roboard
 

What's hot (20)

Arduino相關型錄
Arduino相關型錄Arduino相關型錄
Arduino相關型錄
 
瞻營全電子_六足機器人(二)
瞻營全電子_六足機器人(二)瞻營全電子_六足機器人(二)
瞻營全電子_六足機器人(二)
 
S4A
S4AS4A
S4A
 
Arduino基礎IO控制
Arduino基礎IO控制Arduino基礎IO控制
Arduino基礎IO控制
 
認識 RoBoard 硬體
認識 RoBoard 硬體認識 RoBoard 硬體
認識 RoBoard 硬體
 
Arduino 底層原始碼解析心得
Arduino 底層原始碼解析心得Arduino 底層原始碼解析心得
Arduino 底層原始碼解析心得
 
HC 05藍芽模組連線
HC 05藍芽模組連線HC 05藍芽模組連線
HC 05藍芽模組連線
 
Microbit 1 introduction
Microbit 1 introductionMicrobit 1 introduction
Microbit 1 introduction
 
Python與Ardinio整合應用
Python與Ardinio整合應用Python與Ardinio整合應用
Python與Ardinio整合應用
 
Arduino 習作工坊 - Lesson 4 通訊之夜
Arduino 習作工坊 -  Lesson 4 通訊之夜Arduino 習作工坊 -  Lesson 4 通訊之夜
Arduino 習作工坊 - Lesson 4 通訊之夜
 
Arduino感測應用
Arduino感測應用Arduino感測應用
Arduino感測應用
 
Arduino 與 raspberry pi 硬體差異與應用
Arduino 與  raspberry pi 硬體差異與應用Arduino 與  raspberry pi 硬體差異與應用
Arduino 與 raspberry pi 硬體差異與應用
 
Raspberry Pi 溫濕度發報機
Raspberry Pi 溫濕度發報機Raspberry Pi 溫濕度發報機
Raspberry Pi 溫濕度發報機
 
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)
3D Printer 韌體原始碼解析心得 (以 Marlin 為對象)
 
Chapter 1 what is arduino
Chapter 1 what is arduinoChapter 1 what is arduino
Chapter 1 what is arduino
 
Chapter 3 XBee無線遙控車
Chapter 3 XBee無線遙控車Chapter 3 XBee無線遙控車
Chapter 3 XBee無線遙控車
 
Arduino Yun 物聯網 Lesson 1
Arduino Yun 物聯網 Lesson 1Arduino Yun 物聯網 Lesson 1
Arduino Yun 物聯網 Lesson 1
 
成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統成果展簡報-Zigbee無線自動燈光及溫度調控系統
成果展簡報-Zigbee無線自動燈光及溫度調控系統
 
RoBoard 與 Lego NXT Sensors 之連接
RoBoard 與 Lego NXT Sensors 之連接RoBoard 與 Lego NXT Sensors 之連接
RoBoard 與 Lego NXT Sensors 之連接
 
Arduino序列通訊
Arduino序列通訊Arduino序列通訊
Arduino序列通訊
 

Viewers also liked

智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)
智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)
智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)William Liang
 
11.調光式t5螢光燈電子安定器之研究 林甲森
11.調光式t5螢光燈電子安定器之研究 林甲森11.調光式t5螢光燈電子安定器之研究 林甲森
11.調光式t5螢光燈電子安定器之研究 林甲森Zih-Ming Yang
 
物聯網應用全貌以及微軟全球案例
物聯網應用全貌以及微軟全球案例物聯網應用全貌以及微軟全球案例
物聯網應用全貌以及微軟全球案例Herman Wu
 
Raspberry Pi 智慧門鈴系統
Raspberry Pi 智慧門鈴系統Raspberry Pi 智慧門鈴系統
Raspberry Pi 智慧門鈴系統艾鍗科技
 
專題展系統開發
專題展系統開發專題展系統開發
專題展系統開發Power Wu
 
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!Web Arduino
 
貫通物聯網每一哩路 with Microsfot Azure IoT Sutie
貫通物聯網每一哩路 with Microsfot Azure IoT Sutie貫通物聯網每一哩路 with Microsfot Azure IoT Sutie
貫通物聯網每一哩路 with Microsfot Azure IoT SutieHerman Wu
 
2014 Mobile internet online user analysis report (TD)
2014 Mobile internet online user analysis report (TD)2014 Mobile internet online user analysis report (TD)
2014 Mobile internet online user analysis report (TD)Patrick Liu (Mi Chun)
 
粒子物理與天文物理學簡介
粒子物理與天文物理學簡介粒子物理與天文物理學簡介
粒子物理與天文物理學簡介Yuan CHAO
 
Tutorial1: mbed開發快速上手
Tutorial1: mbed開發快速上手Tutorial1: mbed開發快速上手
Tutorial1: mbed開發快速上手艾鍗科技
 
[智慧城市分享] Array of things
[智慧城市分享] Array of things[智慧城市分享] Array of things
[智慧城市分享] Array of thingsTaipei Smart City PMO
 
One Click Enterprise IoT Services - March 2017 AWS Online Tech Talks
One Click Enterprise IoT Services - March 2017 AWS Online Tech TalksOne Click Enterprise IoT Services - March 2017 AWS Online Tech Talks
One Click Enterprise IoT Services - March 2017 AWS Online Tech TalksAmazon Web Services
 
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English versionTaipei Smart City PMO
 
Cloudera 助力台灣大數據產業的發展
Cloudera 助力台灣大數據產業的發展Cloudera 助力台灣大數據產業的發展
Cloudera 助力台灣大數據產業的發展Etu Solution
 
從模組到類別
從模組到類別從模組到類別
從模組到類別Justin Lin
 
Hands-on Labs: Getting Started with AWS - March 2017 AWS Online Tech Talks
Hands-on Labs: Getting Started with AWS  - March 2017 AWS Online Tech TalksHands-on Labs: Getting Started with AWS  - March 2017 AWS Online Tech Talks
Hands-on Labs: Getting Started with AWS - March 2017 AWS Online Tech TalksAmazon Web Services
 
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造  研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造 鼎新電腦
 
Arduino、Web 到 IoT
Arduino、Web 到 IoTArduino、Web 到 IoT
Arduino、Web 到 IoTJustin Lin
 
以物聯網打造智慧城市研討會簡報
以物聯網打造智慧城市研討會簡報以物聯網打造智慧城市研討會簡報
以物聯網打造智慧城市研討會簡報Taipei Smart City PMO
 

Viewers also liked (20)

智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)
智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)
智慧應用與物聯網發展趨勢 (A Development Trend of Smart Applications and IoT)
 
11.調光式t5螢光燈電子安定器之研究 林甲森
11.調光式t5螢光燈電子安定器之研究 林甲森11.調光式t5螢光燈電子安定器之研究 林甲森
11.調光式t5螢光燈電子安定器之研究 林甲森
 
物聯網應用全貌以及微軟全球案例
物聯網應用全貌以及微軟全球案例物聯網應用全貌以及微軟全球案例
物聯網應用全貌以及微軟全球案例
 
Raspberry Pi 智慧門鈴系統
Raspberry Pi 智慧門鈴系統Raspberry Pi 智慧門鈴系統
Raspberry Pi 智慧門鈴系統
 
專題展系統開發
專題展系統開發專題展系統開發
專題展系統開發
 
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
前端工程師的告白: 親愛的,開源的物聯網好好玩呀!
 
貫通物聯網每一哩路 with Microsfot Azure IoT Sutie
貫通物聯網每一哩路 with Microsfot Azure IoT Sutie貫通物聯網每一哩路 with Microsfot Azure IoT Sutie
貫通物聯網每一哩路 with Microsfot Azure IoT Sutie
 
2014 Mobile internet online user analysis report (TD)
2014 Mobile internet online user analysis report (TD)2014 Mobile internet online user analysis report (TD)
2014 Mobile internet online user analysis report (TD)
 
粒子物理與天文物理學簡介
粒子物理與天文物理學簡介粒子物理與天文物理學簡介
粒子物理與天文物理學簡介
 
Tutorial1: mbed開發快速上手
Tutorial1: mbed開發快速上手Tutorial1: mbed開發快速上手
Tutorial1: mbed開發快速上手
 
[智慧城市分享] Array of things
[智慧城市分享] Array of things[智慧城市分享] Array of things
[智慧城市分享] Array of things
 
One Click Enterprise IoT Services - March 2017 AWS Online Tech Talks
One Click Enterprise IoT Services - March 2017 AWS Online Tech TalksOne Click Enterprise IoT Services - March 2017 AWS Online Tech Talks
One Click Enterprise IoT Services - March 2017 AWS Online Tech Talks
 
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version
臺北市資訊局PMO臺北市智慧城市2.0.成果展示-English version
 
Cloudera 助力台灣大數據產業的發展
Cloudera 助力台灣大數據產業的發展Cloudera 助力台灣大數據產業的發展
Cloudera 助力台灣大數據產業的發展
 
從模組到類別
從模組到類別從模組到類別
從模組到類別
 
1 taipei smart city-正文科技
1 taipei smart city-正文科技1 taipei smart city-正文科技
1 taipei smart city-正文科技
 
Hands-on Labs: Getting Started with AWS - March 2017 AWS Online Tech Talks
Hands-on Labs: Getting Started with AWS  - March 2017 AWS Online Tech TalksHands-on Labs: Getting Started with AWS  - March 2017 AWS Online Tech Talks
Hands-on Labs: Getting Started with AWS - March 2017 AWS Online Tech Talks
 
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造  研華 智聯工廠與智能設備雙引擎|實踐智慧製造
研華 智聯工廠與智能設備雙引擎|實踐智慧製造
 
Arduino、Web 到 IoT
Arduino、Web 到 IoTArduino、Web 到 IoT
Arduino、Web 到 IoT
 
以物聯網打造智慧城市研討會簡報
以物聯網打造智慧城市研討會簡報以物聯網打造智慧城市研討會簡報
以物聯網打造智慧城市研討會簡報
 

Similar to 使用 Arduino 控制 ESP8266 的各種方式

20170415- 智慧空調通訊系統實務_柯大
20170415- 智慧空調通訊系統實務_柯大20170415- 智慧空調通訊系統實務_柯大
20170415- 智慧空調通訊系統實務_柯大MAKERPRO.cc
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報艾鍗科技
 
LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發Wei-Tsung Su
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsCAVEDU Education
 
Arduino Basic
Arduino BasicArduino Basic
Arduino Basicmmiwwcom
 
2015 台联 产品简报 简体版
2015 台联 产品简报 简体版2015 台联 产品简报 简体版
2015 台联 产品简报 简体版萬清 Bryan 范
 
2015 北京台联 产品简报
2015 北京台联 产品简报2015 北京台联 产品简报
2015 北京台联 产品简报暄祐 沈
 
Deployment instruction trus guard utm 1000
Deployment instruction trus guard utm 1000Deployment instruction trus guard utm 1000
Deployment instruction trus guard utm 1000ahnlabchina
 
大型高清解决方案V1.0(ppt)
大型高清解决方案V1.0(ppt)大型高清解决方案V1.0(ppt)
大型高清解决方案V1.0(ppt)xiaoguang
 
Deployment instruction trus guard utm 400
Deployment instruction trus guard utm 400Deployment instruction trus guard utm 400
Deployment instruction trus guard utm 400ahnlabchina
 
Deployment instruction trus guard utm 500
Deployment instruction trus guard utm 500Deployment instruction trus guard utm 500
Deployment instruction trus guard utm 500ahnlabchina
 
[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務MAKERPRO.cc
 
XASUN WORKSTATION
XASUN WORKSTATIONXASUN WORKSTATION
XASUN WORKSTATIONxasun
 
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Series
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 SeriesG:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Series
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Seriesguestd4f63b
 
Aruba-MESH-解决方案.pdf
Aruba-MESH-解决方案.pdfAruba-MESH-解决方案.pdf
Aruba-MESH-解决方案.pdfNa Lee
 

Similar to 使用 Arduino 控制 ESP8266 的各種方式 (20)

20170415- 智慧空調通訊系統實務_柯大
20170415- 智慧空調通訊系統實務_柯大20170415- 智慧空調通訊系統實務_柯大
20170415- 智慧空調通訊系統實務_柯大
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報
 
LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發
 
LinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- BasicsLinkIt ONE tutorial #1- Basics
LinkIt ONE tutorial #1- Basics
 
Arduino Basic
Arduino BasicArduino Basic
Arduino Basic
 
2015 台联 产品简报 简体版
2015 台联 产品简报 简体版2015 台联 产品简报 简体版
2015 台联 产品简报 简体版
 
2015 北京台联 产品简报
2015 北京台联 产品简报2015 北京台联 产品简报
2015 北京台联 产品简报
 
Deployment instruction trus guard utm 1000
Deployment instruction trus guard utm 1000Deployment instruction trus guard utm 1000
Deployment instruction trus guard utm 1000
 
Translation
TranslationTranslation
Translation
 
大型高清解决方案V1.0(ppt)
大型高清解决方案V1.0(ppt)大型高清解决方案V1.0(ppt)
大型高清解决方案V1.0(ppt)
 
nodeMCU IOT教學03 - NodeMCU導論
nodeMCU IOT教學03 - NodeMCU導論nodeMCU IOT教學03 - NodeMCU導論
nodeMCU IOT教學03 - NodeMCU導論
 
Deployment instruction trus guard utm 400
Deployment instruction trus guard utm 400Deployment instruction trus guard utm 400
Deployment instruction trus guard utm 400
 
Deployment instruction trus guard utm 500
Deployment instruction trus guard utm 500Deployment instruction trus guard utm 500
Deployment instruction trus guard utm 500
 
[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務[智慧創新應用自造松]LPWAN]技術現況與應用實務
[智慧創新應用自造松]LPWAN]技術現況與應用實務
 
9439AD2
9439AD29439AD2
9439AD2
 
LinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorialLinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorial
 
XASUN WORKSTATION
XASUN WORKSTATIONXASUN WORKSTATION
XASUN WORKSTATION
 
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Series
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 SeriesG:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Series
G:\Documents And Settings\Kim Yoojin\桌面\Kn9 Series\Kn9 Series
 
Arduino導讀
Arduino導讀Arduino導讀
Arduino導讀
 
Aruba-MESH-解决方案.pdf
Aruba-MESH-解决方案.pdfAruba-MESH-解决方案.pdf
Aruba-MESH-解决方案.pdf
 

使用 Arduino 控制 ESP8266 的各種方式