SlideShare ist ein Scribd-Unternehmen logo
1 von 104
Downloaden Sie, um offline zu lesen
講師:MakerPRO技術顧問 柯大
E-mail :kochingchang@gmail.com
手機: 0928226125
1
1.日立智慧型冷氣架構說明
2.工業控制協定RS485 MODBUS功能說明
2
3.串接RS485連接日立冷氣 MODBUS
4.利用PC設定及接收智慧空調資料
5. Ameba Arduino 開發環境安裝及各項功能
7. IoT 平台介紹
 各種IOT平台比較
 MQTT 介紹
 QNAP NAS 建立IoT私有平台雲
6 RS485 模組及 MODBUS Library功能
3
1.日立智慧型冷氣架構說明
4
5
6
7
1.日立智慧型冷氣架構說明
8
9
10
11
12
13
2.工業控制協定RS485 MODBUS功能說明
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
3.串接RS485連接日立冷氣 MODBUS
A
B
31
A
B
32
USB (COM) 轉 RS485 模組
USB connect to PC
A and B : the RS485 pair
Connect to RS485 Device
33
DI (data in) to pin 1 (D1) TX
RO (receive out) to pin 0 (D0) RX
DE (data enable)
RE (receive enable) jumpered together and to
DE pin 7 (D7)
Vcc 5V and Gnd connected (5V Gnd)
A and B : the RS485 pair
RS485 轉UART (TTL (RX/TX) 模組
34
4.利用PC設定及接收智慧空調資料
(1) 將USB (COM) 轉 RS485 模組與PC USB
埠連接。
(2) 安裝 COM port驅動程式:
目錄: CH341_USB_DriverCH341SER
安裝程式:SETUP.EXE
(4) 啟動PC modtool 讀取冷氣機暫存器值
目錄: RS485MODBUS-TOOL
執行程式: modtool.exe
(3) 查看裝置管理員中USB是否有新增加的序列(COM)埠
35
36
37
38
39
40
41
42
http://arduino-info.wikispaces.com/SoftwareSerialRS485Example
Arduino UNO RS485 模組 對接測試
43
Arduino UNO 與 AMEBA RS485 模組 對接
44
#include <SoftwareSerial.h>
#define SSerialRX 0 //Serial Receive pin
#define SSerialTX 1 //Serial Transmit pin
#define SSerialTxControl 3 //RS485 Direction control
SoftwareSerial RS485Serial(SSerialRX, SSerialTX); // RX, TX
int byteReceived;
int byteSend;
void setup()
{
// Start the built-in serial port, probably to Serial Monitor
Serial.begin(38400);
Serial.println("Use Serial Monitor, type in upper window, ENTER");
pinMode(SSerialTxControl, OUTPUT);
digitalWrite(SSerialTxControl, LOW); // Init Transceiver
// Start the software serial port, to another device
RS485Serial.begin(4800); // set the data rate
}
void loop()
{
if (Serial.available()) {
byteReceived = Serial.read();
digitalWrite(SSerialTxControl, HIGH);
RS485Serial.write(byteReceived);
delay(10);
digitalWrite(SSerialTxControl, LOW);
}
if (RS485Serial.available()) {
byteReceived = RS485Serial.read();
Serial.write(byteReceived);
delay(10);
}
}
AmebaMaster.ino
45
ArduinoUNO Slave.ino
#include <SoftwareSerial.h>
#define SSerialRX 10 //Serial Receive pin
#define SSerialTX 11 //Serial Transmit pin
#define SSerialTxControl 3 //RS485 Direction control
SoftwareSerial RS485Serial(SSerialRX, SSerialTX); // RX, TX
int byteReceived;
int byteSend;
void setup()
{
// Start the built-in serial port, probably to Serial Monitor
Serial.begin(38400);
Serial.println("SerialRemote"); // Can be ignored
pinMode(SSerialTxControl, OUTPUT);
digitalWrite(SSerialTxControl, LOW); // Init Transceiver
// Start the software serial port, to another device
RS485Serial.begin(4800); // set the data rate
}
void loop()
{
//Copy input data to output
if (RS485Serial.available()) {
byteSend = RS485Serial.read(); // Read the byte
delay(50);
//Serial.println(byteSend);
digitalWrite(SSerialTxControl, HIGH); // Enable RS485 Transmit
RS485Serial.write(byteSend); // Send the byte back
delay(10);
digitalWrite(SSerialTxControl, LOW); // Disable RS485 Transmit
}
}
46
5. Ameba Arduino 開發環境安裝及各項功能
Ameba module -RTL8195AM 本身規格
* 32-bit 166MHz ARM Cortex-M3 CPU
* 內建 低功耗 802.11 b/g/n 2.4G 無線 Wi-Fi
* 內建 NFC
* 介面支援 : GPIO / PWM / SPI / I2C / ADC / DAC / UART
* Crypto HW engine : 可做硬體加解密, 支援 MD5/ SHA-1 / SHA2-256
/ DES / 3DES / AES
* IC 本身有 512K RAM, 另外模組有包 2M SDRAM / 16M bit flash
47
米巴開發板功規格介紹
※資料來源:https://www.facebook.com/groups/1494719674163013/
Ameba板外接介面圖
連接PC USB
外接WiFi 天線
外接NFC
天線
48
49
PinD13 Reset鍵Gnd
50
1. <檔案>- <範例>-<01-Basic>-<blink>
2. 上傳燒錄程式
3. 按Reset鍵啟動新上傳的程式
 測試開發板功能運作是否正常
51
6 RS485 模組及 MODBUS Library功能
// 利用UART 控制通訊接收、傳送
#include <SoftwareSerial.h>
// 定義半雙工送收控制接腳的PIN
#define RS485CtrlPin 7
// 定義 通訊延遲時間
#define TIME_REQUEST 7
unsigned long interframe_delay = 2; /* Modbus t3.5 = 2 ms */
// 宣告回傳值及buffer 、傳輸速度等變數
int retval;
int data[12];
int baud_rate = 9600;
// 宣告冷氣回傳暫存器變數
int v00,v03,v04,v20,v21,v22,v23,v24,v29,v2a,v2b;
// 讀取冷氣暫存器值
retval= read_holding_registers( AC_no,0,1,data,10);
v00= (unsigned int) (256 *( data[0]>>8) + (data[0] & 0x00ff) );
Modbus.ino
52
RT_HT_MODbus_Get12_20160827_V3.ino
// RS485 MODBUS 通訊副程式模組
HT_MODbus.ino
//序列埠監控視窗顯示冷氣機資料副程式模組
displayDATA.ino
//讀取冷氣機資料副程式模組
readAC.ino
//主程式
Void Setup() {
…
}
Void Loop() {
…
}
7. 實作練習
53
申請Temboo帳號
https://www.temboo.com/
申請Xively帳號
https://personal.xively.com/signup/
申請ThingSpeak帳號
https://thingspeak.com/users/sign_up
申請Thethings.io帳號
https://panel.thethings.io/#/login
申請Yeelink.net帳號
http://www.yeelink.net/register
申請lewei樂為聯網 帳號
http://www.lewei50.com/home/register
申請pieceduino Cloud帳號
http://www.pieceduino.com/pieceduino-web-panel/
IoT雲端平台參考網站
申請MediaTek Cloud Sandbox 帳號
https://mcs.mediatek.com/oauth/en/login
申請Thethingsnetwork 帳號
https://account.thethingsnetwork.org/register
54
http://thethings.io/
55
https://www.thethingsnetwork.org/
56
https://www.temboo.com/
57
58
https://mcs.mediatek.com/zh-TW/
59
60
61
https://thingspeak.com/
62
功能
63
64
https://xively.com/
65
66
67
68
http://developer.xively.com/
69
http://developer.xively.com/api/
70
http://developer.xively.com/tutorials/
71
http://www.yeelink.net/
72
73
74
http://www.lewei50.com/home/index
75
76
下载地址:userfiles/app/lewei5020130116.apk
77
https://cayenne.mydevices.com/cayenne/login
78
MQTT (Message Queuing Telemetry Transport),它是為IBM和Eurotech共同
製定出來的protocol,在MQTT的官網可以看到它對MQTT的介紹:
MQTT is a machine-to-machine (M2M)/”Internet of Things” connectivity
protocol. It was designed as an extremely lightweight publish/subscribe
messaging transport.
所以它是為了IOT而設計的protocol,它是基於TCP/IP的協定,並且透過
publish/subscribe的方式做資料傳送與接收。
它的架構如下圖:
MQTT簡介
79
Publish/Subscribe:
在看MQTT之前,最好要先知道Publish/Subscribe的訊息傳送機
制為何,這樣之後在看其協定時,才會更快上手。
Publish/Subscribe有三種主要的組成元件,分別為Publisher、
Subscriber以及Topic。
Publisher為訊息的來源,它會將訊息發送給Topic,而
Subscriber向Topic註冊,表示他們想要接收此Topic的訊息;因
此當有某個Publisher對Topic發送訊息時,只要是有對此Topic
註冊的Subscriber,都會收到此則訊息。
它們的關係如下圖:
80
MQTT特性:
1. Publish/Subscribe的訊息傳送模式,來提供一對多的訊息分配。
2. 使用TCP/IP來提供基本的網路連結。
3. 三種訊息傳送服務的qualities: (QoS)
4. 由於他的header固定長度為2byte,因此可以減少封包傳送
時的額外負載,並減少所需的網路頻寬。
5. 當異常斷線發生時,會使用最後遺囑(Last Will and
Testament)的機制,通知各個感興趣的client。
0: "At most once",最多一次,訊息遺失或是重複發送的狀況可能會發生;
這種quality適合應用在環境感測,不在意資料是否會遺失,因為下一
次的資料取樣很快就會被published出來。
1: "At least once",至少一次,這種quality保證訊息會送達,只是可能會
發生重複發送訊息的狀況。
2:"Exactly once",確定一次,確認訊息只會送到一次。這種quality適合用
在計費系統,系統只要有重複收到資料、或是資料遺失狀況發生,就
會造成系統錯誤。
81
82
83
84
85
86
自建MQTT Server(Broker)介紹
QNAP NAS 讓您快速建立自己的 MQTT Server
https://www.qnap.com/zh-tw/
87
Docker 架構的 NAS ,Container Station 可自建更多 IoT Service
88
89
90
91
Container 列表
Blockly Blockly is a library for building visual programming editors.
Dashing Dashing is a Sinatra-based framework that lets you build beautiful dashboards.
Freeboard A Open Source Dashboard.
Intel Edison Intel® Edison technology is a hardware and software platform that, when
combined with sensors and your imagination, empowers you to invent new Internet-
enabled products and solutions.
Kafka Apache Kafka is a publish-subscribe messaging rethought as a distributed commit
log.
MariaDB MariaDB is a community-developed fork of the MySQL relational database
management system intended to remain free under the GNU GPL.
MongoDB MongoDB (from humongous) is a cross-platform document-oriented database.
Node-RED Node-RED is a tool for wiring together hardware devices, APIs and online
services in new and interesting ways.
Ponte Ponte allows you to publish and receive data using any protocol: HTTP, MQTT and
CoAP.
RabbitMQ Robust messaging for applications.
Redis Redis is a data structure server. It is open-source, networked, in-memory, and
stores keys with optional durability.
RPI The Raspberry Pi is a series of credit-card-sized, single-board computers developed in
the United Kingdom by the Raspberry Pi Foundation with the intent to promote the
teaching of basic computer science in schools and developing countries.
92
93
94
95
96
97
98
利用QNAP NAS Server 提供的Node-RED container 來接收以儀表板顯示數值及曲數
99
100
101
102
103
104

Weitere ähnliche Inhalte

Was ist angesagt?

3GPP_Overall_Architecture_and_Specifications.pdf
3GPP_Overall_Architecture_and_Specifications.pdf3GPP_Overall_Architecture_and_Specifications.pdf
3GPP_Overall_Architecture_and_Specifications.pdfAbubakar416712
 
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute BeginnersPart 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners3G4G
 
Industrial communication
Industrial communicationIndustrial communication
Industrial communicationMahmoud Hussein
 
Overview 3GPP NR Physical Layer
Overview 3GPP NR Physical LayerOverview 3GPP NR Physical Layer
Overview 3GPP NR Physical LayerEiko Seidel
 
Advanced: Control and User Plane Separation of EPC nodes (CUPS)
Advanced: Control and User Plane Separation of EPC nodes (CUPS)Advanced: Control and User Plane Separation of EPC nodes (CUPS)
Advanced: Control and User Plane Separation of EPC nodes (CUPS)3G4G
 
IoT vs IIoT vs Industry 4.0
IoT vs IIoT vs Industry 4.0IoT vs IIoT vs Industry 4.0
IoT vs IIoT vs Industry 4.0SMACAR Solutions
 
Modbus TCP/IP implementation in Siemens S7-300 PLC
Modbus TCP/IP implementation in Siemens S7-300 PLC Modbus TCP/IP implementation in Siemens S7-300 PLC
Modbus TCP/IP implementation in Siemens S7-300 PLC ITER-India, IPR
 
Propelling 5G forward: a closer look at 3GPP Release-16
Propelling 5G forward: a closer look at 3GPP Release-16Propelling 5G forward: a closer look at 3GPP Release-16
Propelling 5G forward: a closer look at 3GPP Release-16Qualcomm Research
 
Synchronization for 5G: the requirements and the solutions
Synchronization for 5G: the requirements and the solutionsSynchronization for 5G: the requirements and the solutions
Synchronization for 5G: the requirements and the solutionsADVA
 
An overview of D2D in 3GPP LTE standard
An overview of D2D in 3GPP LTE standardAn overview of D2D in 3GPP LTE standard
An overview of D2D in 3GPP LTE standardssk
 
[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
 
Beginners: 5G Spectrum - Long Version
Beginners: 5G Spectrum - Long VersionBeginners: 5G Spectrum - Long Version
Beginners: 5G Spectrum - Long Version3G4G
 
Fieldbus technology industrial automation
Fieldbus technology industrial automationFieldbus technology industrial automation
Fieldbus technology industrial automationPradeep Dhakad
 
đề Cương ôn tập thông tin vệ tinh
đề Cương ôn tập thông tin vệ tinhđề Cương ôn tập thông tin vệ tinh
đề Cương ôn tập thông tin vệ tinhHải Dương
 
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyond
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyondAccelerating our 5G future: a first look at 3GPP Rel-17 and beyond
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyondQualcomm Research
 
Misc: Non millimeter Wave (mmWave) 5G
Misc: Non millimeter Wave (mmWave) 5GMisc: Non millimeter Wave (mmWave) 5G
Misc: Non millimeter Wave (mmWave) 5G3G4G
 
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...3G4G
 

Was ist angesagt? (20)

3GPP_Overall_Architecture_and_Specifications.pdf
3GPP_Overall_Architecture_and_Specifications.pdf3GPP_Overall_Architecture_and_Specifications.pdf
3GPP_Overall_Architecture_and_Specifications.pdf
 
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute BeginnersPart 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners
Part 6: Standalone and Non-Standalone 5G - 5G for Absolute Beginners
 
Industrial communication
Industrial communicationIndustrial communication
Industrial communication
 
Overview 3GPP NR Physical Layer
Overview 3GPP NR Physical LayerOverview 3GPP NR Physical Layer
Overview 3GPP NR Physical Layer
 
Modbus protocol
Modbus protocolModbus protocol
Modbus protocol
 
Policy Based Routing
Policy Based RoutingPolicy Based Routing
Policy Based Routing
 
Advanced: Control and User Plane Separation of EPC nodes (CUPS)
Advanced: Control and User Plane Separation of EPC nodes (CUPS)Advanced: Control and User Plane Separation of EPC nodes (CUPS)
Advanced: Control and User Plane Separation of EPC nodes (CUPS)
 
IoT vs IIoT vs Industry 4.0
IoT vs IIoT vs Industry 4.0IoT vs IIoT vs Industry 4.0
IoT vs IIoT vs Industry 4.0
 
Modbus TCP/IP implementation in Siemens S7-300 PLC
Modbus TCP/IP implementation in Siemens S7-300 PLC Modbus TCP/IP implementation in Siemens S7-300 PLC
Modbus TCP/IP implementation in Siemens S7-300 PLC
 
Propelling 5G forward: a closer look at 3GPP Release-16
Propelling 5G forward: a closer look at 3GPP Release-16Propelling 5G forward: a closer look at 3GPP Release-16
Propelling 5G forward: a closer look at 3GPP Release-16
 
Synchronization for 5G: the requirements and the solutions
Synchronization for 5G: the requirements and the solutionsSynchronization for 5G: the requirements and the solutions
Synchronization for 5G: the requirements and the solutions
 
An overview of D2D in 3GPP LTE standard
An overview of D2D in 3GPP LTE standardAn overview of D2D in 3GPP LTE standard
An overview of D2D in 3GPP LTE standard
 
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
[Advantech] Modbus protocol training (ModbusTCP, ModbusRTU)
 
Beginners: 5G Spectrum - Long Version
Beginners: 5G Spectrum - Long VersionBeginners: 5G Spectrum - Long Version
Beginners: 5G Spectrum - Long Version
 
Fieldbus technology industrial automation
Fieldbus technology industrial automationFieldbus technology industrial automation
Fieldbus technology industrial automation
 
đề Cương ôn tập thông tin vệ tinh
đề Cương ôn tập thông tin vệ tinhđề Cương ôn tập thông tin vệ tinh
đề Cương ôn tập thông tin vệ tinh
 
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyond
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyondAccelerating our 5G future: a first look at 3GPP Rel-17 and beyond
Accelerating our 5G future: a first look at 3GPP Rel-17 and beyond
 
Misc: Non millimeter Wave (mmWave) 5G
Misc: Non millimeter Wave (mmWave) 5GMisc: Non millimeter Wave (mmWave) 5G
Misc: Non millimeter Wave (mmWave) 5G
 
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...
Building the foundations of Ultra-RELIABLE and Low-LATENCY Wireless Communica...
 
Kỹ thuật vô tuyến cho hệ thống lai ghép giữa vệ tinh và mặt đất, 9đ
Kỹ thuật vô tuyến cho hệ thống lai ghép giữa vệ tinh và mặt đất, 9đKỹ thuật vô tuyến cho hệ thống lai ghép giữa vệ tinh và mặt đất, 9đ
Kỹ thuật vô tuyến cho hệ thống lai ghép giữa vệ tinh và mặt đất, 9đ
 

Ähnlich wie 20170415- 智慧空調通訊系統實務_柯大

Robotis Servo 與 RoBoard 之連接介面
Robotis Servo 與 RoBoard 之連接介面Robotis Servo 與 RoBoard 之連接介面
Robotis Servo 與 RoBoard 之連接介面roboard
 
LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發Wei-Tsung Su
 
使用 Arduino 控制 ESP8266 的各種方式
使用 Arduino 控制 ESP8266 的各種方式使用 Arduino 控制 ESP8266 的各種方式
使用 Arduino 控制 ESP8266 的各種方式Kenson Chiang
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報艾鍗科技
 
認識 RoBoard 硬體
認識 RoBoard 硬體認識 RoBoard 硬體
認識 RoBoard 硬體roboard
 
IBM Cloud Private Introduction
IBM Cloud Private IntroductionIBM Cloud Private Introduction
IBM Cloud Private IntroductionGuangya Liu
 
防火墙产品原理介绍20080407
防火墙产品原理介绍20080407防火墙产品原理介绍20080407
防火墙产品原理介绍20080407paulqi
 
Juniper ScreenOS 基于Policy的
Juniper ScreenOS 基于Policy的Juniper ScreenOS 基于Policy的
Juniper ScreenOS 基于Policy的mickchen
 
Corega CG-WLAPGMN Manual
Corega CG-WLAPGMN ManualCorega CG-WLAPGMN Manual
Corega CG-WLAPGMN Manualtag taglife
 
Deployment instruction tg1100 ig-cn
Deployment instruction tg1100 ig-cnDeployment instruction tg1100 ig-cn
Deployment instruction tg1100 ig-cnahnlabchina
 
网络基础知识(经典)
网络基础知识(经典)网络基础知识(经典)
网络基础知识(经典)littlesujin
 
路由器配置手册
路由器配置手册路由器配置手册
路由器配置手册cpcfan
 
Arduino 習作工坊 - Lesson 4 通訊之夜
Arduino 習作工坊 -  Lesson 4 通訊之夜Arduino 習作工坊 -  Lesson 4 通訊之夜
Arduino 習作工坊 - Lesson 4 通訊之夜CAVEDU Education
 
实时消息推送系统
实时消息推送系统实时消息推送系统
实时消息推送系统Yi Feng Yang
 
Alibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconAlibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconYiwei Ma
 
Deployment instruction tg4100 f-ig_cn
Deployment instruction tg4100 f-ig_cnDeployment instruction tg4100 f-ig_cn
Deployment instruction tg4100 f-ig_cnahnlabchina
 
数据中心网络架构与全球化服务-Qcon2011
数据中心网络架构与全球化服务-Qcon2011数据中心网络架构与全球化服务-Qcon2011
数据中心网络架构与全球化服务-Qcon2011Yiwei Ma
 

Ähnlich wie 20170415- 智慧空調通訊系統實務_柯大 (20)

Robotis Servo 與 RoBoard 之連接介面
Robotis Servo 與 RoBoard 之連接介面Robotis Servo 與 RoBoard 之連接介面
Robotis Servo 與 RoBoard 之連接介面
 
LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發LinkIt Smart 7688程式開發
LinkIt Smart 7688程式開發
 
使用 Arduino 控制 ESP8266 的各種方式
使用 Arduino 控制 ESP8266 的各種方式使用 Arduino 控制 ESP8266 的各種方式
使用 Arduino 控制 ESP8266 的各種方式
 
智慧家庭 簡報
智慧家庭 簡報智慧家庭 簡報
智慧家庭 簡報
 
認識 RoBoard 硬體
認識 RoBoard 硬體認識 RoBoard 硬體
認識 RoBoard 硬體
 
IBM Cloud Private Introduction
IBM Cloud Private IntroductionIBM Cloud Private Introduction
IBM Cloud Private Introduction
 
防火墙产品原理介绍20080407
防火墙产品原理介绍20080407防火墙产品原理介绍20080407
防火墙产品原理介绍20080407
 
Juniper ScreenOS 基于Policy的
Juniper ScreenOS 基于Policy的Juniper ScreenOS 基于Policy的
Juniper ScreenOS 基于Policy的
 
Corega CG-WLAPGMN Manual
Corega CG-WLAPGMN ManualCorega CG-WLAPGMN Manual
Corega CG-WLAPGMN Manual
 
Deployment instruction tg1100 ig-cn
Deployment instruction tg1100 ig-cnDeployment instruction tg1100 ig-cn
Deployment instruction tg1100 ig-cn
 
网络基础知识(经典)
网络基础知识(经典)网络基础知识(经典)
网络基础知识(经典)
 
LinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorialLinkIt 7697 IoT tutorial
LinkIt 7697 IoT tutorial
 
Tcpip
TcpipTcpip
Tcpip
 
路由器配置手册
路由器配置手册路由器配置手册
路由器配置手册
 
金盾集訓 II
金盾集訓 II金盾集訓 II
金盾集訓 II
 
Arduino 習作工坊 - Lesson 4 通訊之夜
Arduino 習作工坊 -  Lesson 4 通訊之夜Arduino 習作工坊 -  Lesson 4 通訊之夜
Arduino 習作工坊 - Lesson 4 通訊之夜
 
实时消息推送系统
实时消息推送系统实时消息推送系统
实时消息推送系统
 
Alibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qconAlibaba server-zhangxuseng-qcon
Alibaba server-zhangxuseng-qcon
 
Deployment instruction tg4100 f-ig_cn
Deployment instruction tg4100 f-ig_cnDeployment instruction tg4100 f-ig_cn
Deployment instruction tg4100 f-ig_cn
 
数据中心网络架构与全球化服务-Qcon2011
数据中心网络架构与全球化服务-Qcon2011数据中心网络架构与全球化服务-Qcon2011
数据中心网络架构与全球化服务-Qcon2011
 

Mehr von MAKERPRO.cc

從0100量產挑戰
從0100量產挑戰從0100量產挑戰
從0100量產挑戰MAKERPRO.cc
 
從群眾募資到教育套件的挑戰與克服
從群眾募資到教育套件的挑戰與克服從群眾募資到教育套件的挑戰與克服
從群眾募資到教育套件的挑戰與克服MAKERPRO.cc
 
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco LinMAKERPRO.cc
 
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪MAKERPRO.cc
 
【1110ROS群開講】開發機器人大腦 - 智慧導航實務應用_賴俊吉
【1110ROS群開講】開發機器人大腦  - 智慧導航實務應用_賴俊吉【1110ROS群開講】開發機器人大腦  - 智慧導航實務應用_賴俊吉
【1110ROS群開講】開發機器人大腦 - 智慧導航實務應用_賴俊吉MAKERPRO.cc
 
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志MAKERPRO.cc
 
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文MAKERPRO.cc
 
Face detection myriad_批次檔
Face detection myriad_批次檔Face detection myriad_批次檔
Face detection myriad_批次檔MAKERPRO.cc
 
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖MAKERPRO.cc
 
【1006物聯網社群開講】Project D – Pi 相機的趣味應用_DoFI
【1006物聯網社群開講】Project D  – Pi 相機的趣味應用_DoFI【1006物聯網社群開講】Project D  – Pi 相機的趣味應用_DoFI
【1006物聯網社群開講】Project D – Pi 相機的趣味應用_DoFIMAKERPRO.cc
 
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋MAKERPRO.cc
 
【1006物聯網社群開講】Raspberry Pi for Everyone_Felix
【1006物聯網社群開講】Raspberry Pi for Everyone_Felix【1006物聯網社群開講】Raspberry Pi for Everyone_Felix
【1006物聯網社群開講】Raspberry Pi for Everyone_FelixMAKERPRO.cc
 
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYehMAKERPRO.cc
 
【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu
【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu
【視覺進化論】AI智慧視覺運算技術論壇_5_BofuMAKERPRO.cc
 
0929-【迎向高齡時代】居家醫療社群推動交流會-Part5
0929-【迎向高齡時代】居家醫療社群推動交流會-Part50929-【迎向高齡時代】居家醫療社群推動交流會-Part5
0929-【迎向高齡時代】居家醫療社群推動交流會-Part5MAKERPRO.cc
 
0929-【迎向高齡時代】居家醫療社群推動交流會-Part3
0929-【迎向高齡時代】居家醫療社群推動交流會-Part30929-【迎向高齡時代】居家醫療社群推動交流會-Part3
0929-【迎向高齡時代】居家醫療社群推動交流會-Part3MAKERPRO.cc
 
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例MAKERPRO.cc
 
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置MAKERPRO.cc
 
【自造松充電課】物聯網案例應用
【自造松充電課】物聯網案例應用【自造松充電課】物聯網案例應用
【自造松充電課】物聯網案例應用MAKERPRO.cc
 
【自造松充電課】物聯網創新案例商品化挑戰
【自造松充電課】物聯網創新案例商品化挑戰【自造松充電課】物聯網創新案例商品化挑戰
【自造松充電課】物聯網創新案例商品化挑戰MAKERPRO.cc
 

Mehr von MAKERPRO.cc (20)

從0100量產挑戰
從0100量產挑戰從0100量產挑戰
從0100量產挑戰
 
從群眾募資到教育套件的挑戰與克服
從群眾募資到教育套件的挑戰與克服從群眾募資到教育套件的挑戰與克服
從群眾募資到教育套件的挑戰與克服
 
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin
【1110ROS社群開講】智能照護專案ROS也能派上用場_Sco Lin
 
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪
【1110ROS社群開講】ROS 2與DDS應用於工業領域_王健豪
 
【1110ROS群開講】開發機器人大腦 - 智慧導航實務應用_賴俊吉
【1110ROS群開講】開發機器人大腦  - 智慧導航實務應用_賴俊吉【1110ROS群開講】開發機器人大腦  - 智慧導航實務應用_賴俊吉
【1110ROS群開講】開發機器人大腦 - 智慧導航實務應用_賴俊吉
 
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志
【1110ROS社群開講】實務經驗分享,初階也能快速上手!_林威志
 
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文
【1110ROS社群開講】如何打造與人一起學習的機器檯燈_鄭凱文
 
Face detection myriad_批次檔
Face detection myriad_批次檔Face detection myriad_批次檔
Face detection myriad_批次檔
 
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖
【1006物聯網社群開講】智慧辦公室全面啟動!_何甘霖
 
【1006物聯網社群開講】Project D – Pi 相機的趣味應用_DoFI
【1006物聯網社群開講】Project D  – Pi 相機的趣味應用_DoFI【1006物聯網社群開講】Project D  – Pi 相機的趣味應用_DoFI
【1006物聯網社群開講】Project D – Pi 相機的趣味應用_DoFI
 
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋
【1006物聯網社群開講】Raspberry Pi + ROS = 實現無人自駕理念!_蕭盈璋
 
【1006物聯網社群開講】Raspberry Pi for Everyone_Felix
【1006物聯網社群開講】Raspberry Pi for Everyone_Felix【1006物聯網社群開講】Raspberry Pi for Everyone_Felix
【1006物聯網社群開講】Raspberry Pi for Everyone_Felix
 
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh
【視覺進化論】AI智慧視覺運算技術論壇_2_ChungYeh
 
【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu
【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu
【視覺進化論】AI智慧視覺運算技術論壇_5_Bofu
 
0929-【迎向高齡時代】居家醫療社群推動交流會-Part5
0929-【迎向高齡時代】居家醫療社群推動交流會-Part50929-【迎向高齡時代】居家醫療社群推動交流會-Part5
0929-【迎向高齡時代】居家醫療社群推動交流會-Part5
 
0929-【迎向高齡時代】居家醫療社群推動交流會-Part3
0929-【迎向高齡時代】居家醫療社群推動交流會-Part30929-【迎向高齡時代】居家醫療社群推動交流會-Part3
0929-【迎向高齡時代】居家醫療社群推動交流會-Part3
 
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例
【物聯網自造x開發工具系列】Linkit 7697物聯網實作開發案例
 
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置
【物聯網自造x開發工具系列】Llinkit-7697物聯網實作開發案例-LoRa建置
 
【自造松充電課】物聯網案例應用
【自造松充電課】物聯網案例應用【自造松充電課】物聯網案例應用
【自造松充電課】物聯網案例應用
 
【自造松充電課】物聯網創新案例商品化挑戰
【自造松充電課】物聯網創新案例商品化挑戰【自造松充電課】物聯網創新案例商品化挑戰
【自造松充電課】物聯網創新案例商品化挑戰
 

20170415- 智慧空調通訊系統實務_柯大