-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings-meta.json
More file actions
1304 lines (1304 loc) · 47.4 KB
/
settings-meta.json
File metadata and controls
1304 lines (1304 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"settings": {
"accel_g_scale": {
"category": "accel",
"label": "g scale",
"description": "Accel g scale setting.",
"display_name": "g scale"
},
"accel_movement_data_fifo_enabled": {
"category": "accel",
"label": "movement data fifo enabled",
"description": "Accel movement data fifo enabled setting.",
"display_name": "movement data fifo enabled"
},
"accel_odr_hz": {
"category": "accel",
"label": "odr hz",
"description": "Output data rate in Hertz.",
"display_name": "odr hz"
},
"air_quality_enabled": {
"category": "air",
"label": "quality enabled",
"description": "Air quality enabled setting.",
"display_name": "quality enabled"
},
"air_quality_interval": {
"category": "air",
"label": "quality interval",
"description": "Controls how often the air quality function runs.",
"display_name": "quality interval"
},
"app_eui": {
"category": "lorawan",
"label": "app eui",
"description": "The app ID used when joining the network.",
"display_name": "app eui"
},
"app_key": {
"category": "lorawan",
"label": "app key",
"description": "The key used to join the network.",
"display_name": "app key"
},
"ble_adv": {
"category": "ble",
"label": "adv",
"description": "Bluetooth related setting.",
"display_name": "adv"
},
"ble_advertisement_interval": {
"category": "ble",
"label": "advertisement interval",
"description": "BLE advertisement interval in milliseconds.",
"display_name": "advertisement interval"
},
"ble_auto_disconnect": {
"category": "ble",
"label": "auto disconnect",
"description": "Auto disconnect timeout in milliseconds.",
"display_name": "auto disconnect"
},
"ble_scan_aggregated_interval": {
"category": "ble_scan",
"label": "scan aggregated interval",
"description": "Controls how often aggregated BLE scan results are produced.",
"display_name": "scan aggregated interval"
},
"ble_scan_duration": {
"category": "ble_scan",
"label": "scan duration",
"description": "Scan duration in milliseconds.",
"display_name": "scan duration"
},
"ble_scan_filter": {
"category": "ble_scan",
"label": "scan filter",
"description": "Filtering applied to scanned data before storing or sending.",
"display_name": "scan filter",
"options": [
{
"value": 0,
"label": "No filter"
},
{
"value": 1,
"label": "Smart Parks manufacturer ID (0x0A61)"
},
{
"value": 2,
"label": "Configured manufacturer ID (ble_scan_manufacturer_id)"
},
{
"value": 3,
"label": "Smartphones"
}
]
},
"ble_scan_interval": {
"category": "ble_scan",
"label": "scan interval",
"description": "Controls how often a BLE scan runs.",
"display_name": "scan interval"
},
"ble_scan_manufacturer_id": {
"category": "ble_scan",
"label": "scan manufacturer id",
"description": "Manufacturer ID used for filtering; hex value (e.g., 0x0A61).",
"display_name": "scan manufacturer id"
},
"ble_scan_report_zero_connections_found": {
"category": "ble_scan",
"label": "scan report zero connections found",
"description": "Bluetooth related setting.",
"display_name": "scan report zero connections found"
},
"check_error_interval": {
"category": "device",
"label": "error interval",
"description": "Controls how often the device checks for error conditions.",
"display_name": "error interval"
},
"cmdq_enabled": {
"category": "cmdq",
"label": "enabled",
"description": "Cmdq enabled setting.",
"display_name": "enabled"
},
"cmdq_on_no_detection_wait_duration": {
"category": "cmdq",
"label": "on no detection wait duration",
"description": "Seconds to wait after a LONG scan fails before trying again.",
"display_name": "on no detection wait duration"
},
"cmdq_report_zero_messages_to_be_sent": {
"category": "cmdq",
"label": "report zero messages to be sent",
"description": "Cmdq report zero messages to be sent setting.",
"display_name": "report zero messages to be sent"
},
"cmdq_reporting_interval": {
"category": "cmdq",
"label": "reporting interval",
"description": "Seconds between composing/sending CMDQ detections to other queues.",
"display_name": "reporting interval"
},
"cmdq_scan_duration": {
"category": "cmdq",
"label": "scan duration",
"description": "Milliseconds spent actively scanning during a SHORT scan.",
"display_name": "scan duration"
},
"cmdq_search_interval": {
"category": "cmdq",
"label": "search interval",
"description": "Seconds between scans. For IMMEDIATE/LONG scans this is the active scan duration; set near the device advertisement interval.",
"display_name": "search interval"
},
"cmdq_searched_mac_address": {
"category": "cmdq",
"label": "searched mac address",
"description": "Bluetooth MAC address (hex byte array) of the device to search for.",
"display_name": "searched mac address"
},
"cold_fix_retry": {
"category": "gps",
"label": "cold fix retry",
"description": "Cold fix retry setting.",
"display_name": "cold fix retry"
},
"cold_fix_timeout": {
"category": "gps",
"label": "cold fix timeout",
"description": "Cold fix timeout in seconds.",
"display_name": "cold fix timeout"
},
"data_log": {
"category": "logs",
"label": "log",
"description": "Data log setting.",
"display_name": "log"
},
"device_eui": {
"category": "lorawan",
"label": "device eui",
"description": "The unique ID for this device.",
"display_name": "device eui"
},
"device_name": {
"category": "device",
"label": "name",
"description": "Device name setting.",
"display_name": "name"
},
"device_pin": {
"category": "device",
"label": "pin",
"description": "The PIN used to access the device.",
"display_name": "pin"
},
"enable_motion_trig_gps": {
"category": "gps",
"label": "motion-triggered GPS enabled",
"description": "Enables motion-triggered GPS. When enabled, motion is checked using the accelerometer and motion_ths threshold. This feature supports two behaviors: the default skip-fix mode based on ublox_send_interval, and an optional trigger-window mode based on gps_triggered_interval plus gps_motion_triggered_min_num_of_triggers_per_interval.",
"display_name": "motion-triggered GPS enabled"
},
"external_switch_counter_enabled": {
"category": "switch",
"label": "switch counter enabled",
"description": "Toggle between switch activity detection and impulse counter. When enabled, the device counts transitions from inactivity to activity (respecting debounce) within the reporting interval.",
"display_name": "switch counter enabled"
},
"external_switch_detection_enabled": {
"category": "switch",
"label": "switch detection enabled",
"description": "Turns on external switch detection. Must not be enabled at the same time as fence_enabled; firmware will disable external switch functionality if both are enabled.",
"display_name": "switch detection enabled"
},
"external_switch_detection_gpio_pin_power_enabled": {
"category": "switch",
"label": "switch detection gpio pin power enabled",
"description": "External switch detection gpio pin power enabled setting.",
"display_name": "switch detection gpio pin power enabled"
},
"external_switch_detection_reporting_interval": {
"category": "switch",
"label": "switch detection reporting interval",
"description": "Reporting interval for periodic status reports over LoRa. 0 disables periodic reports; activity/inactivity transitions still send immediately.",
"display_name": "switch detection reporting interval"
},
"external_switch_detection_trigger_debounce_ms": {
"category": "switch",
"label": "switch detection trigger debounce ms",
"description": "Debounce time in ms after a state change; additional changes are ignored during this period. After debounce, the input is re-read to confirm. 0 disables debouncing (not recommended for floating or mismatched pulls).",
"display_name": "switch detection trigger debounce ms"
},
"external_switch_detection_trigger_type": {
"category": "switch",
"label": "switch detection trigger type",
"description": "Controls how the device interprets AN (GPIO input) activity.",
"display_name": "switch detection trigger type",
"options": [
{
"value": 0,
"label": "Logical 0 = activity"
},
{
"value": 1,
"label": "Logical 1 = activity (default)"
}
]
},
"external_switch_input_pull": {
"category": "switch",
"label": "switch input pull",
"description": "Set the pull of the AN (GPIO input) line. If the external switch already provides a pull, setting this incorrectly can increase power consumption or cause undefined behavior.",
"display_name": "switch input pull",
"options": [
{
"value": 0,
"label": "No pull"
},
{
"value": 1,
"label": "Pull up"
},
{
"value": 2,
"label": "Pull down"
}
]
},
"external_switch_minimal_report_duration_ms": {
"category": "switch",
"label": "switch minimal report duration ms",
"description": "Minimum activity duration required before sending a report to avoid flooding the LoRa queue with short detections.",
"display_name": "switch minimal report duration ms"
},
"external_switch_send_inactivity_report": {
"category": "switch",
"label": "switch send inactivity report",
"description": "When enabled, send an inactivity report when external_switch_detection_reporting_interval expires.",
"display_name": "switch send inactivity report"
},
"fence_enabled": {
"category": "fence",
"label": "enabled",
"description": "Enable/disable fence functionality (requires supported hardware).",
"display_name": "enabled"
},
"fence_interval": {
"category": "fence",
"label": "interval",
"description": "Seconds between fence measurements. 0 disables measurements.",
"display_name": "interval"
},
"fence_led_blink": {
"category": "fence",
"label": "led blink",
"description": "Fence led blink setting.",
"display_name": "led blink"
},
"fence_mv_scaling_factor": {
"category": "fence",
"label": "mv scaling factor",
"description": "Scaling factor applied to measured mV. Default 10000 (1000 mV -> 10 kV).",
"display_name": "mv scaling factor"
},
"fence_sampling_length": {
"category": "fence",
"label": "sampling length",
"description": "Measurement length in seconds (min 1, max 60).",
"display_name": "sampling length"
},
"flash_status_interval": {
"category": "logs",
"label": "status interval",
"description": "Controls how often flash status updates are generated.",
"display_name": "status interval"
},
"flash_store_flag": {
"category": "logs",
"label": "store flag",
"description": "Advanced flags for this feature.",
"display_name": "store flag"
},
"gnss_assisted_scan": {
"category": "lr_gps",
"label": "assisted scan",
"description": "Gnss assisted scan setting.",
"display_name": "assisted scan"
},
"gnss_constellation_to_use": {
"category": "lr_gps",
"label": "constellation to use",
"description": "Gnss constellation to use setting.",
"display_name": "constellation to use"
},
"gps_backoff_factor": {
"category": "gps",
"label": "backoff factor",
"description": "GPS-related setting.",
"display_name": "backoff factor"
},
"gps_init_lat": {
"category": "gps",
"label": "init lat",
"description": "Initial latitude in decimal degrees. Raw value is degrees * 1e7 (int32).",
"display_name": "init lat"
},
"gps_init_lon": {
"category": "gps",
"label": "init lon",
"description": "Initial longitude in decimal degrees. Raw value is degrees * 1e7 (int32).",
"display_name": "init lon"
},
"gps_motion_triggered_min_num_of_triggers_per_interval": {
"category": "gps",
"label": "motion triggers needed per window",
"description": "Used by motion-triggered GPS window mode. A fresh GPS fix is performed when this many motion events are detected within gps_triggered_interval seconds. Default is 5. Set this to 0, or set gps_triggered_interval to 0, to disable window mode and fall back to the default skip-fix behavior. Motion events are still counted during the fixed 30-second failsafe between GPS fixes, but no new fix is started during that failsafe.",
"display_name": "motion triggers needed per window"
},
"gps_open_sky_detection_avg_rssi_threshold_dbm": {
"category": "gps_open_sky_detection",
"label": "open sky detection avg rssi threshold dbm",
"description": "Average RSSI threshold (dBm). Must be exceeded along with the max RSSI threshold to trigger a GPS fix.",
"display_name": "open sky detection avg rssi threshold dbm"
},
"gps_open_sky_detection_bitmask": {
"category": "gps_open_sky_detection",
"label": "open sky detection bitmask",
"description": "Bitmask for open sky scan bands. Bit 7 enables the feature; bits 6–0 select bands 100–200, 400–500, 800–1000, 1200–1400, 1500–1600, 1800–2100, 2400–2500 MHz.",
"display_name": "open sky detection bitmask"
},
"gps_open_sky_detection_max_rssi_threshold_dbm": {
"category": "gps_open_sky_detection",
"label": "open sky detection max rssi threshold dbm",
"description": "Max RSSI threshold (dBm). Must be exceeded along with the average RSSI threshold to trigger a GPS fix.",
"display_name": "open sky detection max rssi threshold dbm"
},
"gps_resend_interval": {
"category": "gps",
"label": "resend interval",
"description": "Controls how often the device sends the last known GNSS position.",
"display_name": "resend interval"
},
"gps_skipped_triggered_interval": {
"category": "gps",
"label": "max skipped fix intervals",
"description": "In default motion-triggered GPS mode, this sets how many consecutive ublox_send_interval periods may be skipped when no motion is detected before the device performs a fresh GPS fix anyway. Set to 0 to perform a fix on every ublox_send_interval.",
"display_name": "max skipped fix intervals"
},
"gps_triggered_interval": {
"category": "gps",
"label": "motion trigger window",
"description": "Used by motion-triggered GPS window mode. Each detected motion event temporarily increases an internal trigger counter for this many seconds. When the counter reaches gps_motion_triggered_min_num_of_triggers_per_interval, the device performs a fresh GPS fix independently of ublox_send_interval. Default is 60 seconds. Set this to 0, or set gps_motion_triggered_min_num_of_triggers_per_interval to 0, to disable window mode and use the default skip-fix behavior.",
"display_name": "motion trigger window"
},
"horizontal_accuracy": {
"category": "gps",
"label": "horizontal accuracy",
"description": "Horizontal accuracy in meters.",
"display_name": "horizontal accuracy"
},
"hot_fix_retry": {
"category": "gps",
"label": "hot fix retry",
"description": "Hot fix retry setting.",
"display_name": "hot fix retry"
},
"hot_fix_timeout": {
"category": "gps",
"label": "hot fix timeout",
"description": "Hot fix timeout in seconds.",
"display_name": "hot fix timeout"
},
"init_time": {
"category": "device",
"label": "time",
"description": "Init time setting.",
"display_name": "time"
},
"led_enabled": {
"category": "device",
"label": "enabled",
"description": "Led enabled setting.",
"display_name": "enabled"
},
"lp0_app_key": {
"category": "lp0",
"label": "app key",
"description": "Low-power mode setting.",
"display_name": "app key"
},
"lp0_communication_params": {
"category": "lp0",
"label": "communication params",
"description": "Low-power mode setting.",
"display_name": "communication params"
},
"lp0_dev_addr": {
"category": "lp0",
"label": "dev addr",
"description": "Low-power mode setting.",
"display_name": "dev addr"
},
"lp0_network_key": {
"category": "lp0",
"label": "network key",
"description": "Low-power mode setting.",
"display_name": "network key"
},
"lp0_node_params": {
"category": "lp0",
"label": "node params",
"description": "Low-power mode setting.",
"display_name": "node params"
},
"lp0_rx_frequency_hz": {
"category": "lp0",
"label": "rx frequency hz",
"description": "Low-power mode setting.",
"display_name": "rx frequency hz"
},
"lp0_send_flag": {
"category": "lp0",
"label": "send flag",
"description": "Advanced flags for this feature.",
"display_name": "send flag"
},
"lp0_tx_frequency_hz": {
"category": "lp0",
"label": "tx frequency hz",
"description": "Low-power mode setting.",
"display_name": "tx frequency hz"
},
"lr_adr": {
"category": "lorawan",
"label": "adr",
"description": "LoRaWAN-related setting.",
"display_name": "adr"
},
"lr_adr_profile": {
"category": "lorawan",
"label": "adr profile",
"description": "LoRaWAN-related setting.",
"display_name": "adr profile"
},
"lr_confirm_flag": {
"category": "lorawan",
"label": "confirm flag",
"description": "Advanced flags for this feature.",
"display_name": "confirm flag"
},
"lr_gps_interval": {
"category": "lr_gps",
"label": "gps interval",
"description": "Controls how often the LR GPS function runs.",
"display_name": "gps interval"
},
"lr_join_flag": {
"category": "lorawan",
"label": "join flag",
"description": "Advanced flags for this feature.",
"display_name": "join flag"
},
"lr_max_confirm_fail": {
"category": "lorawan",
"label": "max confirm fail",
"description": "LoRaWAN-related setting.",
"display_name": "max confirm fail"
},
"lr_messaging_retry_count": {
"category": "lr_messaging",
"label": "messaging retry count",
"description": "LoRaWAN-related setting.",
"display_name": "messaging retry count"
},
"lr_messaging_retry_interval": {
"category": "lr_messaging",
"label": "messaging retry interval",
"description": "Controls how long the device waits between LR messaging retry attempts.",
"display_name": "messaging retry interval"
},
"lr_region": {
"category": "lorawan",
"label": "region",
"description": "LoRaWAN-related setting.",
"display_name": "region"
},
"lr_sat_data": {
"category": "lr_gps",
"label": "sat data",
"description": "LoRaWAN-related setting.",
"display_name": "sat data"
},
"lr_send_flag": {
"category": "lorawan",
"label": "send flag",
"description": "Advanced flags for this feature.",
"display_name": "send flag"
},
"memfault_send_interval": {
"category": "memfault",
"label": "send interval",
"description": "Controls how often Memfault data is sent.",
"display_name": "send interval"
},
"motion_ths": {
"category": "gps",
"label": "motion threshold",
"description": "Accelerometer sensitivity threshold used by motion-triggered GPS to detect movement. Default is 6. Refer to the LIS2DW12 datasheet for the detailed threshold behavior.",
"display_name": "motion threshold"
},
"outdoor_detection_enabled": {
"category": "outdoor",
"label": "detection enabled",
"description": "Enable outdoor detection and disable the standard GPS fix interval. Used to trigger GPS fixes only when the device is likely outside.",
"display_name": "detection enabled"
},
"outdoor_detection_parameters": {
"category": "outdoor",
"label": "detection parameters",
"description": "Weights for outdoor probability: bias (2B), temperature (2B), accelerometer (2B), hour (2B), time-zone offset seconds (4B). Little-endian signed ints, multiply values by 1000 before encoding. Default TZ offset is GMT+2.",
"display_name": "detection parameters"
},
"outdoor_detection_tau": {
"category": "outdoor",
"label": "detection tau",
"description": "Probability threshold required to trigger a GPS fix.",
"display_name": "detection tau"
},
"rejoin_interval": {
"category": "lorawan",
"label": "rejoin interval",
"description": "How often the device tries to rejoin the network.",
"display_name": "rejoin interval"
},
"rf_open_sky_detection_duration": {
"category": "rf_open_sky_detection",
"label": "duration",
"description": "How long this stays active.",
"display_name": "duration"
},
"rf_open_sky_detection_enabled": {
"category": "rf_open_sky_detection",
"label": "enabled",
"description": "Radio scan related setting.",
"display_name": "enabled"
},
"rf_open_sky_detection_interval1": {
"category": "rf_open_sky_detection",
"label": "interval1",
"description": "Primary RF open sky detection interval.",
"display_name": "interval1"
},
"rf_open_sky_detection_interval1_start": {
"category": "rf_open_sky_detection",
"label": "interval1 start",
"description": "Radio scan related setting.",
"display_name": "interval1 start"
},
"rf_open_sky_detection_interval2": {
"category": "rf_open_sky_detection",
"label": "interval2",
"description": "Secondary RF open sky detection interval.",
"display_name": "interval2"
},
"rf_open_sky_detection_interval2_start": {
"category": "rf_open_sky_detection",
"label": "interval2 start",
"description": "Radio scan related setting.",
"display_name": "interval2 start"
},
"rf_open_sky_detection_multiple_intervals": {
"category": "rf_open_sky_detection",
"label": "multiple intervals",
"description": "Radio scan related setting.",
"display_name": "multiple intervals"
},
"rf_scan_config": {
"category": "rf_scan",
"label": "config",
"description": "Radio scan related setting.",
"display_name": "config"
},
"rf_scan_duration": {
"category": "rf_scan",
"label": "duration",
"description": "How long this stays active.",
"display_name": "duration"
},
"rf_scan_enabled": {
"category": "rf_scan",
"label": "enabled",
"description": "Radio scan related setting.",
"display_name": "enabled"
},
"rf_scan_interval": {
"category": "rf_scan",
"label": "interval",
"description": "Controls how often an RF scan runs.",
"display_name": "interval"
},
"rf_scan_interval1": {
"category": "rf_scan",
"label": "interval1",
"description": "Primary RF scan interval.",
"display_name": "interval1"
},
"rf_scan_interval1_start": {
"category": "rf_scan",
"label": "interval1 start",
"description": "Radio scan related setting.",
"display_name": "interval1 start"
},
"rf_scan_interval2": {
"category": "rf_scan",
"label": "interval2",
"description": "Secondary RF scan interval.",
"display_name": "interval2"
},
"rf_scan_interval2_start": {
"category": "rf_scan",
"label": "interval2 start",
"description": "Radio scan related setting.",
"display_name": "interval2 start"
},
"rf_scan_multiple_intervals": {
"category": "rf_scan",
"label": "multiple intervals",
"description": "Radio scan related setting.",
"display_name": "multiple intervals"
},
"s_band_app_key": {
"category": "s_band",
"label": "app key",
"description": "S-band related setting.",
"display_name": "app key"
},
"s_band_dev_adr": {
"category": "s_band",
"label": "dev adr",
"description": "S-band related setting.",
"display_name": "dev adr"
},
"s_band_network_key": {
"category": "s_band",
"label": "network key",
"description": "S-band related setting.",
"display_name": "network key"
},
"s_band_rf_frequency_hz": {
"category": "s_band",
"label": "rf frequency hz",
"description": "S-band related setting.",
"display_name": "rf frequency hz"
},
"s_band_send_interval": {
"category": "s_band",
"label": "send interval",
"description": "Controls how often an S-Band satellite message is sent.",
"display_name": "send interval"
},
"s_band_send_mode": {
"category": "s_band",
"label": "send mode",
"description": "S-band related setting.",
"display_name": "send mode"
},
"sat_send_flag": {
"category": "satellite",
"label": "sat send flag",
"description": "Advanced flags for this feature.",
"display_name": "sat send flag"
},
"satellite_enabled": {
"category": "satellite",
"label": "enabled",
"description": "Satellite enabled setting.",
"display_name": "enabled"
},
"satellite_interval1_start": {
"category": "satellite",
"label": "interval1 start",
"description": "UTC hour (0-23) when the primary Iridium satellite send interval starts. When satellite_multiple_intervals is enabled, satellite_send_interval is used from this hour until satellite_send_interval2_start.",
"display_name": "interval1 start"
},
"satellite_max_messages_per_interval": {
"category": "satellite",
"label": "max messages per interval",
"description": "Maximum number of Iridium satellite messages allowed within each send interval.",
"display_name": "max messages per interval"
},
"satellite_min_signal_strength": {
"category": "satellite",
"label": "min signal strength",
"description": "Satellite min signal strength setting.",
"display_name": "min signal strength"
},
"satellite_multiple_intervals": {
"category": "satellite",
"label": "multiple intervals",
"description": "Enables two UTC-based Iridium satellite send schedules. When disabled, only satellite_send_interval is used. When enabled, satellite_send_interval applies from satellite_interval1_start until satellite_send_interval2_start, and satellite_send_interval2 applies outside that window.",
"display_name": "multiple intervals"
},
"satellite_retry": {
"category": "satellite",
"label": "retry",
"description": "Satellite retry setting.",
"display_name": "retry"
},
"satellite_send_interval": {
"category": "satellite",
"label": "send interval",
"description": "Primary Iridium satellite send interval. When satellite_multiple_intervals is disabled, this is the only interval used. When enabled, this interval applies from satellite_interval1_start until satellite_send_interval2_start (UTC).",
"display_name": "send interval"
},
"satellite_send_interval2": {
"category": "satellite",
"label": "send interval2",
"description": "Secondary Iridium satellite send interval. Only used when satellite_multiple_intervals is enabled. This interval applies from satellite_send_interval2_start until satellite_interval1_start on the next day (UTC).",
"display_name": "send interval2"
},
"satellite_send_interval2_start": {
"category": "satellite",
"label": "send interval2 start",
"description": "UTC hour (0-23) when the secondary Iridium satellite send interval starts. When satellite_multiple_intervals is enabled, satellite_send_interval2 is used from this hour until satellite_interval1_start on the next day.",
"display_name": "send interval2 start"
},
"status_send_interval": {
"category": "status",
"label": "send interval",
"description": "Controls how often the device sends a status update.",
"display_name": "send interval"
},
"tracker_type": {
"category": "device",
"label": "type",
"description": "Tracker model type.",
"display_name": "type",
"options": [
{
"value": 0,
"label": "default_tracker"
},
{
"value": 1,
"label": "rhinoedge_tracker"
},
{
"value": 2,
"label": "elephantedge_tracker"
},
{
"value": 3,
"label": "wisentedge_tracker"
},
{
"value": 4,
"label": "cattracker_tracker"
},
{
"value": 5,
"label": "rangeredge_tracker"
},
{
"value": 6,
"label": "rhinopuck_tracker"
}
]
},
"ublox_active_tracking": {
"category": "gps",
"label": "active tracking",
"description": "GNSS (u-blox) related setting.",
"display_name": "active tracking"
},
"ublox_cold_fix_hour_interval": {
"category": "gps",
"label": "cold fix hour interval",
"description": "Controls how often a cold u-blox fix attempt is allowed, in hours.",
"display_name": "cold fix hour interval"
},
"ublox_interval1_start": {
"category": "gps",
"label": "interval1 start",
"description": "UTC hour (0-23) when the primary u-blox GNSS fix interval starts. When ublox_multiple_intervals is enabled, ublox_send_interval is used from this hour until ublox_interval2_start.",
"display_name": "interval1 start"
},
"ublox_interval2_start": {
"category": "gps",
"label": "interval2 start",
"description": "UTC hour (0-23) when the secondary u-blox GNSS fix interval starts. When ublox_multiple_intervals is enabled, ublox_send_interval_2 is used from this hour until ublox_interval1_start on the next day.",
"display_name": "interval2 start"
},
"ublox_leave_on": {
"category": "gps",
"label": "leave on",
"description": "GNSS (u-blox) related setting.",
"display_name": "leave on"
},
"ublox_min_fix_time": {
"category": "gps",
"label": "min fix time",
"description": "GNSS (u-blox) related setting.",
"display_name": "min fix time"
},
"ublox_min_satellites": {
"category": "gps",
"label": "min satellites",
"description": "GNSS (u-blox) related setting.",
"display_name": "min satellites"
},
"ublox_multiple_intervals": {
"category": "gps",
"label": "multiple intervals",
"description": "Enables two UTC-based u-blox GNSS fix schedules. When disabled, only ublox_send_interval is used. When enabled, ublox_send_interval applies from ublox_interval1_start until ublox_interval2_start, and ublox_send_interval_2 applies outside that window.",
"display_name": "multiple intervals"
},
"ublox_send_interval": {
"category": "gps",
"label": "send interval",
"description": "Primary u-blox GNSS fix interval. When ublox_multiple_intervals is disabled, this is the only interval used. When enabled, this interval applies from ublox_interval1_start until ublox_interval2_start (UTC).",
"display_name": "send interval"
},
"ublox_send_interval_2": {
"category": "gps",
"label": "send interval 2",
"description": "Secondary u-blox GNSS fix interval. Only used when ublox_multiple_intervals is enabled. This interval applies from ublox_interval2_start until ublox_interval1_start on the next day (UTC).",
"display_name": "send interval 2"
},
"ublox_switch_interval": {
"category": "gps",
"label": "switch interval",
"description": "Controls how often the device switches its u-blox operating mode or schedule.",
"display_name": "switch interval"
},
"vhf_enabled": {
"category": "vhf",
"label": "enabled",
"description": "Vhf enabled setting.",
"display_name": "enabled"
},
"vhf_external_path": {
"category": "vhf",
"label": "external path",
"description": "Vhf external path setting.",
"display_name": "external path"
},
"vhf_interval1": {
"category": "vhf",
"label": "interval1",
"description": "Primary VHF transmit interval. When vhf_multiple_intervals is disabled, this is the only interval used. When enabled, this interval applies from vhf_interval1_start until vhf_interval2_start (UTC).",
"display_name": "interval1"
},
"vhf_interval1_start": {
"category": "vhf",
"label": "interval1 start",
"description": "UTC hour (0-23) when the primary VHF interval starts. When vhf_multiple_intervals is enabled, vhf_interval1 is used from this hour until vhf_interval2_start.",
"display_name": "interval1 start"
},
"vhf_interval2": {
"category": "vhf",
"label": "interval2",
"description": "Secondary VHF transmit interval. Only used when vhf_multiple_intervals is enabled. This interval applies from vhf_interval2_start until vhf_interval1_start on the next day (UTC).",
"display_name": "interval2"
},
"vhf_interval2_start": {
"category": "vhf",
"label": "interval2 start",
"description": "UTC hour (0-23) when the secondary VHF interval starts. When vhf_multiple_intervals is enabled, vhf_interval2 is used from this hour until vhf_interval1_start on the next day.",
"display_name": "interval2 start"
},
"vhf_multiple_intervals": {
"category": "vhf",
"label": "multiple intervals",
"description": "Enables two UTC-based VHF transmit schedules. When disabled, only vhf_interval1 is used. When enabled, vhf_interval1 applies from vhf_interval1_start until vhf_interval2_start, and vhf_interval2 applies outside that window.",
"display_name": "multiple intervals"
},
"vhf_num_of_packets_per_burst": {
"category": "vhf",
"label": "num of packets per burst",
"description": "Vhf num of packets per burst setting.",
"display_name": "num of packets per burst"
},
"vhf_single_pulse_duration_ms": {
"category": "vhf",
"label": "single pulse duration ms",
"description": "Vhf single pulse duration ms setting.",
"display_name": "single pulse duration ms"
},
"vhf_time_between_packets_ms": {
"category": "vhf",
"label": "time between packets ms",
"description": "Vhf time between packets ms setting.",
"display_name": "time between packets ms"
},
"vhf_tx_frequency_khz": {
"category": "vhf",
"label": "tx frequency khz",
"description": "Vhf tx frequency khz setting.",
"display_name": "tx frequency khz"
},
"wifi_scan_aggregated_interval": {
"category": "wifi_scan",
"label": "scan aggregated interval",
"description": "Controls how often aggregated WiFi scan results are produced.",
"display_name": "scan aggregated interval"
},
"wifi_scan_interval": {
"category": "wifi_scan",
"label": "scan interval",
"description": "Controls how often a WiFi scan runs.",
"display_name": "scan interval"
},
"wifi_scan_report_zero_connections_found": {
"category": "wifi_scan",
"label": "scan report zero connections found",
"description": "Wifi scan report zero connections found setting.",
"display_name": "scan report zero connections found"
}
},
"commands": {
"cmd_aggregated_bt_scan": {
"category": "commands",
"label": "aggregated bt scan",
"description": "Internal: initiate periodic aggregated BT scan between threads.",
"display_name": "aggregated bt scan"
},
"cmd_almanac_update": {
"category": "commands",
"label": "almanac update",
"description": "Update almanac in chunks. Send cmd on port 32 with cmd id, length, and 20-byte chunks; header id 128 triggers update if newer.",
"display_name": "almanac update"
},
"cmd_bt_disconnect": {
"category": "commands",
"label": "bt disconnect",
"description": "Disconnect a Bluetooth device if connected.",
"display_name": "bt disconnect"
},
"cmd_check_pin": {
"category": "commands",
"label": "check pin",
"description": "Validate PIN code before allowing BT connection. Format: pin_len pin[pin_len].",
"display_name": "check pin"
},
"cmd_clear_nvs": {
"category": "commands",
"label": "clear nvs",
"description": "Clear internal storage; resets values to defaults and deletes LoRaWAN keys.",
"display_name": "clear nvs"
},
"cmd_decouple_collar": {
"category": "commands",
"label": "decouple collar",
"description": "CollarEdge: power the decoupling connector for 5 seconds.",
"display_name": "decouple collar"