<
From version < 53.1 >
edited by Xiaoling
on 2023/08/02 11:26
To version < 53.3 >
edited by Xiaoling
on 2023/08/02 11:42
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,3 +1,10 @@
1 +(% class="wikigeneratedid" %)
2 +**Table of Contents:**
3 +
4 +{{toc/}}
5 +
6 +
7 +
1 1  = 1. The use of this guideline =
2 2  
3 3  
... ... @@ -9,10 +9,556 @@
9 9  
10 10  The -NB and -NS models support (% style="color:blue" %)**LTE Cat NB2**(%%), with below frequency band: multiple frequency bands of (% style="color:blue" %)**B1/B2/B3/B4/B5/B8/B12/B13/B14/B17/B18/B19/B20/B25/B28/B66/B70/B85**(%%) . Make sure you use a the NB-IoT SIM card.
11 11  
19 +(% border="1" cellspacing="4" style="background-color:#f2f2f2; width:510px" %)
20 +|(% style="background-color:#4f81bd; color:white" %)**SIM Provider**|(% style="background-color:#4f81bd; color:white" %)**APN**|(% style="background-color:#4f81bd; color:white" %)**NB-IoT Coverage**|(% style="background-color:#4f81bd; color:white" %)**Comments**
21 +|1NCE| | |
22 +|China Mobile| | |
12 12  
24 +
25 +
13 13  == 2.1 1NCE SIM Card. ==
14 14  
15 15  
29 +
16 16  = 3. Configure to connect to different servers =
17 17  
32 +== 3.1 General UDP Connection ==
33 +
34 +
35 +The NB-IoT Sensor can send packet to server use UDP protocol.
36 +
37 +
38 +=== 3.1.1 Simulate UDP Connection by PC tool ===
39 +
40 +
41 +We can use PC tool to simulate UDP connection to make sure server works ok.
42 +
43 +[[image:image-20230802112413-1.png]]
44 +
45 +
46 +=== 3.1.2 Configure NB-IoT Sensor ===
47 +
48 +==== 3.1.2.1 AT Commands ====
49 +
50 +
51 +**AT Commands:**
52 +
53 +* AT+PRO=2,0  ~/~/  Set to use UDP protocol to uplink ,Payload Type select Hex payload
54 +* AT+SERVADDR=120.24.4.116,5601    ~/~/  Set UDP server address and port
55 +* AT+CFM=1        ~/~/  If the server does not respond, this command is unnecessary
56 +
57 +[[image:image-20230802112413-2.png]]
58 +
59 +
60 +==== 3.1.2.2 Uplink Example ====
61 +
62 +
63 +[[image:image-20230802112413-3.png]]
64 +
65 +
66 += 2. General MQTT Connection =
67 +
68 +The NB-IoT Sensor can send packet to server use MQTT protocol.
69 +
70 +Below are the commands
71 +
72 +AT Commands:
73 +
74 +* AT+PRO=3,0 ~/~/  Set to use MQTT protocol to uplink, Payload Type select Hex payload.
75 +* AT+SERVADDR=120.24.4.116,1883    ~/~/  Set MQTT server address and port
76 +* AT+CLIENT=CLIENT        ~/~/  Set up the CLIENT of MQTT
77 +* AT+UNAME=UNAME                      ~/~/  Set the username of MQTT
78 +* AT+PWD=PWD                          ~/~/  Set the password of MQTT
79 +* AT+PUBTOPIC=NSE01_PUB               ~/~/  Set the sending topic of MQTT
80 +* AT+SUBTOPIC=NSE01_SUB           ~/~/  Set the subscription topic of MQTT
81 +
82 +[[image:image-20230802112413-4.png]]
83 +
84 +[[image:image-20230802112413-5.png]]
85 +
86 +Notice: MQTT  protocol has a much higher power consumption compare with UDP / CoAP  protocol. Please check the power analyze document and adjust the uplink  period to a suitable interval.
87 +
88 +
89 +
90 += 3. [[ThingSpeak>>url:https://thingspeak.com/]] (via MQTT) =
91 +
92 +== 1.1 Get MQTT Credentials ==
93 +
94 +[[ThingSpeak>>url:https://thingspeak.com/]] connection uses MQTT Connection. So we need to get MQTT Credentials first. You need to point MQTT Devices to ThingSpeak Channel as well.
95 +
96 +[[image:image-20230802112413-6.png]]
97 +
98 +[[image:image-20230802112413-7.png]]
99 +
100 +
101 +== 1.2. Simulate with MQTT.fx ==
102 +
103 +=== 1.2.1 Establish MQTT Connection ===
104 +
105 +After we got MQTT Credentials, we can first simulate with PC tool MQTT.fx tool to see if the Credentials and settings are fine.
106 +
107 +[[image:image-20230802112413-8.png]]
108 +
109 +* Broker Address: mqtt3.thingspeak.com
110 +* Broker Port: 1883
111 +* Client ID: <Your ThingSpeak MQTT ClientID>
112 +* User Name: <Your ThingSpeak MQTT User Name>
113 +* Password: <Your ThingSpeak MQTT Password>
114 +
115 +=== 1.2.2 Publish Data to ThingSpeak Channel ===
116 +
117 +[[image:image-20230802112413-9.png]]
118 +
119 +[[image:image-20230802112413-10.png]]
120 +
121 +In MQTT.fx, we can publish below info:
122 +
123 +* Topic: channels/YOUR_CHANNEL_ID/publish
124 +* Payload: field1=63&field2=67&status=MQTTPUBLISH
125 +
126 +Where 63 and 67 are the value to be published to field1 & field2.
127 +
128 +
129 +Result:
130 +
131 +[[image:image-20230802112413-11.png]]
132 +
133 +
134 +== 1.3 Configure NB-IoT Sensor for connection ==
135 +
136 +=== 1.3.1 AT Commands: ===
137 +
138 +In the NB-IoT, we can run below commands so to publish the channels like MQTT.fx
139 +
140 +* AT+PRO=3,1   ~/~/Set to use ThingSpeak Server and Related Payload
141 +* AT+CLIENT=<Your ThingSpeak MQTT ClientID>
142 +* AT+UNAME=<Your ThingSpeak MQTT User Name>
143 +* AT+PWD=<Your ThingSpeak MQTT Password>
144 +* AT+PUBTOPIC=<YOUR_CHANNEL_ID>
145 +* AT+SUBTOPIC=<YOUR_CHANNEL_ID>
146 +
147 +
148 +=== 1.3.2 Uplink Examples ===
149 +
150 +For S31-NB
151 +
152 +For SE01-NB
153 +
154 +For DDS20-NB
155 +
156 +For DDS45-NB
157 +
158 +For DDS75-NB
159 +
160 +For NMDS120-NB
161 +
162 +For SPH01-NB
163 +
164 +For NLM01-NB
165 +
166 +For NMDS200-NB
167 +
168 +For CPN01-NB
169 +
170 +For DS03A-NB
171 +
172 +For SN50V3-NB
173 +
174 +
175 +=== 1.3.2 Map fields to sensor value ===
176 +
177 +When NB-IoT sensor upload to ThingSpeak. The payload already specify which fileds related to which sensor value. Use need to create fileds in Channels Settings. with name so to see the value correctly.
178 +
179 +
180 +[[image:image-20230802112413-12.png]]
181 +
182 +[[image:image-20230802112413-13.png]]
183 +
184 +
185 +Below is the NB-IoT Product Table show the mapping.
186 +
187 +|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)Field1|(% colspan="1" rowspan="1" %)Field2|(% colspan="1" rowspan="1" %)Field3|(% colspan="1" rowspan="1" %)Field4|(% colspan="1" rowspan="1" %)Field5|(% colspan="1" rowspan="1" %)Field6|(% colspan="1" rowspan="1" %)Field7|(% colspan="1" rowspan="1" %)Field8|(% colspan="1" rowspan="1" %)(((
188 +Field9
189 +
18 18  
191 +)))|(% colspan="1" rowspan="1" %)(((
192 +Field10
193 +
194 +
195 +)))
196 +|(% colspan="1" rowspan="1" %)S31x-NB|(% colspan="1" rowspan="1" %)Temperature |(% colspan="1" rowspan="1" %)Humidity|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
197 +|(% colspan="1" rowspan="1" %)SE01-NB|(% colspan="1" rowspan="1" %)Temperature |(% colspan="1" rowspan="1" %)Humidity|(% colspan="1" rowspan="1" %)conduct|(% colspan="1" rowspan="1" %)dielectric_constant|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
198 +|(% colspan="1" rowspan="1" %)DDS20-NB|(% colspan="1" rowspan="1" %)distance|(% colspan="1" rowspan="1" %)(((
199 +Battery
200 +
201 +
202 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
203 +|(% colspan="1" rowspan="1" %)DDS45-NB|(% colspan="1" rowspan="1" %)distance|(% colspan="1" rowspan="1" %)(((
204 +Battery
205 +
206 +
207 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
208 +|(% colspan="1" rowspan="1" %)DDS75-NB|(% colspan="1" rowspan="1" %)distance|(% colspan="1" rowspan="1" %)(((
209 +Battery
210 +
211 +
212 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
213 +|(% colspan="1" rowspan="1" %)NMDS120-NB|(% colspan="1" rowspan="1" %)distance|(% colspan="1" rowspan="1" %)(((
214 +Battery
215 +
216 +
217 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
218 +|(% colspan="1" rowspan="1" %)SPH01-NB|(% colspan="1" rowspan="1" %)ph|(% colspan="1" rowspan="1" %)Temperature|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
219 +|(% colspan="1" rowspan="1" %)NLM01-NB|(% colspan="1" rowspan="1" %)Humidity|(% colspan="1" rowspan="1" %)Temperature|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
220 +|(% colspan="1" rowspan="1" %)NMDS200-NB|(% colspan="1" rowspan="1" %)distance1|(% colspan="1" rowspan="1" %)distance2|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
221 +|(% colspan="1" rowspan="1" %)CPN01-NB|(% colspan="1" rowspan="1" %)alarm|(% colspan="1" rowspan="1" %)count|(% colspan="1" rowspan="1" %)door open duration|(% colspan="1" rowspan="1" %)calc flag|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
222 +|(% colspan="1" rowspan="1" %)DS03A-NB|(% colspan="1" rowspan="1" %)level|(% colspan="1" rowspan="1" %)alarm|(% colspan="1" rowspan="1" %)pb14door open num|(% colspan="1" rowspan="1" %)pb14 last open time|(% colspan="1" rowspan="1" %)pb15 level status|(% colspan="1" rowspan="1" %)pb15 alarm status|(% colspan="1" rowspan="1" %)pb15 door open num|(% colspan="1" rowspan="1" %)pb15 last open time|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI
223 +|(% colspan="1" rowspan="1" %)SN50V3-NB|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
224 +|(% colspan="1" rowspan="1" %)mod1|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)DS18B20 Temp|(% colspan="1" rowspan="1" %)exit_state/input PA4|(% colspan="1" rowspan="1" %)adc0|(% colspan="1" rowspan="1" %)Temperature |(% colspan="1" rowspan="1" %)Humidity|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
225 +|(% colspan="1" rowspan="1" %)mod2|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)Battery|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)(((
226 +DS18B20 Temp
227 +
228 +
229 +)))|(% colspan="1" rowspan="1" %)(((
230 +exit_state/input PA4
231 +
232 +
233 +)))|(% colspan="1" rowspan="1" %)adc0|(% colspan="1" rowspan="1" %)distance|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
234 +|(% colspan="1" rowspan="1" %)mod3|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)(((
235 +Battery
236 +
237 +
238 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)adc0|(% colspan="1" rowspan="1" %)(((
239 +exit_state/input PA4
240 +
241 +
242 +)))|(% colspan="1" rowspan="1" %)adc1|(% colspan="1" rowspan="1" %)Temperature|(% colspan="1" rowspan="1" %)Humidity|(% colspan="1" rowspan="1" %)adc4|(% colspan="1" rowspan="1" %)
243 +|(% colspan="1" rowspan="1" %)mod4|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)(((
244 +Battery
245 +
246 +
247 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)(((
248 +DS18B20 Temp
249 +
250 +
251 +)))|(% colspan="1" rowspan="1" %)adc0|(% colspan="1" rowspan="1" %)(((
252 +exit_state/input PA4
253 +
254 +
255 +)))|(% colspan="1" rowspan="1" %)(((
256 +DS18B20 Temp2
257 +
258 +
259 +)))|(% colspan="1" rowspan="1" %)(((
260 +DS18B20 Temp3
261 +
262 +
263 +)))|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
264 +|(% colspan="1" rowspan="1" %)mod5|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)(((
265 +Battery
266 +
267 +
268 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)(((
269 +DS18B20 Temp
270 +
271 +
272 +)))|(% colspan="1" rowspan="1" %)adc0|(% colspan="1" rowspan="1" %)(((
273 +exit_state/input PA4
274 +
275 +
276 +)))|(% colspan="1" rowspan="1" %)Weight|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
277 +|(% colspan="1" rowspan="1" %)mod6|(% colspan="1" rowspan="1" %)mod|(% colspan="1" rowspan="1" %)(((
278 +Battery
279 +
280 +
281 +)))|(% colspan="1" rowspan="1" %)RSSI|(% colspan="1" rowspan="1" %)count|(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %) |(% colspan="1" rowspan="1" %)
282 +
283 += 4. Datacake =
284 +
285 +== 1.1 Define Product ==
286 +
287 +Firstly, we need to set the MQTT mode to datacake, and we need to run AT+PRO=3,2. This command is set to datacake. After running the command, the device automatically sets the server address, port.
288 +
289 +
290 +By chosing to add the device under a "New Product" you are required to give a name for this product. You can name it something like "My First MQTT Product".
291 +
292 +[[image:image-20230802112413-14.png]]
293 +
294 +== 1.2 Create Device ==
295 +
296 +In the second step you have to define the device which should be added to the product.
297 +
298 +[[image:image-20230802112413-15.png]]
299 +
300 +Enter a name here (such as "My First MQTT Device") and complete the creation of the device by clicking on the "Next" button.
301 +
302 +
303 +== 1.3 Create Database Fields ==
304 +
305 +After creating the device, it is listed in the table of the fleet view. Now open the device by clicking on the entry in the list.
306 +
307 +You will then see a device view with an empty dashboard. Now, the first thing we want to do is navigate to the Device configuration. To do this, use the tab bar and click on "Configuration".
308 +
309 +[[image:image-20230802112413-16.png]]
310 +
311 +[[image:image-20230802112413-17.png]]
312 +
313 +To create a first database field, please click on the "Add Field" button as marked in the screenshot above.
314 +
315 +This will open another modal asking for some required input for your first field.
316 +
317 +[[image:image-20230802112413-18.png]]
318 +
319 +[[image:image-20230802112413-19.png]]
320 +
321 +== 1.4 Set up Broker ==
322 +
323 +The broker is running on mqtt.datacake.co on ports 1883 and 8883. Port 1883 is unsecured and should not be used in production environments. Port 8883 uses a CA signed server certificate.
324 +
325 +You will need an access token to log into the Datacake MQTT Broker. You can use your own personal token or create a token explicitly for individual devices or groups of devices.
326 +
327 +View your Personal Access Token
328 +
329 +You can view your own token via the User-Settings-Menu. You can reach this menu by clicking on "Edit Profile" at the end of the list using the Workspace Selector:
330 +
331 +[[image:image-20230802112413-20.png]]
332 +
333 +MQTT Client-ID
334 +
335 +The Datacake Broker manages the client IDs internally. You do not need to worry about a client ID. If your client optionally supports the specification of a client ID, please leave this specification blank. Your client then creates a randomly generated ID.
336 +
337 +AT+CLIENT=“Any value”
338 +
339 +AT+UNAME=Token
340 +
341 +AT+PWD=Token
342 +
343 +[[image:image-20230802112413-21.png]]
344 +
345 +
346 +== 1.6 Create your first Subscription ==
347 +
348 +Subscribe
349 +
350 +Data is published according to the following structure:
351 +
352 +dtck~/~//
353 +
354 +Subscribe to topics using this structure to receive messages via MQTT when readings (via API or MQTT) arrive in the Datacake Cloud. Messages are published whenever there is a change to a corresponding database field.
355 +
356 +
357 +[[image:image-20230802112413-22.png]]
358 +
359 +
360 +[[image:image-20230802112413-23.png]]
361 +
362 +
363 +[[image:image-20230802112413-24.png]]
364 +
365 +
366 +example:
367 +
368 +AT+PUBTOPIC=dtck-pub/nbmattest/936c0db6-e9a5-4353-9fdb-3f63c8bfce7e/Temperature
369 +
370 +[[image:image-20230802112413-25.png]]
371 +
372 +== 1.7 Define Publish Topic ==
373 +
374 +Publish
375 +
376 +To upload data into the Datacake Cloud and into a specific device, you publish the data to the respective topic structure.
377 +
378 +Due to the nature of MQTT, the topic prefix differs as follows:
379 +
380 +dtck-pub~/~//
381 +
382 +example:
383 +
384 +AT+SUBTOPIC=dtck/nbmattest/936c0db6-e9a5-4353-9fdb-3f63c8bfce7e/Temperature
385 +
386 +== 1.8 upload data ==
387 +
388 +[[image:image-20230802112413-26.png]]
389 +
390 +[[image:image-20230802112413-27.png]]
391 +
392 +[[image:image-20230802112413-28.png]]
393 +
394 += =
395 +
396 += 5. Node-Red (via MQTT) =
397 +
398 +
399 +== 1.1 Configure Node-Red ==
400 +
401 +[[image:image-20230802112413-29.png]]
402 +
403 +[[image:image-20230802112413-30.png]]
404 +
405 +== 1.2 Simulate Connection ==
406 +
407 +[[image:image-20230802112413-31.png]]
408 +
409 +== 1.3 Configure NB-IoT Sensors ==
410 +
411 +* AT+PRO=3,0(hex format) or 3,5(json format)    ~/~/Set to mqtt Server and  Payload
412 +* AT+CLIENT=any value
413 +* AT+UNAME=any value
414 +* AT+PWD=any value
415 +* AT+PUBTOPIC=any value
416 +* AT+SUBTOPIC=any value
417 +
418 += 6. ThingsBoard.Cloud (via MQTT) =
419 +
420 +== 1.1 Configure ThingsBoard ==
421 +
422 +=== 1.1.1 Create Device ===
423 +
424 +Create a New Device in [[ThingsBoard>>url:https://thingsboard.cloud/]].
425 +
426 +[[image:image-20230802112413-32.png]]
427 +
428 +=== 1.1.2 Create Uplink & Downlink Converter ===
429 +
430 +Uplink Converter
431 +
432 +The purpose of the decoder function is to parse the incoming data and metadata to a format that ThingsBoard can consume. deviceName and deviceType are required, while attributes and telemetry are optional. Attributes and telemetry are flat key-value objects. Nested objects are not supported.
433 +
434 +To create an uplink converter go to the Integrations center -> Data converters page and click “plus” button. Name it “MQTT Uplink Converter” and select type Uplink. Use debug mode for now.
435 +
436 +[[image:image-20230802112413-33.png]]
437 +
438 +
439 +Downlink Converter
440 +
441 +The Downlink converter transforming outgoing RPC message and then the Integration sends it to external MQTT broke
442 +
443 +[[image:image-20230802112413-34.png]]
444 +
445 +Note:Our device payload is already human readable data. Therefore, users do not need to write decoders. Simply create by default.
446 +
447 +=== 1.1.3 MQTT Integration Setup ===
448 +
449 +Go to the Integrations center -> Integrations page and click “plus” icon to add a new integration. Name it “MQTT Integration”, select type MQTT;
450 +
451 +[[image:image-20230802112413-35.png]]
452 +
453 +* The next steps is to add the recently created uplink and downlink converters;
454 +
455 +[[image:image-20230802112413-36.png]]
456 +
457 +[[image:image-20230802112413-37.png]]
458 +
459 +Add a topic filter:
460 +
461 +
462 +tb/mqtt-integration-tutorial/sensors~/~/temperature ~-~-> Temperature 固定的? 对的。
463 +
464 +You can also select an MQTT QoS level. We use MQTT QoS level 0 (At most once) by default;
465 +
466 +[[image:image-20230802112413-38.png]]
467 +
468 +== 1.2 Simulate with MQTT.fx ==
469 +
470 +[[image:image-20230802112413-39.png]]
471 +
472 +[[image:image-20230802112413-40.png]]
473 +
474 +== 1.3 Configure NB-IoT Sensor ==
475 +
476 +AT Commands
477 +
478 +AT+PRO=3,3  ~/~/ Use MQTT to connect to ThingsBoard.
479 +
480 +AT+SUBTOPIC=device name ~-~-> 只需要 Device Name 吗?对的
481 +
482 +AT+PUBTOPIC=device name ~-~-> 只需要 Device Name 吗?对的
483 +
484 +
485 +Users do not need to fill in the client, username, and password. But the configuration information of the device requires setting the client, username, and password, which can be entered freely. (软件自动填充为 Device Name 吧).这边不用提示了,客户不需要输入。(大部分客户还是会自己去设置这个的,提高安全性)
486 +
487 +CLIENT :“Any value”
488 +
489 +User Name:“Any value”
490 +
491 +Password:“Any value”
492 +
493 +
494 +Test Uplink by click the button for 1 second
495 +
496 +[[image:image-20230802112413-41.png]]
497 +
498 +[[image:image-20230802112413-42.png]]
499 +
500 +[[image:image-20230802112413-43.png]]
501 +
502 +
503 += 7. [[Tago.io>>url:https://admin.tago.io/]] (via MQTT) =
504 +
505 +== 5.1 Create device & Get Credentials ==
506 +
507 +We use MQTT Connection to send data to [[Tago.io>>url:https://admin.tago.io/]]. We need to Create Device and Get MQTT Credentials first.
508 +
509 +[[image:image-20230802112413-44.png]]
510 +
511 +[[image:image-20230802112413-45.png]]
512 +
513 += =
514 +
515 +Go to the Device section and create a device. Then, go to the section tokens and copy your device-token.
516 +
517 +[[image:image-20230802112413-46.png]]
518 +
519 +
520 +On the Connection Profile window, set the following information: (这边加一个截图)
521 +
522 +* Profile Name: “Any name”
523 +* Broker Address: mqtt.tago.io
524 +* Broker Port: 1883
525 +* Client ID: “Any value”
526 +
527 +On the section User credentials, set the following information:(这边加一个截图)
528 +
529 +* User Name: “Any value” Tago validates your user by the token only
530 +* Password: “Your device token”
531 +* PUBTOPIC: “Any value”
532 +* SUBTOPIC: “Any value”
533 +
534 +== 5.2 Simulate with MQTT.fx ==
535 +
536 +[[image:image-20230802112413-47.png]]
537 +
538 +[[image:image-20230802112413-48.png]]
539 +
540 +Users can run the AT+PRO=3,5 command, and the payload will be converted to JSON format.
541 +
542 +[[image:image-20230802112413-49.png]]
543 +
544 +== 1.4. tago data ==
545 +
546 +
547 +[[image:image-20230802112413-50.png]]
548 +
549 +[[image:image-20230802112413-51.png]]
550 +
551 +== 1.4. TLS mode ==
552 +
553 +Users can choose to use SSL/TLS mode.
554 +
555 +On the SSL/TLS section, check the option Enable SSL/TLS, and click OK.
556 +
557 +The device needs to enable the TLS mode and set the AT+TLSMOD=1,0 command.
558 +
559 +* Profile Name: “Any name”
560 +* Broker Address: mqtt.tago.io
561 +* Broker Port: 8883
562 +* Client ID: “Any value”
563 +* User Name: “Any value” Tago validates your user by the token only
564 +* Password: “Your device token”
565 +* PUBTOPIC: “Any value”
566 +* SUBTOPIC: “Any value”
567 +
568 +[[image:image-20230802112413-52.png]]
569 +
570 +
571 +
Copyright ©2010-2024 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0