Changes for page Outdoor & Indoor signal measuring Solution End User Guide V1.2
Last modified by Hera Guo on 2025/06/10 15:14
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Attachments (0 modified, 21 added, 0 removed)
- 1748601609894-341.png
- 1748601692184-985.png
- 1748601714123-652.png
- 1748601795657-856.png
- 1748602283686-496.png
- 1748602304586-198.png
- 1748602461523-537.png
- 1748602571865-850.png
- 1748602603331-559.png
- 1748602881431-230.png
- 1748603053572-488.png
- 1748603159913-908.png
- 1749375906728-208.png
- 1749376046690-863.png
- 1749376107488-669.png
- 1749376404143-588.png
- 1749376507835-691.png
- 1749376586844-796.png
- 569a0a131a83c658f2ce70fe349f72f.jpg
- demo.pem
- ecb9c251e932018692e490e26e50763.jpg
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 - 11 +Outdoor & Indoor signal measuring Solution End User Guide V1.2 - Content
-
... ... @@ -1,6 +1,6 @@ 1 1 {{toc/}} 2 2 3 -= **1. Introduction ~/~/名字已修改,以下内容中“LA66”全部替换成“LA66USB LoRaWAN Adapter”** =3 += **1. Introduction** = 4 4 5 5 == **1.1 What is Outdoor & Indoor signal measuring Solution?** == 6 6 ... ... @@ -19,7 +19,7 @@ 19 19 == **1.2 Features ** == 20 20 21 21 * **Extensive support** 22 -** Only a LA66 USB LoRaWAN Adapter** **and one Dragino account are needed, the gateway and LNS can be freely matched. **~/~/格式已修正**22 +** Only a LA66 USB LoRaWAN Adapter** **and one Dragino account are needed, the gateway and LNS can be freely matched. 23 23 ** High-accuracy sensors 24 24 ** Reliable data readings 25 25 * **Real-Time measuring** ... ... @@ -41,7 +41,7 @@ 41 41 42 42 = **2. How to Build?** = 43 43 44 -== **2.1 Network Structure ~/~/图片已替换** ==44 +== **2.1 Network Structure** == 45 45 46 46 [[image:结构.png]] 47 47 ... ... @@ -69,9 +69,7 @@ 69 69 * **Bootloader: **We ship the LA66 USB LoRaWAN Adapter with a boot loader by default( More detail: [[https:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/LA66%20USB%20LoRaWAN%20Adapter%20User%20Manual/#H1.10A0UpgradeFirmwareofLA66USBLoRaWANAdapter:~~~~:text=is%20as%20below%3A-,1.10%C2%A0%20Upgrade%20Firmware%20of%20LA66%20USB%20LoRaWAN%20Adapter,-1.10.1%20Update%20method>>https://wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/LA66%20USB%20LoRaWAN%20Adapter%20User%20Manual/#H1.10A0UpgradeFirmwareofLA66USBLoRaWANAdapter:~~:text=is%20as%20below%3A-,1.10%C2%A0%20Upgrade%20Firmware%20of%20LA66%20USB%20LoRaWAN%20Adapter,-1.10.1%20Update%20method]]) 70 70 * **Firmware:** If your device didn't have bootloader or firmware, please burn the latest bootloader & firmware for it in the following way: [[https:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/LA66%20USB%20LoRaWAN%20Adapter%20User%20Manual/#H1.10A0UpgradeFirmwareofLA66USBLoRaWANAdapter:~~~~:text=20model/%23H3.2.1UpdateafirmwareviaDraginoSensorManagerUtility.exe-,1.10.2%20Update%20method%3A%C2%A0For%20LA66%20without%20bootloader,-Explanation%3A>>https://wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/LA66%20USB%20LoRaWAN%20Adapter%20User%20Manual/#H1.10A0UpgradeFirmwareofLA66USBLoRaWANAdapter:~~:text=20model/%23H3.2.1UpdateafirmwareviaDraginoSensorManagerUtility.exe-,1.10.2%20Update%20method%3A%C2%A0For%20LA66%20without%20bootloader,-Explanation%3A]] 71 71 72 -**--Ensure that all devices are pre-registered on Dragino before use~/~/移至章末另起一节--** 73 73 74 - 75 75 ---- 76 76 77 77 == **2.3 Register Devices & Gateways on LNS** == ... ... @@ -102,7 +102,7 @@ 102 102 var data = {}; 103 103 if (bytes.length >= 9) { 104 104 data.flag = bytes[0]; 105 -data.Node_type = " CalculateAVG";103 +data.Node_type = "Dragino_Mapper"; 106 106 data.latitude = parseFloat(((bytes[1] << 24 >>> 0 | bytes[2] << 16 | bytes[3] << 8 | bytes[4]) / 1e6).toFixed(6)); 107 107 data.longitude = parseFloat(((bytes[5] << 24 >>> 0 | bytes[6] << 16 | bytes[7] << 8 | bytes[8]) / 1e6).toFixed(6)); 108 108 ... ... @@ -154,7 +154,7 @@ 154 154 } 155 155 else if(bytes.length==9){ 156 156 data.doorflg = doorflg 157 - data.Node_type = " CalculateAVG"155 + data.Node_type = "Dragino_Mapper" 158 158 data.latitude=parseFloat(((bytes[1]<<24|bytes[2]<<16|bytes[3]<<8|bytes[4])/1000000).toFixed(6)); 159 159 data.longitude=parseFloat(((bytes[5]<<24|bytes[6]<<16|bytes[7]<<8|bytes[8])/1000000).toFixed(6)); 160 160 return data; ... ... @@ -164,13 +164,9 @@ 164 164 165 165 * If you using other LNS, you can code yourself(The first nine bits of the uploaded data are the flag bit + position, and the rest are the title) or send mail to [[support@dragino.cc>>mailto:support@dragino.cc]]) 166 166 167 -=== --**2.2.2 Register Gateway(If you use Dragino's gateway)~/~/删除网关配置介绍**-- === 168 - 169 - 170 - 171 171 ---- 172 172 173 -== **2.4 LNS Connection Method ~/~/已更新标题** ==167 +== **2.4 LNS Connection Method** == 174 174 175 175 **Choose LNS: **After log in Dragino platform, click the button "Import-Dragino-map"and choose the LNS you using. 176 176 ... ... @@ -193,28 +193,31 @@ 193 193 194 194 ---- 195 195 196 -**Example of ChirpStack**~/~/已增添详细文字说明 [[image:1747972538335-599.png]]190 +**Example of ChirpStack**~/~/已增添详细文字说明 197 197 198 - **MQTT Address: **Your MQTT serveraddress or the cloud server address you use192 +[[image:1749375906728-208.png]] 199 199 194 +**MQTT Address: **The MQTT server address or the cloud server address which you using. 195 + 200 200 **Subscribe Topic: **The default for Topic is: application/**chirpstack application id**/device/+/event/up(Replace"**chirpstack application id**" with the one which is actually used) 201 201 202 -**SSL Certificates: ** Copy the contents of the certificates and paste them into the linked file below, a total of three certificates are required(Integrated Certificate File demo Download Address:https:~~/~~/github.com/ThingsEye-io/te-platform/tree/main/chirpstack>>url:https://github.com/ThingsEye-io/te-platform/tree/main/chirpstack]])198 +**SSL Certificates: ** Copy the contents of the certificates and paste them into the linked file below, a total of three certificates are required(Integrated Certificate File demo Download: [[Demo.pem>>attach:demo.pem]]) 203 203 204 204 205 205 ---- 206 206 207 -**Check:**Whether the device is connected to the platform through LNS ~/~/新增自检教学,避免后续额外工作量203 +**Check:**Whether the device is connected to the platform through LNS 208 208 209 -[[image:1748 417055367-336.png]]205 +[[image:1748602571865-850.png]] 210 210 211 211 212 - Whether the device profile is CalculateAVG?Changeit ifitnot.208 + Whether the device profile is Dragino_Mapper? Modifyit if not. 213 213 214 214 [[image:1748416951693-709.png]] 215 215 216 - [[image:1748417025235-726.png]]212 +👇 217 217 214 +[[image:1749376046690-863.png]] 218 218 219 219 ---- 220 220 ... ... @@ -221,7 +221,7 @@ 221 221 222 222 = **3. How To Use?~/~/图片显示问题已修复,硬件使用方法已放到小节头(即插即用,自动判断室内外)** = 223 223 224 -== **3.1 Outdoor_ signaldashboard** ==221 +== **3.1 Outdoor_Mapper dashboard** == 225 225 226 226 Outdoors_signal supports viewing both the signal coverage of a single gateway and the combined coverage of all gateways. 227 227 ... ... @@ -232,14 +232,13 @@ 232 232 **This solution is pre-configured. Under normal circumstances, when the device successfully uploads information through gateways, it will automatically generate the corresponding assets and put them in the Layer.** 233 233 234 234 (% class="wikigeneratedid" %) 235 -The layer will be named after the gateway's IMEI, and you can set a label. At the same time, there will be a dashboard that collects all gateway signals and displays them in an overlay named after the user's registered email address. 232 +The layer will be named after the gateway's IMEI, and you can set a label. At the same time, there will be a dashboard that collects all gateway signals and displays them in an overlay named after the user's registered email address.(Such like :All_signal:$[customer_email]) 236 236 237 - 238 238 ---- 239 239 240 240 Click row of gateway layer will turn to the detail page. 241 241 242 -[[image:174 8601432759-282.png||height="413" width="298"]]👉 [[image:1748601500104-639.png||height="646" width="738"]]238 +[[image:1749376107488-669.png]]👉 [[image:1748603053572-488.png||height="644" width="672"]] 243 243 244 244 245 245 ---- ... ... @@ -246,7 +246,7 @@ 246 246 247 247 Click the top-left corner to return. 248 248 249 -[[image:1748227163443-264.png]] 245 +[[image:1748227163443-264.png||height="184" width="667"]] 250 250 251 251 252 252 ---- ... ... @@ -253,17 +253,11 @@ 253 253 254 254 === **3.1.2 Measuring** === 255 255 256 -Insert the LA66 USB LoRaWAN Adapter into phone or tablet , press the button to switch to ON and start detection.Click the button in the top-right corner of the main page to start receiving data.Data will be uploaded every 7 seconds based on the tablet's location. Simply move the tablet to measure signal strength from different places.252 +Insert the LA66 USB LoRaWAN Adapter into phone or tablet. Data will be uploaded every 7 seconds based on the tablet's location. Simply move the tablet to measure signal strength from different places. 257 257 258 -[[image:1 748243979452-223.jpg||height="495" width="661"]]254 +[[image:569a0a131a83c658f2ce70fe349f72f.jpg||height="357" width="659"]] 259 259 260 -[[image:1748227286978-688.png||height="149" width="660"]] 261 261 262 - 👇 263 - 264 -[[image:1748227303533-598.png||height="151" width="661"]] 265 - 266 - 267 267 ---- 268 268 269 269 When the gateway received the first set of data, the current gateway will appear in the left-side list of the gateway interface. When received the second set of data, the current signal strength will be displayed on the right-side map. ... ... @@ -270,7 +270,7 @@ 270 270 271 271 The measured data will be displayed in translucent dots of different colors, green represents a good signal, and red represents a poor signal. 272 272 273 -[[image:1748 227348704-578.png||height="360" width="663"]]263 +[[image:1748601795657-856.png||height="632" width="663"]] 274 274 275 275 276 276 ---- ... ... @@ -282,40 +282,21 @@ 282 282 283 283 ---- 284 284 285 -You can click here to delete the device (deletion is irreversible, please proceed with caution). 286 - 287 -[[image:1748227409566-450.png||height="443" width="659"]] 288 - 289 - 290 ----- 291 - 292 292 All data collected by the gateways will also be displayed in the layer which named customer's E-mail simultaneously. 293 293 294 -[[image:174 8482052834-585.png||height="689" width="638"]]277 +[[image:1749376404143-588.png]] 295 295 296 -👇 297 - 298 -[[image:1748482145587-587.png||height="397" width="639"]] 299 - 300 - 301 301 ---- 302 302 303 -=== **3.1.3 TurnOFF to stopmeasuring** ===281 +=== **3.1.3 End measurement** === 304 304 305 - Oncethecurrentlocation'sdetectioniscomplete, pressthebuttonagain to switchto OFFand pausedetection.283 +Don’t forget to unplug LA66 USB LoRaWAN Adapter after finishing the measurement. 306 306 307 -[[image:1748227523105-709.png||height="150" width="649"]] 308 308 309 - 👇 310 - 311 -[[image:1748227534764-184.png||height="147" width="649"]] 312 - 313 - 314 314 ---- 315 315 288 +== **3.2 Indoors_Mapper dashboard** == 316 316 317 -== **3.2 Indoors_signal dashboard** == 318 - 319 319 Indoors_signal supports measuring and marking the signal strength of all locations on the indoor floor plan. 320 320 321 321 ... ... @@ -323,7 +323,7 @@ 323 323 324 324 Drag the map image here and click √ to import.**(Only supports SVG format)** 325 325 326 -[[image:174 8241600796-653.png||height="481" width="652"]]297 +[[image:1749376507835-691.png]] 327 327 328 328 329 329 ---- ... ... @@ -337,25 +337,22 @@ 337 337 338 338 ---- 339 339 340 -2.Move to the measurement point, insert the LA66 USB LoRaWAN Adapter ,and press the button to switch to ON, then you can see the new data renewing.311 +2.Move to the measurement point, insert the LA66 USB LoRaWAN Adapter , then you can see the new data renewing. 341 341 342 -[[image: 1748229559964-501.png||height="401" width="733"]]313 +[[image:ecb9c251e932018692e490e26e50763.jpg||height="364" width="651"]] 343 343 344 344 345 345 ---- 346 346 347 -3.Mark the next place which to be measured than move to the measurement point.Repeat the above steps to measure **(Remeber: Mark point before move.**)318 +3.Mark the next place which to be measured than move to the measurement point.Repeat the above steps to measure.() 348 348 349 -[[image:1748229639368-109.png||height="605" width="820"]] 320 +{{warning}} 321 +**Remeber: Mark point before move.** 322 +{{/warning}} 350 350 324 +(LA66 will continuously upload the signal of the current position to cover the last point. If it is marked while moving, it is easy to pollute the data of the previous point)[[image:1748229639368-109.png||height="605" width="820"]] 351 351 352 ----- 353 353 354 -4.Click button to "Off" to stop measuring. 355 - 356 -[[image:1748229757097-872.png||height="232" width="736"]] 357 - 358 - 359 359 ---- 360 360 361 361 === **3.2.3 Delete point** === ... ... @@ -362,12 +362,18 @@ 362 362 363 363 Click the marking points, then click yes. 364 364 365 -[[image:174 8229833594-993.png||height="320" width="735"]]333 +[[image:1749376586844-796.png]] 366 366 367 367 368 368 ---- 369 369 338 +=== **3.2.4 End measurement** === 370 370 340 +Don’t forget to unplug LA66 USB LoRaWAN Adapter after finishing the measurement. 341 + 342 + 343 +---- 344 + 371 371 == **4. Use of Tablet** == 372 372 373 373 For added convenience, you can use a tablet to access the platform.
- 1748601609894-341.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +139.2 KB - Content
- 1748601692184-985.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +141.9 KB - Content
- 1748601714123-652.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +144.4 KB - Content
- 1748601795657-856.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +685.2 KB - Content
- 1748602283686-496.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +232.9 KB - Content
- 1748602304586-198.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +218.9 KB - Content
- 1748602461523-537.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +51.2 KB - Content
- 1748602571865-850.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +50.8 KB - Content
- 1748602603331-559.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +48.6 KB - Content
- 1748602881431-230.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +30.8 KB - Content
- 1748603053572-488.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +685.3 KB - Content
- 1748603159913-908.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +613.1 KB - Content
- 1749375906728-208.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +217.3 KB - Content
- 1749376046690-863.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +45.6 KB - Content
- 1749376107488-669.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +14.0 KB - Content
- 1749376404143-588.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +723.5 KB - Content
- 1749376507835-691.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +129.3 KB - Content
- 1749376586844-796.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +108.6 KB - Content
- 569a0a131a83c658f2ce70fe349f72f.jpg
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +654.3 KB - Content
- demo.pem
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +0 bytes - Content
- ecb9c251e932018692e490e26e50763.jpg
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.hera - Size
-
... ... @@ -1,0 +1,1 @@ 1 +592.5 KB - Content