Last modified by Xiaoling on 2023/12/27 09:15

From version 192.2
edited by Xiaoling
on 2023/03/02 08:53
Change comment: There is no comment for this version
To version 202.2
edited by Xiaoling
on 2023/03/09 13:54
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -95,6 +95,7 @@
95 95  
96 96  
97 97  
98 +
98 98  == 1.3  Features ==
99 99  
100 100  
... ... @@ -115,6 +115,7 @@
115 115  
116 116  
117 117  
119 +
118 118  == 1.4  Applications ==
119 119  
120 120  
... ... @@ -123,6 +123,7 @@
123 123  
124 124  
125 125  
128 +
126 126  = 2.  Use TrackerD =
127 127  
128 128  == 2.1 How it works? ==
... ... @@ -290,6 +290,7 @@
290 290  
291 291  
292 292  
296 +
293 293  === 2.4.2 Uplink FPORT~=2, Realtime GNSS Positioning + Temperature & Humidity ===
294 294  
295 295  
... ... @@ -331,7 +331,6 @@
331 331  * Latitude: 02863D68  ⇒  //if (0x//02863D68//& 0x80000000 = 0 )~://  //value = 02863D68 /1000000 = 42.351976//
332 332  * Longitude: FAC29BAF  ⇒ //if (0x//FAC29BAF// & 0x80000000 = 1 )~://  //value = (0x//FAC29BAF// – 0x 100000000)/1000000 =//-87.9094//57//
333 333  
334 -
335 335  (% style="color:red" %)**Important note:**
336 336  
337 337  1.  When power is low (<2.84v), GPS won't be able to get location info and GPS feature will be disabled and the location field will be filled with 0x0FFFFFFF, 0x0FFFFFFF.
... ... @@ -489,9 +489,29 @@
489 489  (% style="display:none" %) (%%)
490 490  
491 491  
492 -=== 2.4.6  Uplink FPORT~=8, WiFi Positioning with Strongest WiFi SSID(Since firmware 1.4.1) ===
495 +=== 2.4.6  Uplink FPORT~=7, Alarm information status(Since firmware 1.4.4) ===
493 493  
494 494  
498 +The upward link device is configured to FPORT = 7. Once Trackerd alarm, it will upload the news to the server.
499 +
500 +(% border="1.5" cellspacing="3" style="background-color:#ffffcc; color:green; width:450px" %)
501 +|**Size(bytes)**|2|1
502 +|**Value**|[[Alarm & BAT>>path:#HAlarm26BAT:]]|Mod+lon
503 +
504 + [[image:image-20230302145315-1.png]]
505 +
506 +alarm=(bytes[0] & 0x40)  ~/~/ Alarm status
507 +
508 +batV=~(~(~(bytes[0] & 0x3f) <<8) | bytes[1])/1000;  ~/~/ Battery,units:V
509 +
510 +mod = bytes[2] & 0xC0;
511 +
512 +Lon=(bytes[2] & 0x20)
513 +
514 +
515 +=== 2.4.7  Uplink FPORT~=8, WiFi Positioning with Strongest WiFi SSID(Since firmware 1.4.1) ===
516 +
517 +
495 495  TrackerD supports WiFi scans for indoor positioning. User can set [[**SMOD**>>||anchor="H3.2.7SetPositioningMode"]] to **WiFi** so TrackerD will scan WiFi and find the strongest WiFi info and uplink.
496 496  
497 497  
... ... @@ -514,7 +514,7 @@
514 514  (% style="display:none" %) (%%)
515 515  
516 516  
517 -=== 2.4.7  Add Payload format in TTN V3 ===
540 +=== 2.4.8  Add Payload format in TTN V3 ===
518 518  
519 519  
520 520  In TTN V3, user can add a custom payload so it shows friendly.
... ... @@ -557,9 +557,50 @@
557 557  [[image:1664502715371-321.png||_mstalt="292162"]]
558 558  
559 559  
560 -== 2.7  Datalog Feature ==
583 +== 2.7  Integrate with Node-red ==
561 561  
562 562  
586 +~1. Install node-red, please refer to the installation method in the link:
587 +
588 + [[http:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/Node-RED/#H1.A0Installation>>http://wiki.dragino.com/xwiki/bin/view/Main/Node-RED/#H1.A0Installation]]
589 +
590 +
591 +2. Import the created flow template, please refer to the import method in the link:
592 +
593 + [[http:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/Node-RED/#H3.A0Importsampleflow>>http://wiki.dragino.com/xwiki/bin/view/Main/Node-RED/#H3.A0Importsampleflow]]
594 + The address of the flow template:
595 +
596 + [[dragino-end-node-decoder/TrackerD.json at main · dragino/dragino-end-node-decoder · GitHub>>url:https://github.com/dragino/dragino-end-node-decoder/blob/main/Node-RED/TrackerD.json]]
597 +
598 +(% style="color:red" %)**Note: If you are using NODE-RED for the first time, please search and install the two plug-ins in the figure below in node-red to fully use the flow template.**
599 +
600 +[[image:image-20230307135914-1.png||height="527" width="1045"]]
601 +
602 +
603 +[[image:image-20230307135932-2.png||height="527" width="1044"]]
604 +
605 +
606 +3. Display the map
607 + Enter the link to the map:
608 +
609 + Change its suffix to ditu:http:~/~/119.91.62.30:1880/**ditu/**
610 +
611 +**~ **[[image:image-20230308115430-1.png||height="548" width="1041"]]
612 +
613 +
614 + Hit all input in input stream
615 +
616 + [[image:image-20230308115616-2.png||height="563" width="1070"]]
617 +
618 +
619 + View map again
620 +
621 +[[image:image-20230308115701-3.png||height="571" width="1085"]]
622 +
623 +
624 +== 2.8  Datalog Feature ==
625 +
626 +
563 563  total 273 entries,by default,
564 564  
565 565  User can set [[PNACKMD=1>>||anchor="H3.2.11A0AutoSendNone-ACKmessages"]], to enable Datalog feature.
... ... @@ -572,7 +572,7 @@
572 572  [[image:image-20221009234629-1.png||_mstalt="431145" height="390" width="577"]]
573 573  
574 574  
575 -== 2.8 Alarm Mode ==
639 +== 2. Alarm Mode ==
576 576  
577 577  
578 578  (((
... ... @@ -597,7 +597,7 @@
597 597  )))
598 598  
599 599  
600 -== 2.9 Transport Mode ==
664 +== 2.10  Transport Mode ==
601 601  
602 602  
603 603  In Transport Mode, TrackerD will check if there is motion. If there is no motion, device will send uplinks every 20 minutes. If there is motion, device will send uplink every 5 minutes.
... ... @@ -609,7 +609,7 @@
609 609  (% style="display:none" %) (%%)
610 610  
611 611  
612 -== 2.10 LED Status ==
676 +== 2.1 LED Status ==
613 613  
614 614  
615 615  (% border="1.5" style="background-color:#ffffcc; width:500px" %)
... ... @@ -629,7 +629,7 @@
629 629  (% style="display:none" %) (%%)
630 630  
631 631  
632 -== 2.11 Button Function ==
696 +== 2.1 Button Function ==
633 633  
634 634  
635 635  (% style="color:blue" %)**RESET button:**
... ... @@ -654,7 +654,7 @@
654 654  (% style="display:none" %) (%%)
655 655  
656 656  
657 -== 2.12 USB Port Function ==
721 +== 2.1 USB Port Function ==
658 658  
659 659  
660 660  The USB interface of TrackerD has below functions:
image-20230302145315-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +35.1 KB
Content
image-20230307135914-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +131.8 KB
Content
image-20230307135932-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +109.7 KB
Content
image-20230308115430-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +2.4 MB
Content
image-20230308115616-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +152.7 KB
Content
image-20230308115701-3.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +2.4 MB
Content