Wiki source code of Set up CoAP Server
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | **~ Contents:** | ||
2 | |||
3 | {{toc/}} | ||
4 | |||
5 | |||
6 | = 1. Introduction = | ||
7 | |||
8 | ((( | ||
9 | In this chapter, we set up a CoAP/ MQTT server by using Open Source MQTT Broker : [[EMQX.IO>>url:https://www.emqx.io/]]. And show how to communicate it with CoAP and MQTT. | ||
10 | ))) | ||
11 | |||
12 | ((( | ||
13 | Below is the network structure. The end device use CoAP to connect our Emqx server via NB-IoT network. EMQ X broker will further process the data for the actually application. | ||
14 | ))) | ||
15 | |||
16 | [[image:image-20220530084843-1.png]] | ||
17 | |||
18 | Network structure | ||
19 | |||
20 | |||
21 | = 2. Install CoAP server = | ||
22 | |||
23 | Set up example in Ubuntu 18.04 | ||
24 | |||
25 | (% class="box" %) | ||
26 | ((( | ||
27 | sudo apt-get update | ||
28 | sudo apt-get upgrade | ||
29 | wget [[https:~~/~~/www.emqx.io/downloads/broker/v3.2.7/emqx-ubuntu18.04-v3.2.7_amd64.deb>>url:https://www.emqx.io/downloads/broker/v3.2.7/emqx-ubuntu18.04-v3.2.7_amd64.deb]] #download the installation package. | ||
30 | sudo dpkg –i emqx-ubuntu18.04-v3.2.4_amd64.deb #install EMQX | ||
31 | emqx start # Start EMQX service | ||
32 | emqx_ctl status #check if EMQX is running | ||
33 | ./bin/emqx_ctl plugins load emqx_coap # Run COAP service | ||
34 | ))) | ||
35 | |||
36 | ((( | ||
37 | (% style="color:red" %)**Notice: CoAP default port use 5683, if you install EMQX in a cloud server, make sure you open the UDP port 5683. So can receive the packets from NB-IoT.** | ||
38 | |||
39 | |||
40 | ))) | ||
41 | |||
42 | = 3. Test CoAP Server = | ||
43 | |||
44 | == 3.1 Install Copper in Chrome == | ||
45 | |||
46 | ((( | ||
47 | ~1. Download Copper4Cr from [[https:~~/~~/github.com/mkovatsc/Copper4Cr>>url:https://github.com/mkovatsc/Copper4Cr]] and unpack it. | ||
48 | ))) | ||
49 | |||
50 | ((( | ||
51 | 2. Run install.bat in the directory. | ||
52 | |||
53 | [[image:image-20220530085327-2.png]] | ||
54 | ))) | ||
55 | |||
56 | |||
57 | Run install.bat | ||
58 | |||
59 | |||
60 | 3. Load the unpacked CoAP APP in Google Chrome: | ||
61 | |||
62 | [[image:image-20220530085423-3.png]] | ||
63 | |||
64 | Install Copper APP | ||
65 | |||
66 | |||
67 | [[image:image-20220530085531-4.png]] | ||
68 | |||
69 | Install APP Successful | ||
70 | |||
71 | |||
72 | 4. Load the unpacked CoAP extension in Google Chrome: | ||
73 | |||
74 | [[image:image-20220530085638-5.png||height="338" width="1320"]] | ||
75 | |||
76 | Install Copper Extension | ||
77 | |||
78 | [[image:image-20220530090104-7.png]] | ||
79 | |||
80 | |||
81 | Install Extension Successful | ||
82 | |||
83 | |||
84 | 5. Replace the appID in file extension\endpoint\ClientPortChrome.js to Copper (Cu4Cr) Application ID | ||
85 | |||
86 | [[image:image-20220530090444-10.png]] | ||
87 | |||
88 | |||
89 | Replace ID | ||
90 | |||
91 | |||
92 | 6. Open the Copper extension. If you see below message, means install successfully. | ||
93 | |||
94 | [[image:image-20220530090404-9.png||height="658" width="1238"]] | ||
95 | |||
96 | Install Finished | ||
97 | |||
98 | |||
99 | == 3.2 Test CoAP connection == | ||
100 | |||
101 | ((( | ||
102 | Use Chrome Copper externsion to connect to the CoAP server. Input coap:~/~/COAP_SERVER_IP/mqtt/topic0?c=t1 to connect to the MQTT topic0 in CoAP server. Replace COAP_SERVER_IP with your COAP Server IP address, and refer [[here>>url:https://github.com/emqx/emqx-coap]] for the CoAP detail in EMQX. When connection ok, you can see below window. | ||
103 | |||
104 | [[image:image-20220530090848-13.png||height="616" width="1154"]] | ||
105 | ))) | ||
106 | |||
107 | |||
108 | Connect to CoAP server | ||
109 | |||
110 | |||
111 | == 3.3 Test CoAP Uplink == | ||
112 | |||
113 | ((( | ||
114 | Try to use MQTT.fx to subscribe a the topic (topic0) in the server. And use CoAP to send a message to this topic, we can see the message arrive the topic0 and shown in MQTT.fx. | ||
115 | |||
116 | [[image:image-20220530090939-14.png]] | ||
117 | ))) | ||
118 | |||
119 | |||
120 | Use MQTT.fx to subscribe the topic | ||
121 | |||
122 | |||
123 | |||
124 | Use CoAP Exension to send a update to CoAP server | ||
125 | |||
126 | |||
127 | |||
128 | MQTT.fx get the update of this topic on CoAP server | ||
129 | |||
130 | |||
131 | == 3.4 Test CoAP Downlink == | ||
132 | |||
133 | ((( | ||
134 | Try to use MQTT.fx to publish a message to the topic (topic0) in the server. CoAP extension will see this incomming message. | ||
135 | ))) |