Last modified by Hera Guo on 2025/06/10 15:14

From version 3.1
edited by Hera Guo
on 2025/05/23 17:45
Change comment: There is no comment for this version
To version 5.4
edited by Hera Guo
on 2025/05/26 10:59
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -19,7 +19,7 @@
19 19  == **1.2 Features ** ==
20 20  
21 21  * Extensive support
22 -** Only one LA66 and one Dragino account are needed, and the gateway and LNS can be freely matched**High Precision Measurement**
22 +** Only one LA66 and one Dragino account are needed, and the gateway and LNS can be freely matched **High Precision Measurement**
23 23  ** High-accuracy sensors
24 24  ** Reliable data readings
25 25  * **Real-Time measuring**
... ... @@ -28,7 +28,6 @@
28 28  * **User-Friendly Interface**
29 29  ** Intuitive dashboard design
30 30  
31 -
32 32  ----
33 33  
34 34  == **1.3 Specifications ** ==
... ... @@ -36,7 +36,6 @@
36 36  * **Mobile Support: [[Dedicated mobile app for on-the-go monitoring>>https://www.dropbox.com/scl/fo/qdiwkpcxc03qu2r2w0g46/AKqR2FByUdkoWZPZh-diYfQ?rlkey=t1a1kwlvr93c1459mz9jifers&e=1&st=kji4rdg0&dl=0]]**
37 37  * **Device Manual: [[LA66 USB LoRaWAN Adapter User Manual>>https://wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/LA66%20USB%20LoRaWAN%20Adapter%20User%20Manual/]]**
38 38  
39 -
40 40  ----
41 41  
42 42  
... ... @@ -44,7 +44,7 @@
44 44  
45 45  == **2.1 Network Structure** ==
46 46  
47 -[[image:1747967901656-282.png]]
45 +[[image:结构.png]]
48 48  
49 49  The network structure consists of end nodes and gateways, which work together to measuring signal strength. You can replace gateway and Network Server with which you using.(It should be supported LoRaWAN)
50 50  
... ... @@ -113,10 +113,54 @@
113 113  }
114 114  {{/code}}
115 115  
114 +
115 +
116 116  * **Decoding for TTN:**
117 117  
118 -* 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.com>>mailto:support@dragino.com]]
118 +{{code language="none"}}
119 +function add0(m){return m<10?'0'+m:m }
120 +function format(shijianchuo){
121 +//shijianchuo是整数,否则要parseInt转换
122 + var time = new Date(shijianchuo);
123 + var y = time.getFullYear();
124 + var m = time.getMonth()+1;
125 + var d = time.getDate();
126 + var h = time.getHours();
127 + var mm = time.getMinutes();
128 + var s = time.getSeconds();
129 + return y+'-'+add0(m)+'-'+add0(d)+' '+add0(h)+':'+add0(mm)+':'+add0(s);
130 +}
119 119  
132 +function Decoder(bytes) {
133 + var data={};
134 + var doorflg
135 + if (bytes[0]===1){
136 + doorflg = "indoor"
137 + }
138 + else{
139 + doorflg = "outdoor"
140 + }
141 + if (bytes.length==13){
142 + data.doorflg = doorflg
143 + data.latitude=parseFloat(((bytes[1]<<24|bytes[2]<<16|bytes[3]<<8|bytes[4])/1000000).toFixed(6));
144 + data.longitude=parseFloat(((bytes[5]<<24|bytes[6]<<16|bytes[7]<<8|bytes[8])/1000000).toFixed(6));
145 + timestamp1=bytes[9]<<24|bytes[10]<<16|bytes[11]<<8|bytes[12];
146 + data.timestamp=timestamp1;
147 + data.beijintime=format((timestamp1+28800)*1000);
148 + return data;
149 + }
150 + else if(bytes.length==9){
151 + data.doorflg = doorflg
152 + data.Node_type = "LA66"
153 + data.latitude=parseFloat(((bytes[1]<<24|bytes[2]<<16|bytes[3]<<8|bytes[4])/1000000).toFixed(6));
154 + data.longitude=parseFloat(((bytes[5]<<24|bytes[6]<<16|bytes[7]<<8|bytes[8])/1000000).toFixed(6));
155 + return data;
156 + }
157 +}
158 +{{/code}}
159 +
160 +* 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]]
161 +
120 120  ----
121 121  
122 122  
... ... @@ -135,7 +135,6 @@
135 135  )))
136 136  1. Example of ChirpStack[[image:1747972538335-599.png]]
137 137  
138 -
139 139  ----
140 140  
141 141  
... ... @@ -155,27 +155,26 @@
155 155  
156 156  You can click here to modify the gateway layer ID (it must correspond one-to-one with the gateway ID that will receive the data).
157 157  
158 -[[image:1747986037475-165.png||height="263" width="202"]][[image:1747986042208-121.png||height="240" width="698"]]
199 +[[image:1748226933887-176.png||height="291" width="242"]]👉[[image:1748226941899-789.png||height="308" width="896"]]
159 159  
160 160  ----
161 161  
162 162  Click here to delete the gateway layer.
163 163  
164 -[[image:1747987031250-278.png]]
205 +[[image:1748226990199-388.png]]
165 165  
207 +
166 166  ----
167 167  
168 168  Click row of gateway layer will turn to the detail page, this page will be blank before gateway upload data.
169 169  
170 -[[image:1747987048124-685.png]]
212 +[[image:1748227035403-882.png||height="487" width="196"]]👉 [[image:1748227056061-411.png||height="655" width="891"]]
171 171  
172 -[[image:1747986100902-572.png]]
173 -
174 174  ----
175 175  
176 176  Click the top-left corner to return.
177 177  
178 -[[image:1747986126468-649.png]]
218 +[[image:1748227163443-264.png]]
179 179  
180 180  ----
181 181  
... ... @@ -183,10 +183,12 @@
183 183  
184 184  Insert the LA66 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 6 seconds based on the tablet's location. Simply move the tablet to measure signal strength from different places.
185 185  
186 -[[image:1747986749464-319.png]]
226 +[[image:1748227286978-688.png||height="149" width="660"]]
187 187  
188 -[[image:1747986749481-994.png]]
228 + 👇
189 189  
230 +[[image:1748227303533-598.png||height="151" width="661"]]
231 +
190 190  ----
191 191  
192 192  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.
... ... @@ -193,25 +193,25 @@
193 193  
194 194  The measured data will be displayed in translucent dots of different colors, green represents a good signal, and red represents a poor signal.
195 195  
196 -[[image:1747986767106-937.png]]
238 +[[image:1748227348704-578.png||height="360" width="663"]]
197 197  
198 198  ----
199 199  
200 200  You can click here to edit the device remarks.
201 201  
202 -[[image:1747986767111-752.png]]
244 +[[image:1748227380372-654.png||height="509" width="659"]]
203 203  
204 204  ----
205 205  
206 206  You can click here to delete the device (deletion is irreversible, please proceed with caution).
207 207  
208 -[[image:1747986795269-205.png]]
250 +[[image:1748227409566-450.png||height="443" width="659"]]
209 209  
210 210  ----
211 211  
212 212  All data collected by the gateways will also be displayed in All_signal simultaneously.
213 213  
214 -[[image:1747986804422-604.png]]
256 +[[image:1748227432762-994.png||height="478" width="660"]]
215 215  
216 216  ----
217 217  
... ... @@ -219,10 +219,11 @@
219 219  
220 220  Once the current location's detection is complete, press the button again to switch to OFF and pause detection.
221 221  
222 -[[image:1747986837136-535.png]]
264 +[[image:1748227523105-709.png||height="150" width="649"]]
223 223  
224 -[[image:1747986837140-142.png]]
266 + 👇
225 225  
268 +[[image:1748227534764-184.png||height="147" width="649"]]
226 226  
227 227  ----
228 228  
... ... @@ -236,7 +236,6 @@
236 236  
237 237  Drag the map image here and click √ to import.
238 238  
239 -[[image:1747988839599-466.png]]
240 240  
241 241  
242 242  ----
... ... @@ -245,25 +245,23 @@
245 245  
246 246  1.Mark on map where you want to measuring.
247 247  
248 -[[image:1747989357653-920.png]]
249 249  
291 +
292 +
250 250  ----
251 251  
252 252  2.Move to the measurement point, insert the LA66, and press the button to switch to ON, then you can see the new data renewing.
253 253  
254 -[[image:1747989390983-409.png]]
255 255  
256 256  ----
257 257  
258 258  3.Mark the next place which to be measured than move to the measurement point.Repeat the above steps to measure(**Remeber: Mark point firstly! Before move.**)
259 259  
260 -[[image:1747989610262-739.png]]
261 261  
262 262  ----
263 263  
264 264  4.Click button to Off to stop measuring.
265 265  
266 -[[image:1747990097160-601.png]]
267 267  
268 268  
269 269  ----
... ... @@ -272,12 +272,9 @@
272 272  
273 273  Click the marking points, then click yes.
274 274  
275 -[[image:1747990239939-767.png]][[image:1747990232590-510.png]]
276 276  
277 -[[image:1747990416072-770.png]]
278 278  
279 279  
280 -
281 281  ----
282 282  
283 283  
... ... @@ -292,7 +292,3 @@
292 292  |**APP Store**|[[image:https://wiki.thingseye.io/xwiki/bin/download/Main/%E2%80%8B%E2%80%8B%E2%80%8B%E2%80%8B%E2%80%8B%E2%80%8B%E2%80%8BThingsEye%20Food%20Safety%20Solution%20End%20User%20Guide/WebHome/1739501688627-907.png?rev=1.1||alt="1739501688627-907.png"]]|[[https:~~/~~/apps.apple.com/us/app/thingseye-io/id6739418014>>url:https://apps.apple.com/us/app/thingseye-io/id6739418014]]
293 293  
294 294  After that you can use your dashboard as normal.The display is as follows:
295 -
296 -
297 -
298 -
1747967901656-282.png
Size
... ... @@ -1,1 +1,1 @@
1 -683.2 KB
1 +1.2 MB
Content
1748226933887-176.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +27.3 KB
Content
1748226941899-789.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +21.9 KB
Content
1748226990199-388.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +49.5 KB
Content
1748227035403-882.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +55.0 KB
Content
1748227056061-411.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +63.5 KB
Content
1748227163443-264.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +19.5 KB
Content
1748227286978-688.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +212.4 KB
Content
1748227303533-598.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +215.3 KB
Content
1748227348704-578.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +507.0 KB
Content
1748227380372-654.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +364.8 KB
Content
1748227409566-450.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +287.4 KB
Content
1748227432762-994.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +646.0 KB
Content
1748227479220-986.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +280.6 KB
Content
1748227500150-115.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +265.5 KB
Content
1748227523105-709.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +187.7 KB
Content
1748227534764-184.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +211.8 KB
Content
结构.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.hera
Size
... ... @@ -1,0 +1,1 @@
1 +1.2 MB
Content