Hide last authors
Xiaoling 44.2 1 **~ Table of Contents:**
Xiaoling 1.2 2
Xiaoling 1.4 3 {{toc/}}
Xiaoling 1.3 4
Xiaoling 1.4 5
Xiaoling 44.2 6 = 1.  Introduction =
Xiaoling 1.3 7
Xiaoling 44.2 8
Xiaoling 1.2 9 Dragino LoRa/LoRaWAN gateway support MQTT forwarding. It can forward the sensor data from LoRa network to MQTT server , and vice verse.
10
Xiaoling 3.2 11
Xiaoling 44.2 12 == 1.1  Support Devices ==
Xiaoling 1.2 13
Xiaoling 44.2 14
Xiaoling 1.2 15 This MQTT forward instruction is for below devices:
16
Xiaoling 50.1 17 * LG01N, OLG01N ((% style="color:red" %)**Warning**(%%): LG01-P LG01-S use another instruction: [[MQTT for LG01-P/LG01S>>doc:Main.Through MQTT to upload data.WebHome]])
Xiaoling 1.2 18 * LG02, OLG02
Kilight Cao 52.1 19 * LG308, DLOS8, LPS8, LIG16
Xiaoling 1.2 20 * MS14 series if installed with the same firmware. (in this case, the MQTT forward will work , but no LoRa support)
Kilight Cao 52.1 21 * LG308N, DLOS8N, LPS8N
22 * LPS8V2
Xiaoling 1.2 23
Kilight Cao 52.1 24 The MQTT Client Utility used in Dragino is **mosquitto_pub** and **mosquitto_sub**. User can add more options to the mqtt commands.
Xiaoling 44.2 25
Kilight Cao 52.1 26 Check out this link for more mosquito-related directives **[[https:~~/~~/mosquitto.org/man/mosquitto_pub-1.html>>https://mosquitto.org/man/mosquitto_pub-1.html]]**
Xiaoling 44.2 27
Xiaoling 1.2 28
Kilight Cao 52.1 29 = 2.  Example to communicate to a simple MQTT server =
Xiaoling 1.2 30
Kilight Cao 52.1 31 == 2.1  Overview ==
Xiaoling 49.2 32
Xiaoling 1.2 33
34 This section is an example to show how to set up LG01-N to communicate with a MQTT server. The MQTT server is a simple utility set up in a local PC. Note: User can set up same server via [[this instruction>>url:http://www.steves-internet-guide.com/install-mosquitto-broker/]].
35
Xiaoling 8.2 36
Kilight Cao 52.1 37 == 2.2  Simulate via MQTT.fx utility ==
Xiaoling 1.2 38
Xiaoling 44.6 39
Xiaoling 1.2 40 The [[MQTT.fx>>url:http://mqttfx.jensd.de/index.php/download]] is a MQTT client tool. We can use this to simulate a MQTT connection to our MQTT broker first to make sure the MQTT broker works. This will also help us understand how it works.
41
Xiaoling 1.14 42 (((
Xiaoling 1.2 43 In this test, the MQTT broker and MQTT.fx are installed in the same PC, so the MQTT server address in MQTT.fx should be localhost. Below shows how to connect to the server.
Xiaoling 1.14 44 )))
Xiaoling 1.2 45
Xiaoling 8.2 46 [[image:image-20220527134929-6.png]]
Xiaoling 1.2 47
48 Connect to MQTT Broker
49
Xiaoling 9.2 50
Xiaoling 1.2 51 After connected, use publish to public some thing to MQTT server. This to simulate upsteam
52
Xiaoling 9.2 53 [[image:image-20220527135037-7.png]]
Xiaoling 1.2 54
55 Upstream: Publish message to MQTT Broker
56
Xiaoling 9.2 57
Xiaoling 1.2 58 To simulate a downstream, use MQTT.fx to subscribe a topic, and publish something to this topic. as Below:
59
Xiaoling 10.2 60 [[image:image-20220527135215-8.png]]
Xiaoling 1.2 61
62 Downstream: Subscribe a topic to get downstream
63
64
Xiaoling 44.6 65
Kilight Cao 52.1 66 = 3. Add LoRa support to communicate with remote sensor =
Xiaoling 47.1 67
Xiaoling 1.2 68
69 In above section, we have configured the UI to support MQTT upstream and downstream. We can simulate via Linux command. In this section, we will guide how to communicate with remote LoRa End Node for upstream and downstream.
70
Xiaoling 19.3 71
Xiaoling 49.2 72
Kilight Cao 52.1 73 == 3.1  Use LoRa Raw protocol for communication ~-~- For LG01/LG02 ==
Xiaoling 1.2 74
Xiaoling 45.2 75
Xiaoling 1.20 76 (((
Kilight Cao 52.1 77 We can use **[[LoRa Shield>>url:http://www.dragino.com/products/lora/item/102-lora-shield.html]]** to send LoRa Raw data to Gateway and receive data from gateway.
Xiaoling 1.20 78 )))
79
80 (((
Kilight Cao 52.1 81 The example Sketch for LoRa Shield +Arduino is here: **[[LoRa_Shield_Sketch_For_MQTT>>url:http://www.dragino.com/downloads/index.php?dir=LoraShield/]]**
Xiaoling 1.20 82 )))
83
84 (((
Kilight Cao 52.1 85 And this link is the required library: **[[arduino-LoRa-master>>url:http://www.dragino.com/downloads/index.php?dir=LoraShield/]]**. Unzip this library and put in Arduino library location.
Xiaoling 45.2 86
87
Xiaoling 1.20 88 )))
89
90 (((
91 What does the Arduino Sketch do? The Arduino Sketch will:
92 )))
93
94 * Upstream: Keep sending a LoRa Message every minutes with this payload : <4567>tem=xx&hum=yy (Where xx and yy are temperature and humidity value generated randomly).
95 * Downstream: Listening broadcast message from gateway, and print it in console.
96 * The LoRa parameter settings in Arduino should match the LoRa settings in gateway, as below:
97
Xiaoling 21.2 98 [[image:image-20220527140354-18.png]]
Xiaoling 1.2 99
100 LoRa Parameter should match
101
102
103 Below is the test result after the Arduino Sketch is running.
104
Xiaoling 21.2 105 [[image:image-20220527140459-19.png]]
Xiaoling 1.2 106
107 Upstream Data Flow
108
Xiaoling 21.2 109
Xiaoling 22.2 110 [[image:image-20220527140542-20.png]]
Xiaoling 1.2 111
112 Downstream Data Flow
113
114
Kilight Cao 52.1 115 == 3.2  Use LoRaWAN Protocol for communication ~-~- For LG308/LPS8/DLOS8/LG308N/LPS8N/DLOS8N ==
Xiaoling 45.2 116
117
Xiaoling 1.20 118 (((
Xiaoling 23.2 119 Since firmware (% style="color:#4f81bd" %)**LG02_LG08~-~-build-v5.3.1585192026-20200326-1109,**(%%) Dragino LoRaWAN gateways support the communication to LoRaWAN (% style="color:#4f81bd" %)**ABP end node**(%%) locally without the need of LoRaWAN server. This feature allow us to integrate MQTT in the gateway to support LoRaWAN to MQTT forwarding or visa verse.
Xiaoling 1.20 120 )))
121
122 (((
Xiaoling 23.2 123 When use test this feature, please use the version higher then : (% style="color:#4f81bd" %)**LG02_LG08~-~-build-v5.4.1593400722-20200629-1120**(%%), in this version, the upload format is changed and readable, which is easier for integration.
Xiaoling 45.2 124
125
Xiaoling 47.1 126 (% style="color:blue" %)**Video Instruction**(%%): (% style="color:blue" %)[[https:~~/~~/youtu.be/qJTY441-t90>>url:https://youtu.be/qJTY441-t90]]
Xiaoling 1.20 127 )))
128
129 (((
Xiaoling 47.1 130 (% style="color:blue" %)**Step 1**(%%): Refer [[Communicate with ABP End Node>>Communicate with ABP End Node without LoRaWAN Network Server --- LG308]] to know how to set up LG308 to work with LoRaWAN End node.
Xiaoling 1.20 131 )))
132
133 (((
Xiaoling 45.2 134 (% style="color:blue" %)**Step 2**(%%): Make sure your Radio settings match the End Node settings.
Xiaoling 1.20 135 )))
136
Xiaoling 23.2 137 [[image:image-20220527141235-21.png]]
Xiaoling 1.2 138
139 Use Same Frequency Band as End Node
140
141
142 (((
Xiaoling 2.5 143 (((
Xiaoling 45.2 144 (% style="color:blue" %)**Step 3**(%%): Set up publish format and MQTT channel. The LG308 will store the Data from End node in (% style="color:#4f81bd" %)**HEX format**(%%) in the file.
Xiaoling 1.20 145 )))
Xiaoling 2.5 146 )))
Xiaoling 1.2 147
Kilight Cao 44.1 148 [[image:image-20220613191345-4.png]]
Xiaoling 1.2 149
150
Xiaoling 45.2 151 (% style="color:blue" %)**Step 4**(%%): Map the Device Address to Remote ID in MQTT server.
Xiaoling 1.2 152
Kilight Cao 44.1 153 [[image:image-20220613190635-2.png]]
Xiaoling 1.2 154
155
Xiaoling 45.2 156 (% style="color:blue" %)**Step 5: Upstream**(%%): Save the change, we can see the log info via "sytem log", End Node and MQTT Server
Xiaoling 1.2 157
Xiaoling 26.2 158 [[image:image-20220527141843-24.png]]
Xiaoling 1.2 159
160
Xiaoling 28.2 161 [[image:image-20220527141933-25.png]]
Xiaoling 1.2 162
163 Choose ASCII Format
164
165
Xiaoling 28.2 166 [[image:image-20220527142028-26.png]]
167
Xiaoling 1.2 168 LHT65 Decoder
169
170
Xiaoling 45.2 171 (% style="color:blue" %)**Step 6: Set up subscribe**(%%)**:** Subscribe a topci for downstream.
Xiaoling 2.3 172
Kilight Cao 44.1 173 [[image:image-20220613191426-5.png]]
Xiaoling 1.2 174
175
Xiaoling 45.2 176 (% style="color:blue" %)**Step 7: Downstream**(%%): Save the change, we can see the log info via "sytem log", End Node and MQTT Server.
Xiaoling 1.2 177
Xiaoling 30.2 178 [[image:image-20220527142239-28.png]]
Xiaoling 1.2 179
180
Kilight Cao 44.1 181
182 mosquitto_pub -h $server_address -p $server_port -t $Client_ID -m "**dev_addr,imme/time,txt/hex,payload**"
183
184 (% class="box infomessage" %)
185 (((
Xiaoling 45.2 186 **mosquitto_pub -h 10.130.2.192 -p 1883 -t dragino-1d25dc/ -m "260211D,time,txt,hello"**
Kilight Cao 44.1 187 )))
188
189 mosquitto_pub -h $server_address -p $server_port -t $Client_ID -m "**dev_addr,imme/time,txt/hex,payload,txpw,txbw,SF,frequency,rxwindow**"
190
191 (% class="box infomessage" %)
192 (((
Kilight Cao 48.1 193 **mosquitto_pub -h 10.130.2.192 -p 1883 -t dragino-1d25dc/ -m "260211D,time,txt,hello,20,1,SF12,923300000,2"**
Kilight Cao 44.1 194 )))
195
Kilight Cao 52.1 196 (% style="color:red" %)**Notice: The text use for Downstream must meet the requirement from [[LG308 Downstream Payload>>Communicate with ABP End Node without LoRaWAN Network Server --- LG308||anchor="H2.2Downstream"]]**
197
Kilight Cao 44.1 198 Or use [[MQTT.fx>>https://mqttfx.jensd.de/index.php/download]]
199
200 [[image:image-20220613192816-6.png||height="440" width="1056"]]
201
Xiaoling 45.2 202
Kilight Cao 57.1 203 == 3.3  Use LoRaWAN Protocol for communication ~-~- For LPS8V2 ==
Xiaoling 1.2 204
Kilight Cao 57.1 205 (((
206
Xiaoling 45.2 207
Kilight Cao 57.1 208 (% style="color:blue" %)**Step 1**(%%): Refer **[[Register Node to Chirpstack>>http://wiki.dragino.com/xwiki/bin/view/Main/Notes%20for%20ChirpStack/#H2.1A0RegisterNode]]** and **[[Register Gateway to Chirpstack>>http://wiki.dragino.com/xwiki/bin/view/Main/Notes%20for%20ChirpStack/#H4.A0SemtechUDPforChirpStackv4]]**to know How do register node devices and gateways to the built-in chirpstack server
209 )))
Xiaoling 1.2 210
Kilight Cao 57.1 211 (((
212 (% style="color:blue" %)**Step 2**(%%): Make sure your node data is normal on the built-in server
Xiaoling 1.2 213
Kilight Cao 57.1 214 Click "**Event**" on the node device interface on chirpstack, and then click "**+up**" to view the detailed data information of the node device
215
216 [[image:image-20240831160038-1.png||height="680" width="1321"]]
217 )))
218
219
220 (% style="color:blue" %)**Step 3**(%%): Set up MQTT Forworder.
221
222 [[image:image-20240831162021-2.png||height="684" width="1191"]]
223
224
225 (% style="color:blue" %)**Step 4:** (%%)Check result
226
227 Users can check the data through the MQTT server, or use the MQtt.fx tool.
228
229 [[image:image-20240831162254-3.png||height="661" width="1284"]]
230
231 [[image:image-20240831162454-4.png]]
232
Kilight Cao 52.1 233 = 4.  How to ask for Support =
Xiaoling 45.2 234
235
Xiaoling 1.2 236 If a user still not have trouble making it works. please send a mail to support@dragino.com with the below info:
237
238 * Detail of your LoRaWAN end node.
239 * Gateway Model and firmware version
240 * A set of screenshots you configure in the gateway according to our instruction
241 * A full log of "logread -f"
Copyright ©2010-2024 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0