-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfk_data_pb2.py
2452 lines (2339 loc) · 99.2 KB
/
fk_data_pb2.py
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
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: fk-data.proto
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
DESCRIPTOR = _descriptor.FileDescriptor(
name='fk-data.proto',
package='fk_data',
syntax='proto3',
serialized_options=b'\n\037org.conservify.fieldkit.data.pbZ+gitlab.com/fieldkit/libraries/data-protocol',
serialized_pb=b'\n\rfk-data.proto\x12\x07\x66k_data\"\xaa\x01\n\x0e\x44\x65viceLocation\x12\x0f\n\x07\x65nabled\x18\x07 \x01(\r\x12\x0b\n\x03\x66ix\x18\x01 \x01(\r\x12\x0c\n\x04time\x18\x02 \x01(\x03\x12\x11\n\tlongitude\x18\x03 \x01(\x02\x12\x10\n\x08latitude\x18\x04 \x01(\x02\x12\x10\n\x08\x61ltitude\x18\x05 \x01(\x02\x12\x13\n\x0b\x63oordinates\x18\x06 \x03(\x02\x12\x12\n\nsatellites\x18\x08 \x01(\r\x12\x0c\n\x04hdop\x18\t \x01(\r\"M\n\rSensorReading\x12\x0f\n\x07reading\x18\x01 \x01(\x04\x12\x0c\n\x04time\x18\x02 \x01(\x03\x12\x0e\n\x06sensor\x18\x03 \x01(\r\x12\r\n\x05value\x18\x04 \x01(\x02\"t\n\rLoggedReading\x12\x0f\n\x07version\x18\x01 \x01(\r\x12)\n\x08location\x18\x02 \x01(\x0b\x32\x17.fk_data.DeviceLocation\x12\'\n\x07reading\x18\x03 \x01(\x0b\x32\x16.fk_data.SensorReading\"\xac\x01\n\x0eSensorAndValue\x12\x0e\n\x06sensor\x18\x01 \x01(\r\x12\x18\n\x0e\x63\x61libratedNull\x18\x04 \x01(\x08H\x00\x12\x19\n\x0f\x63\x61libratedValue\x18\x02 \x01(\x02H\x00\x12\x1a\n\x10uncalibratedNull\x18\x05 \x01(\x08H\x01\x12\x1b\n\x11uncalibratedValue\x18\x03 \x01(\x02H\x01\x42\x0c\n\ncalibratedB\x0e\n\x0cuncalibrated\"C\n\x0cModuleHeader\x12\x14\n\x0cmanufacturer\x18\x01 \x01(\r\x12\x0c\n\x04kind\x18\x02 \x01(\r\x12\x0f\n\x07version\x18\x03 \x01(\r\"\xe1\x01\n\nModuleInfo\x12\x10\n\x08position\x18\x01 \x01(\r\x12\x0f\n\x07\x61\x64\x64ress\x18\x02 \x01(\r\x12\x0c\n\x04name\x18\x03 \x01(\t\x12%\n\x06header\x18\x04 \x01(\x0b\x32\x15.fk_data.ModuleHeader\x12#\n\x08\x66irmware\x18\x05 \x01(\x0b\x32\x11.fk_data.Firmware\x12$\n\x07sensors\x18\x06 \x03(\x0b\x32\x13.fk_data.SensorInfo\x12\n\n\x02id\x18\x07 \x01(\x0c\x12\r\n\x05\x66lags\x18\x08 \x01(\r\x12\x15\n\rconfiguration\x18\t \x01(\x0c\"s\n\nSensorInfo\x12\x0e\n\x06number\x18\x01 \x01(\r\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\runitOfMeasure\x18\x03 \x01(\t\x12!\n\x19uncalibratedUnitOfMeasure\x18\x05 \x01(\t\x12\r\n\x05\x66lags\x18\x04 \x01(\r\"[\n\x08\x46irmware\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\r\n\x05\x62uild\x18\x02 \x01(\t\x12\x0e\n\x06number\x18\x03 \x01(\t\x12\x11\n\ttimestamp\x18\x04 \x01(\x04\x12\x0c\n\x04hash\x18\x05 \x01(\t\"\xef\x01\n\x08Metadata\x12\x10\n\x08\x64\x65viceId\x18\x01 \x01(\x0c\x12\x0c\n\x04time\x18\x02 \x01(\x03\x12\x0b\n\x03git\x18\x03 \x01(\t\x12\r\n\x05\x62uild\x18\x07 \x01(\t\x12\x12\n\nresetCause\x18\x04 \x01(\r\x12$\n\x07sensors\x18\x05 \x03(\x0b\x32\x13.fk_data.SensorInfo\x12$\n\x07modules\x18\x06 \x03(\x0b\x32\x13.fk_data.ModuleInfo\x12#\n\x08\x66irmware\x18\x08 \x01(\x0b\x32\x11.fk_data.Firmware\x12\x12\n\ngeneration\x18\t \x01(\x0c\x12\x0e\n\x06record\x18\n \x01(\x04\"U\n\x06Status\x12\x0c\n\x04time\x18\x01 \x01(\x03\x12\x0e\n\x06uptime\x18\x02 \x01(\r\x12\x0f\n\x07\x62\x61ttery\x18\x03 \x01(\x02\x12\x0e\n\x06memory\x18\x04 \x01(\r\x12\x0c\n\x04\x62usy\x18\x05 \x01(\x04\"\\\n\nLogMessage\x12\x0c\n\x04time\x18\x01 \x01(\x03\x12\x0e\n\x06uptime\x18\x02 \x01(\r\x12\r\n\x05level\x18\x03 \x01(\r\x12\x10\n\x08\x66\x61\x63ility\x18\x04 \x01(\t\x12\x0f\n\x07message\x18\x05 \x01(\t\"V\n\x0bSensorGroup\x12\x0e\n\x06module\x18\x01 \x01(\r\x12\x0c\n\x04time\x18\x03 \x01(\x03\x12)\n\x08readings\x18\x02 \x03(\x0b\x32\x17.fk_data.SensorAndValue\"\xad\x01\n\x08Readings\x12\x0c\n\x04time\x18\x01 \x01(\x03\x12\x0f\n\x07reading\x18\x02 \x01(\x04\x12\r\n\x05\x66lags\x18\x03 \x01(\r\x12\x0c\n\x04meta\x18\x06 \x01(\x04\x12\x0e\n\x06uptime\x18\x07 \x01(\r\x12)\n\x08location\x18\x04 \x01(\x0b\x32\x17.fk_data.DeviceLocation\x12*\n\x0csensorGroups\x18\x05 \x03(\x0b\x32\x14.fk_data.SensorGroup\"8\n\x08Interval\x12\r\n\x05start\x18\x01 \x01(\x04\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x04\x12\x10\n\x08interval\x18\x03 \x01(\r\"\x87\x01\n\x0bJobSchedule\x12\x0c\n\x04\x63ron\x18\x01 \x01(\x0c\x12\x10\n\x08interval\x18\x02 \x01(\r\x12\x10\n\x08repeated\x18\x03 \x01(\r\x12\x10\n\x08\x64uration\x18\x04 \x01(\r\x12\x0e\n\x06jitter\x18\x05 \x01(\r\x12$\n\tintervals\x18\x06 \x03(\x0b\x32\x11.fk_data.Interval\"\xa0\x01\n\x08Schedule\x12&\n\x08readings\x18\x01 \x01(\x0b\x32\x14.fk_data.JobSchedule\x12%\n\x07network\x18\x02 \x01(\x0b\x32\x14.fk_data.JobSchedule\x12\"\n\x04lora\x18\x03 \x01(\x0b\x32\x14.fk_data.JobSchedule\x12!\n\x03gps\x18\x04 \x01(\x0b\x32\x14.fk_data.JobSchedule\"\x18\n\x08Identity\x12\x0c\n\x04name\x18\x01 \x01(\t\"-\n\tCondition\x12\r\n\x05\x66lags\x18\x01 \x01(\r\x12\x11\n\trecording\x18\x02 \x01(\r\"P\n\x0bNetworkInfo\x12\x0c\n\x04ssid\x18\x01 \x01(\t\x12\x10\n\x08password\x18\x02 \x01(\t\x12\x0e\n\x06\x63reate\x18\x03 \x01(\x08\x12\x11\n\tpreferred\x18\x04 \x01(\x08\"?\n\x10WifiTransmission\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\r\n\x05token\x18\x02 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x03 \x01(\x08\"?\n\x14TransmissionSettings\x12\'\n\x04wifi\x18\x01 \x01(\x0b\x32\x19.fk_data.WifiTransmission\"9\n\x0fNetworkSettings\x12&\n\x08networks\x18\x01 \x03(\x0b\x32\x14.fk_data.NetworkInfo\"\xf6\x01\n\x0cLoraSettings\x12\x11\n\tdeviceEui\x18\x01 \x01(\x0c\x12\x0e\n\x06\x61ppKey\x18\x02 \x01(\x0c\x12\x0f\n\x07joinEui\x18\x03 \x01(\x0c\x12\x15\n\rfrequencyBand\x18\x04 \x01(\r\x12\x15\n\rdeviceAddress\x18\x05 \x01(\x0c\x12\x19\n\x11networkSessionKey\x18\x06 \x01(\x0c\x12\x15\n\rappSessionKey\x18\x07 \x01(\x0c\x12\x15\n\ruplinkCounter\x18\x08 \x01(\r\x12\x17\n\x0f\x64ownlinkCounter\x18\t \x01(\r\x12\x10\n\x08rxDelay1\x18\n \x01(\r\x12\x10\n\x08rxDelay2\x18\x0b \x01(\r\"=\n\x0c\x45ventDetails\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x10\n\x08integers\x18\x02 \x03(\x05\x12\r\n\x05reals\x18\x03 \x03(\x02\"\xa5\x01\n\x05\x45vent\x12$\n\x06system\x18\x01 \x01(\x0e\x32\x14.fk_data.EventSystem\x12#\n\x08severity\x18\x02 \x01(\x0e\x32\x11.fk_data.Severity\x12\x0c\n\x04\x63ode\x18\x03 \x01(\r\x12\x0c\n\x04time\x18\x04 \x01(\r\x12&\n\x07\x64\x65tails\x18\x05 \x01(\x0b\x32\x15.fk_data.EventDetails\x12\r\n\x05\x64\x65\x62ug\x18\x06 \x01(\x0c\"\xb5\x04\n\nDataRecord\x12-\n\rloggedReading\x18\x01 \x01(\x0b\x32\x16.fk_data.LoggedReading\x12#\n\x08metadata\x18\x02 \x01(\x0b\x32\x11.fk_data.Metadata\x12 \n\x03log\x18\x03 \x01(\x0b\x32\x13.fk_data.LogMessage\x12!\n\x04logs\x18\r \x03(\x0b\x32\x13.fk_data.LogMessage\x12\x1f\n\x06status\x18\x04 \x01(\x0b\x32\x0f.fk_data.Status\x12#\n\x08readings\x18\x05 \x01(\x0b\x32\x11.fk_data.Readings\x12$\n\x07modules\x18\x06 \x03(\x0b\x32\x13.fk_data.ModuleInfo\x12#\n\x08schedule\x18\x07 \x01(\x0b\x32\x11.fk_data.Schedule\x12\x0c\n\x04meta\x18\x08 \x01(\x04\x12#\n\x08identity\x18\t \x01(\x0b\x32\x11.fk_data.Identity\x12%\n\tcondition\x18\n \x01(\x0b\x32\x12.fk_data.Condition\x12#\n\x04lora\x18\x0b \x01(\x0b\x32\x15.fk_data.LoraSettings\x12)\n\x07network\x18\x0c \x01(\x0b\x32\x18.fk_data.NetworkSettings\x12\x33\n\x0ctransmission\x18\x0e \x01(\x0b\x32\x1d.fk_data.TransmissionSettings\x12\x1e\n\x06\x65vents\x18\x0f \x03(\x0b\x32\x0e.fk_data.Event\"q\n\x0cSignedRecord\x12\'\n\x04kind\x18\x01 \x01(\x0e\x32\x19.fk_data.SignedRecordKind\x12\x0c\n\x04time\x18\x02 \x01(\x03\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c\x12\x0c\n\x04hash\x18\x04 \x01(\x0c\x12\x0e\n\x06record\x18\x05 \x01(\x04\"z\n\nLoraRecord\x12\x10\n\x08\x64\x65viceId\x18\x01 \x01(\x0c\x12\x0c\n\x04time\x18\x02 \x01(\x03\x12\x0e\n\x06number\x18\x03 \x01(\x04\x12\x0e\n\x06module\x18\x04 \x01(\r\x12\x0e\n\x06sensor\x18\x05 \x01(\x04\x12\x0e\n\x06values\x18\x06 \x03(\x02\x12\x0c\n\x04\x64\x61ta\x18\x07 \x01(\x0c\"Z\n\x10\x43\x61librationPoint\x12\x12\n\nreferences\x18\x01 \x03(\x02\x12\x14\n\x0cuncalibrated\x18\x02 \x03(\x02\x12\x0f\n\x07\x66\x61\x63tory\x18\x03 \x03(\x02\x12\x0b\n\x03\x61\x64\x63\x18\x04 \x03(\x0c\")\n\x17\x43\x61librationCoefficients\x12\x0e\n\x06values\x18\x01 \x03(\x02\"\xd3\x01\n\x0b\x43\x61libration\x12 \n\x04type\x18\x01 \x01(\x0e\x32\x12.fk_data.CurveType\x12\x0c\n\x04time\x18\x02 \x01(\r\x12\x0c\n\x04kind\x18\x06 \x01(\r\x12)\n\x06points\x18\x03 \x03(\x0b\x32\x19.fk_data.CalibrationPoint\x12\x36\n\x0c\x63oefficients\x18\x04 \x01(\x0b\x32 .fk_data.CalibrationCoefficients\x12#\n\x08\x66irmware\x18\x05 \x01(\x0b\x32\x11.fk_data.Firmware\"l\n\x13ModuleConfiguration\x12)\n\x0b\x63\x61libration\x18\x01 \x01(\x0b\x32\x14.fk_data.Calibration\x12*\n\x0c\x63\x61librations\x18\x02 \x03(\x0b\x32\x14.fk_data.Calibration*b\n\rDownloadFlags\x12\x16\n\x12READING_FLAGS_NONE\x10\x00\x12\x1f\n\x1bREADING_FLAGS_NOT_RECORDING\x10\x01\x12\x18\n\x14READING_FLAGS_MANUAL\x10\x02*I\n\x0e\x43onditionFlags\x12\x18\n\x14\x43ONDITION_FLAGS_NONE\x10\x00\x12\x1d\n\x19\x43ONDITION_FLAGS_RECORDING\x10\x01*\xb8\x01\n\x0b\x45ventSystem\x12\x15\n\x11\x45VENT_SYSTEM_NONE\x10\x00\x12\x18\n\x14\x45VENT_SYSTEM_RESTART\x10\x01\x12\x18\n\x14\x45VENT_SYSTEM_BATTERY\x10\x02\x12\x17\n\x13\x45VENT_SYSTEM_MEMORY\x10\x03\x12\x17\n\x13\x45VENT_SYSTEM_SENSOR\x10\x04\x12\x15\n\x11\x45VENT_SYSTEM_WIFI\x10\x05\x12\x15\n\x11\x45VENT_SYSTEM_LORA\x10\x06*G\n\x08Severity\x12\x11\n\rSEVERITY_INFO\x10\x00\x12\x14\n\x10SEVERITY_WARNING\x10\x01\x12\x12\n\x0eSEVERITY_ERROR\x10\x02*\xee\x01\n\x10SignedRecordKind\x12\x1b\n\x17SIGNED_RECORD_KIND_NONE\x10\x00\x12\x1e\n\x1aSIGNED_RECORD_KIND_MODULES\x10\x01\x12\x1f\n\x1bSIGNED_RECORD_KIND_SCHEDULE\x10\x02\x12\x1c\n\x18SIGNED_RECORD_KIND_STATE\x10\x03\x12 \n\x1cSIGNED_RECORD_KIND_RAW_STATE\x10\x04\x12\x1d\n\x19SIGNED_RECORD_KIND_EVENTS\x10\x05\x12\x1d\n\x18SIGNED_RECORD_KIND_OTHER\x10\xff\x01*l\n\tCurveType\x12\x0e\n\nCURVE_NONE\x10\x00\x12\x10\n\x0c\x43URVE_LINEAR\x10\x01\x12\x0f\n\x0b\x43URVE_POWER\x10\x02\x12\x15\n\x11\x43URVE_LOGARITHMIC\x10\x03\x12\x15\n\x11\x43URVE_EXPONENTIAL\x10\x04\x42N\n\x1forg.conservify.fieldkit.data.pbZ+gitlab.com/fieldkit/libraries/data-protocolb\x06proto3'
)
_DOWNLOADFLAGS = _descriptor.EnumDescriptor(
name='DownloadFlags',
full_name='fk_data.DownloadFlags',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='READING_FLAGS_NONE', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='READING_FLAGS_NOT_RECORDING', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='READING_FLAGS_MANUAL', index=2, number=2,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4214,
serialized_end=4312,
)
_sym_db.RegisterEnumDescriptor(_DOWNLOADFLAGS)
DownloadFlags = enum_type_wrapper.EnumTypeWrapper(_DOWNLOADFLAGS)
_CONDITIONFLAGS = _descriptor.EnumDescriptor(
name='ConditionFlags',
full_name='fk_data.ConditionFlags',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='CONDITION_FLAGS_NONE', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CONDITION_FLAGS_RECORDING', index=1, number=1,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4314,
serialized_end=4387,
)
_sym_db.RegisterEnumDescriptor(_CONDITIONFLAGS)
ConditionFlags = enum_type_wrapper.EnumTypeWrapper(_CONDITIONFLAGS)
_EVENTSYSTEM = _descriptor.EnumDescriptor(
name='EventSystem',
full_name='fk_data.EventSystem',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_NONE', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_RESTART', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_BATTERY', index=2, number=2,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_MEMORY', index=3, number=3,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_SENSOR', index=4, number=4,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_WIFI', index=5, number=5,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EVENT_SYSTEM_LORA', index=6, number=6,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4390,
serialized_end=4574,
)
_sym_db.RegisterEnumDescriptor(_EVENTSYSTEM)
EventSystem = enum_type_wrapper.EnumTypeWrapper(_EVENTSYSTEM)
_SEVERITY = _descriptor.EnumDescriptor(
name='Severity',
full_name='fk_data.Severity',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='SEVERITY_INFO', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SEVERITY_WARNING', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SEVERITY_ERROR', index=2, number=2,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4576,
serialized_end=4647,
)
_sym_db.RegisterEnumDescriptor(_SEVERITY)
Severity = enum_type_wrapper.EnumTypeWrapper(_SEVERITY)
_SIGNEDRECORDKIND = _descriptor.EnumDescriptor(
name='SignedRecordKind',
full_name='fk_data.SignedRecordKind',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_NONE', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_MODULES', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_SCHEDULE', index=2, number=2,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_STATE', index=3, number=3,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_RAW_STATE', index=4, number=4,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_EVENTS', index=5, number=5,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='SIGNED_RECORD_KIND_OTHER', index=6, number=255,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4650,
serialized_end=4888,
)
_sym_db.RegisterEnumDescriptor(_SIGNEDRECORDKIND)
SignedRecordKind = enum_type_wrapper.EnumTypeWrapper(_SIGNEDRECORDKIND)
_CURVETYPE = _descriptor.EnumDescriptor(
name='CurveType',
full_name='fk_data.CurveType',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='CURVE_NONE', index=0, number=0,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CURVE_LINEAR', index=1, number=1,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CURVE_POWER', index=2, number=2,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CURVE_LOGARITHMIC', index=3, number=3,
serialized_options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CURVE_EXPONENTIAL', index=4, number=4,
serialized_options=None,
type=None),
],
containing_type=None,
serialized_options=None,
serialized_start=4890,
serialized_end=4998,
)
_sym_db.RegisterEnumDescriptor(_CURVETYPE)
CurveType = enum_type_wrapper.EnumTypeWrapper(_CURVETYPE)
READING_FLAGS_NONE = 0
READING_FLAGS_NOT_RECORDING = 1
READING_FLAGS_MANUAL = 2
CONDITION_FLAGS_NONE = 0
CONDITION_FLAGS_RECORDING = 1
EVENT_SYSTEM_NONE = 0
EVENT_SYSTEM_RESTART = 1
EVENT_SYSTEM_BATTERY = 2
EVENT_SYSTEM_MEMORY = 3
EVENT_SYSTEM_SENSOR = 4
EVENT_SYSTEM_WIFI = 5
EVENT_SYSTEM_LORA = 6
SEVERITY_INFO = 0
SEVERITY_WARNING = 1
SEVERITY_ERROR = 2
SIGNED_RECORD_KIND_NONE = 0
SIGNED_RECORD_KIND_MODULES = 1
SIGNED_RECORD_KIND_SCHEDULE = 2
SIGNED_RECORD_KIND_STATE = 3
SIGNED_RECORD_KIND_RAW_STATE = 4
SIGNED_RECORD_KIND_EVENTS = 5
SIGNED_RECORD_KIND_OTHER = 255
CURVE_NONE = 0
CURVE_LINEAR = 1
CURVE_POWER = 2
CURVE_LOGARITHMIC = 3
CURVE_EXPONENTIAL = 4
_DEVICELOCATION = _descriptor.Descriptor(
name='DeviceLocation',
full_name='fk_data.DeviceLocation',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='enabled', full_name='fk_data.DeviceLocation.enabled', index=0,
number=7, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='fix', full_name='fk_data.DeviceLocation.fix', index=1,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.DeviceLocation.time', index=2,
number=2, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='longitude', full_name='fk_data.DeviceLocation.longitude', index=3,
number=3, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='latitude', full_name='fk_data.DeviceLocation.latitude', index=4,
number=4, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='altitude', full_name='fk_data.DeviceLocation.altitude', index=5,
number=5, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='coordinates', full_name='fk_data.DeviceLocation.coordinates', index=6,
number=6, type=2, cpp_type=6, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='satellites', full_name='fk_data.DeviceLocation.satellites', index=7,
number=8, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='hdop', full_name='fk_data.DeviceLocation.hdop', index=8,
number=9, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=27,
serialized_end=197,
)
_SENSORREADING = _descriptor.Descriptor(
name='SensorReading',
full_name='fk_data.SensorReading',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='reading', full_name='fk_data.SensorReading.reading', index=0,
number=1, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.SensorReading.time', index=1,
number=2, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='sensor', full_name='fk_data.SensorReading.sensor', index=2,
number=3, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='value', full_name='fk_data.SensorReading.value', index=3,
number=4, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=199,
serialized_end=276,
)
_LOGGEDREADING = _descriptor.Descriptor(
name='LoggedReading',
full_name='fk_data.LoggedReading',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='version', full_name='fk_data.LoggedReading.version', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='location', full_name='fk_data.LoggedReading.location', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='reading', full_name='fk_data.LoggedReading.reading', index=2,
number=3, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=278,
serialized_end=394,
)
_SENSORANDVALUE = _descriptor.Descriptor(
name='SensorAndValue',
full_name='fk_data.SensorAndValue',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='sensor', full_name='fk_data.SensorAndValue.sensor', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='calibratedNull', full_name='fk_data.SensorAndValue.calibratedNull', index=1,
number=4, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='calibratedValue', full_name='fk_data.SensorAndValue.calibratedValue', index=2,
number=2, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='uncalibratedNull', full_name='fk_data.SensorAndValue.uncalibratedNull', index=3,
number=5, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='uncalibratedValue', full_name='fk_data.SensorAndValue.uncalibratedValue', index=4,
number=3, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='calibrated', full_name='fk_data.SensorAndValue.calibrated',
index=0, containing_type=None, fields=[]),
_descriptor.OneofDescriptor(
name='uncalibrated', full_name='fk_data.SensorAndValue.uncalibrated',
index=1, containing_type=None, fields=[]),
],
serialized_start=397,
serialized_end=569,
)
_MODULEHEADER = _descriptor.Descriptor(
name='ModuleHeader',
full_name='fk_data.ModuleHeader',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='manufacturer', full_name='fk_data.ModuleHeader.manufacturer', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='kind', full_name='fk_data.ModuleHeader.kind', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='version', full_name='fk_data.ModuleHeader.version', index=2,
number=3, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=571,
serialized_end=638,
)
_MODULEINFO = _descriptor.Descriptor(
name='ModuleInfo',
full_name='fk_data.ModuleInfo',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='position', full_name='fk_data.ModuleInfo.position', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='address', full_name='fk_data.ModuleInfo.address', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='name', full_name='fk_data.ModuleInfo.name', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='header', full_name='fk_data.ModuleInfo.header', index=3,
number=4, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='firmware', full_name='fk_data.ModuleInfo.firmware', index=4,
number=5, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='sensors', full_name='fk_data.ModuleInfo.sensors', index=5,
number=6, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='id', full_name='fk_data.ModuleInfo.id', index=6,
number=7, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='flags', full_name='fk_data.ModuleInfo.flags', index=7,
number=8, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='configuration', full_name='fk_data.ModuleInfo.configuration', index=8,
number=9, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=641,
serialized_end=866,
)
_SENSORINFO = _descriptor.Descriptor(
name='SensorInfo',
full_name='fk_data.SensorInfo',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='number', full_name='fk_data.SensorInfo.number', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='name', full_name='fk_data.SensorInfo.name', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='unitOfMeasure', full_name='fk_data.SensorInfo.unitOfMeasure', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='uncalibratedUnitOfMeasure', full_name='fk_data.SensorInfo.uncalibratedUnitOfMeasure', index=3,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='flags', full_name='fk_data.SensorInfo.flags', index=4,
number=4, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=868,
serialized_end=983,
)
_FIRMWARE = _descriptor.Descriptor(
name='Firmware',
full_name='fk_data.Firmware',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='version', full_name='fk_data.Firmware.version', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='build', full_name='fk_data.Firmware.build', index=1,
number=2, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='number', full_name='fk_data.Firmware.number', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='timestamp', full_name='fk_data.Firmware.timestamp', index=3,
number=4, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='hash', full_name='fk_data.Firmware.hash', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=985,
serialized_end=1076,
)
_METADATA = _descriptor.Descriptor(
name='Metadata',
full_name='fk_data.Metadata',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='deviceId', full_name='fk_data.Metadata.deviceId', index=0,
number=1, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.Metadata.time', index=1,
number=2, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='git', full_name='fk_data.Metadata.git', index=2,
number=3, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='build', full_name='fk_data.Metadata.build', index=3,
number=7, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='resetCause', full_name='fk_data.Metadata.resetCause', index=4,
number=4, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='sensors', full_name='fk_data.Metadata.sensors', index=5,
number=5, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='modules', full_name='fk_data.Metadata.modules', index=6,
number=6, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='firmware', full_name='fk_data.Metadata.firmware', index=7,
number=8, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='generation', full_name='fk_data.Metadata.generation', index=8,
number=9, type=12, cpp_type=9, label=1,
has_default_value=False, default_value=b"",
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='record', full_name='fk_data.Metadata.record', index=9,
number=10, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1079,
serialized_end=1318,
)
_STATUS = _descriptor.Descriptor(
name='Status',
full_name='fk_data.Status',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.Status.time', index=0,
number=1, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='uptime', full_name='fk_data.Status.uptime', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='battery', full_name='fk_data.Status.battery', index=2,
number=3, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='memory', full_name='fk_data.Status.memory', index=3,
number=4, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='busy', full_name='fk_data.Status.busy', index=4,
number=5, type=4, cpp_type=4, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1320,
serialized_end=1405,
)
_LOGMESSAGE = _descriptor.Descriptor(
name='LogMessage',
full_name='fk_data.LogMessage',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.LogMessage.time', index=0,
number=1, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='uptime', full_name='fk_data.LogMessage.uptime', index=1,
number=2, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='level', full_name='fk_data.LogMessage.level', index=2,
number=3, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='facility', full_name='fk_data.LogMessage.facility', index=3,
number=4, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='message', full_name='fk_data.LogMessage.message', index=4,
number=5, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=b"".decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=1407,
serialized_end=1499,
)
_SENSORGROUP = _descriptor.Descriptor(
name='SensorGroup',
full_name='fk_data.SensorGroup',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='module', full_name='fk_data.SensorGroup.module', index=0,
number=1, type=13, cpp_type=3, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='time', full_name='fk_data.SensorGroup.time', index=1,
number=3, type=3, cpp_type=2, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
_descriptor.FieldDescriptor(
name='readings', full_name='fk_data.SensorGroup.readings', index=2,
number=2, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
serialized_options=None, file=DESCRIPTOR),
],
extensions=[
],
nested_types=[],
enum_types=[
],
serialized_options=None,
is_extendable=False,
syntax='proto3',