pyg90alarm 1.10.1__py3-none-any.whl → 1.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyg90alarm/definitions/sensors.py +241 -1
- {pyg90alarm-1.10.1.dist-info → pyg90alarm-1.11.0.dist-info}/METADATA +1 -1
- {pyg90alarm-1.10.1.dist-info → pyg90alarm-1.11.0.dist-info}/RECORD +6 -6
- {pyg90alarm-1.10.1.dist-info → pyg90alarm-1.11.0.dist-info}/WHEEL +1 -1
- {pyg90alarm-1.10.1.dist-info → pyg90alarm-1.11.0.dist-info}/LICENSE +0 -0
- {pyg90alarm-1.10.1.dist-info → pyg90alarm-1.11.0.dist-info}/top_level.txt +0 -0
|
@@ -475,6 +475,16 @@ SENSOR_DEFINITIONS = [
|
|
|
475
475
|
rwMode=SensorRwMode.READ,
|
|
476
476
|
matchMode=SensorMatchMode.ONLY20BITS
|
|
477
477
|
),
|
|
478
|
+
# Door Sensor WRDS01
|
|
479
|
+
SensorDefinition(
|
|
480
|
+
type=1,
|
|
481
|
+
subtype=3,
|
|
482
|
+
rx=0,
|
|
483
|
+
tx=0,
|
|
484
|
+
private_data='00',
|
|
485
|
+
rwMode=SensorRwMode.READ,
|
|
486
|
+
matchMode=SensorMatchMode.ALL
|
|
487
|
+
),
|
|
478
488
|
# Door Sensor
|
|
479
489
|
SensorDefinition(
|
|
480
490
|
type=1,
|
|
@@ -485,6 +495,96 @@ SENSOR_DEFINITIONS = [
|
|
|
485
495
|
rwMode=SensorRwMode.READ,
|
|
486
496
|
matchMode=SensorMatchMode.ONLY16BITS
|
|
487
497
|
),
|
|
498
|
+
# Glass Break Sensor BLPS
|
|
499
|
+
SensorDefinition(
|
|
500
|
+
type=2,
|
|
501
|
+
subtype=0,
|
|
502
|
+
rx=0,
|
|
503
|
+
tx=0,
|
|
504
|
+
private_data='00',
|
|
505
|
+
rwMode=SensorRwMode.READ,
|
|
506
|
+
matchMode=SensorMatchMode.ALL
|
|
507
|
+
),
|
|
508
|
+
# Gas Detector WGD01
|
|
509
|
+
SensorDefinition(
|
|
510
|
+
type=3,
|
|
511
|
+
subtype=0,
|
|
512
|
+
rx=0,
|
|
513
|
+
tx=0,
|
|
514
|
+
private_data='00',
|
|
515
|
+
rwMode=SensorRwMode.READ,
|
|
516
|
+
matchMode=SensorMatchMode.ALL
|
|
517
|
+
),
|
|
518
|
+
# Smoke Detector WSD02
|
|
519
|
+
SensorDefinition(
|
|
520
|
+
type=4,
|
|
521
|
+
subtype=0,
|
|
522
|
+
rx=0,
|
|
523
|
+
tx=0,
|
|
524
|
+
private_data='00',
|
|
525
|
+
rwMode=SensorRwMode.READ,
|
|
526
|
+
matchMode=SensorMatchMode.ALL
|
|
527
|
+
),
|
|
528
|
+
# Smoke Detector WSD04
|
|
529
|
+
SensorDefinition(
|
|
530
|
+
type=4,
|
|
531
|
+
subtype=1,
|
|
532
|
+
rx=0,
|
|
533
|
+
tx=0,
|
|
534
|
+
private_data='00',
|
|
535
|
+
rwMode=SensorRwMode.READ,
|
|
536
|
+
matchMode=SensorMatchMode.ALL
|
|
537
|
+
),
|
|
538
|
+
# Panic Button WEB01
|
|
539
|
+
SensorDefinition(
|
|
540
|
+
type=5,
|
|
541
|
+
subtype=1,
|
|
542
|
+
rx=0,
|
|
543
|
+
tx=0,
|
|
544
|
+
private_data='00',
|
|
545
|
+
rwMode=SensorRwMode.READ,
|
|
546
|
+
matchMode=SensorMatchMode.ALL
|
|
547
|
+
),
|
|
548
|
+
# Panic Button WEB03
|
|
549
|
+
SensorDefinition(
|
|
550
|
+
type=5,
|
|
551
|
+
subtype=0,
|
|
552
|
+
rx=0,
|
|
553
|
+
tx=0,
|
|
554
|
+
private_data='00',
|
|
555
|
+
rwMode=SensorRwMode.READ,
|
|
556
|
+
matchMode=SensorMatchMode.ALL
|
|
557
|
+
),
|
|
558
|
+
# Shock Sensor WSS01
|
|
559
|
+
SensorDefinition(
|
|
560
|
+
type=6,
|
|
561
|
+
subtype=0,
|
|
562
|
+
rx=0,
|
|
563
|
+
tx=0,
|
|
564
|
+
private_data='00',
|
|
565
|
+
rwMode=SensorRwMode.READ,
|
|
566
|
+
matchMode=SensorMatchMode.ALL
|
|
567
|
+
),
|
|
568
|
+
# Water Detector LSTC02
|
|
569
|
+
SensorDefinition(
|
|
570
|
+
type=7,
|
|
571
|
+
subtype=1,
|
|
572
|
+
rx=0,
|
|
573
|
+
tx=0,
|
|
574
|
+
private_data='',
|
|
575
|
+
rwMode=SensorRwMode.READ,
|
|
576
|
+
matchMode=SensorMatchMode.ALL
|
|
577
|
+
),
|
|
578
|
+
# Water Detector LSTC01
|
|
579
|
+
SensorDefinition(
|
|
580
|
+
type=7,
|
|
581
|
+
subtype=0,
|
|
582
|
+
rx=0,
|
|
583
|
+
tx=0,
|
|
584
|
+
private_data='00',
|
|
585
|
+
rwMode=SensorRwMode.READ,
|
|
586
|
+
matchMode=SensorMatchMode.ALL
|
|
587
|
+
),
|
|
488
588
|
# PIR motion sensor WMS08
|
|
489
589
|
SensorDefinition(
|
|
490
590
|
type=8,
|
|
@@ -505,6 +605,66 @@ SENSOR_DEFINITIONS = [
|
|
|
505
605
|
rwMode=SensorRwMode.READ,
|
|
506
606
|
matchMode=SensorMatchMode.ONLY20BITS
|
|
507
607
|
),
|
|
608
|
+
# PIR motion sensor ODPIR
|
|
609
|
+
SensorDefinition(
|
|
610
|
+
type=8,
|
|
611
|
+
subtype=0,
|
|
612
|
+
rx=0,
|
|
613
|
+
tx=0,
|
|
614
|
+
private_data='00',
|
|
615
|
+
rwMode=SensorRwMode.READ,
|
|
616
|
+
matchMode=SensorMatchMode.ALL
|
|
617
|
+
),
|
|
618
|
+
# PIR motion sensor N650
|
|
619
|
+
SensorDefinition(
|
|
620
|
+
type=8,
|
|
621
|
+
subtype=5,
|
|
622
|
+
rx=0,
|
|
623
|
+
tx=0,
|
|
624
|
+
private_data='00',
|
|
625
|
+
rwMode=SensorRwMode.READ,
|
|
626
|
+
matchMode=SensorMatchMode.ALL
|
|
627
|
+
),
|
|
628
|
+
# PIR motion sensor WPD02
|
|
629
|
+
SensorDefinition(
|
|
630
|
+
type=8,
|
|
631
|
+
subtype=6,
|
|
632
|
+
rx=0,
|
|
633
|
+
tx=0,
|
|
634
|
+
private_data='00',
|
|
635
|
+
rwMode=SensorRwMode.READ,
|
|
636
|
+
matchMode=SensorMatchMode.ALL
|
|
637
|
+
),
|
|
638
|
+
# PIR motion sensor WCMS02
|
|
639
|
+
SensorDefinition(
|
|
640
|
+
type=8,
|
|
641
|
+
subtype=8,
|
|
642
|
+
rx=0,
|
|
643
|
+
tx=0,
|
|
644
|
+
private_data='00',
|
|
645
|
+
rwMode=SensorRwMode.READ,
|
|
646
|
+
matchMode=SensorMatchMode.ALL
|
|
647
|
+
),
|
|
648
|
+
# PIR motion sensor CWMS01
|
|
649
|
+
SensorDefinition(
|
|
650
|
+
type=8,
|
|
651
|
+
subtype=9,
|
|
652
|
+
rx=0,
|
|
653
|
+
tx=0,
|
|
654
|
+
private_data='00',
|
|
655
|
+
rwMode=SensorRwMode.READ,
|
|
656
|
+
matchMode=SensorMatchMode.ALL
|
|
657
|
+
),
|
|
658
|
+
# PIR motion sensor WMS04
|
|
659
|
+
SensorDefinition(
|
|
660
|
+
type=8,
|
|
661
|
+
subtype=11,
|
|
662
|
+
rx=0,
|
|
663
|
+
tx=0,
|
|
664
|
+
private_data='00',
|
|
665
|
+
rwMode=SensorRwMode.READ,
|
|
666
|
+
matchMode=SensorMatchMode.ALL
|
|
667
|
+
),
|
|
508
668
|
# PIR motion sensor WMS07
|
|
509
669
|
SensorDefinition(
|
|
510
670
|
type=8,
|
|
@@ -515,6 +675,66 @@ SENSOR_DEFINITIONS = [
|
|
|
515
675
|
rwMode=SensorRwMode.READ,
|
|
516
676
|
matchMode=SensorMatchMode.ONLY20BITS
|
|
517
677
|
),
|
|
678
|
+
# PIR motion sensor ODPIR03
|
|
679
|
+
SensorDefinition(
|
|
680
|
+
type=8,
|
|
681
|
+
subtype=4,
|
|
682
|
+
rx=0,
|
|
683
|
+
tx=0,
|
|
684
|
+
private_data='00',
|
|
685
|
+
rwMode=SensorRwMode.READ,
|
|
686
|
+
matchMode=SensorMatchMode.ALL
|
|
687
|
+
),
|
|
688
|
+
# PIR motion sensor WPD01
|
|
689
|
+
SensorDefinition(
|
|
690
|
+
type=8,
|
|
691
|
+
subtype=7,
|
|
692
|
+
rx=0,
|
|
693
|
+
tx=0,
|
|
694
|
+
private_data='00',
|
|
695
|
+
rwMode=SensorRwMode.READ,
|
|
696
|
+
matchMode=SensorMatchMode.ALL
|
|
697
|
+
),
|
|
698
|
+
# PIR motion sensor PIR Ceiling
|
|
699
|
+
SensorDefinition(
|
|
700
|
+
type=8,
|
|
701
|
+
subtype=1,
|
|
702
|
+
rx=0,
|
|
703
|
+
tx=0,
|
|
704
|
+
private_data='00',
|
|
705
|
+
rwMode=SensorRwMode.READ,
|
|
706
|
+
matchMode=SensorMatchMode.ALL
|
|
707
|
+
),
|
|
708
|
+
# Beams ABT
|
|
709
|
+
SensorDefinition(
|
|
710
|
+
type=9,
|
|
711
|
+
subtype=0,
|
|
712
|
+
rx=0,
|
|
713
|
+
tx=0,
|
|
714
|
+
private_data='00',
|
|
715
|
+
rwMode=SensorRwMode.READ,
|
|
716
|
+
matchMode=SensorMatchMode.ALL
|
|
717
|
+
),
|
|
718
|
+
# Beams ABE
|
|
719
|
+
SensorDefinition(
|
|
720
|
+
type=9,
|
|
721
|
+
subtype=1,
|
|
722
|
+
rx=0,
|
|
723
|
+
tx=0,
|
|
724
|
+
private_data='00',
|
|
725
|
+
rwMode=SensorRwMode.READ,
|
|
726
|
+
matchMode=SensorMatchMode.ALL
|
|
727
|
+
),
|
|
728
|
+
# Beams ABH
|
|
729
|
+
SensorDefinition(
|
|
730
|
+
type=9,
|
|
731
|
+
subtype=2,
|
|
732
|
+
rx=0,
|
|
733
|
+
tx=0,
|
|
734
|
+
private_data='00',
|
|
735
|
+
rwMode=SensorRwMode.READ,
|
|
736
|
+
matchMode=SensorMatchMode.ALL
|
|
737
|
+
),
|
|
518
738
|
# Remote RMC08
|
|
519
739
|
SensorDefinition(
|
|
520
740
|
type=10,
|
|
@@ -565,6 +785,16 @@ SENSOR_DEFINITIONS = [
|
|
|
565
785
|
rwMode=SensorRwMode.READ,
|
|
566
786
|
matchMode=SensorMatchMode.ONLY20BITS
|
|
567
787
|
),
|
|
788
|
+
# Door Bell WDB
|
|
789
|
+
SensorDefinition(
|
|
790
|
+
type=12,
|
|
791
|
+
subtype=1,
|
|
792
|
+
rx=0,
|
|
793
|
+
tx=0,
|
|
794
|
+
private_data='00',
|
|
795
|
+
rwMode=SensorRwMode.READ,
|
|
796
|
+
matchMode=SensorMatchMode.ALL
|
|
797
|
+
),
|
|
568
798
|
# TouchID Detector
|
|
569
799
|
SensorDefinition(
|
|
570
800
|
type=13,
|
|
@@ -595,7 +825,17 @@ SENSOR_DEFINITIONS = [
|
|
|
595
825
|
rwMode=SensorRwMode.READ,
|
|
596
826
|
matchMode=SensorMatchMode.ONLY16BITS
|
|
597
827
|
),
|
|
598
|
-
#
|
|
828
|
+
# Sub Host SS08S
|
|
829
|
+
SensorDefinition(
|
|
830
|
+
type=16,
|
|
831
|
+
subtype=0,
|
|
832
|
+
rx=0,
|
|
833
|
+
tx=0,
|
|
834
|
+
private_data='00',
|
|
835
|
+
rwMode=SensorRwMode.READ,
|
|
836
|
+
matchMode=SensorMatchMode.ALL
|
|
837
|
+
),
|
|
838
|
+
# Gas Valve Detector WGD02
|
|
599
839
|
SensorDefinition(
|
|
600
840
|
type=18,
|
|
601
841
|
subtype=0,
|
|
@@ -15,12 +15,12 @@ pyg90alarm/paginated_result.py,sha256=xweFfPLn1a2yYm5h0AxGoDCyDIoy0JkUC_tI80vsrL
|
|
|
15
15
|
pyg90alarm/targeted_discovery.py,sha256=_SR_pBZxDkLNL5WA8LfGboQw2AH09G65ASn9EEtxlDs,3735
|
|
16
16
|
pyg90alarm/user_data_crc.py,sha256=RsQlbuXC4baD88hX4y0XdysmxEMtQkqkNVX_FhTLSmw,1467
|
|
17
17
|
pyg90alarm/definitions/__init__.py,sha256=s0NZnkW_gMH718DJbgez28z9WA231CyszUf1O_ojUiI,68
|
|
18
|
-
pyg90alarm/definitions/sensors.py,sha256=
|
|
18
|
+
pyg90alarm/definitions/sensors.py,sha256=2Liap0stTT5qNmvsbP_7UscA21IYXQcSAKQLLm7YfHQ,19921
|
|
19
19
|
pyg90alarm/entities/__init__.py,sha256=hHb6AOiC4Tz--rOWiiICMdLaZDs1Tf_xpWk_HeS_gO4,66
|
|
20
20
|
pyg90alarm/entities/device.py,sha256=QbsQyIq2wFLjIH389zyD3d0CyME_rpG_ciD3srAdqXQ,2772
|
|
21
21
|
pyg90alarm/entities/sensor.py,sha256=2d_671Kefx7wM6mWRQR79XyScEkkp3bk7HsA1Qnx75I,13354
|
|
22
|
-
pyg90alarm-1.
|
|
23
|
-
pyg90alarm-1.
|
|
24
|
-
pyg90alarm-1.
|
|
25
|
-
pyg90alarm-1.
|
|
26
|
-
pyg90alarm-1.
|
|
22
|
+
pyg90alarm-1.11.0.dist-info/LICENSE,sha256=f884inRbeNv-O-hbwz62Ro_1J8xiHRTnJ2cCx6A0WvU,1070
|
|
23
|
+
pyg90alarm-1.11.0.dist-info/METADATA,sha256=4TEvcDDcPQcq7E0bHPGZ83NWBxl56gDL7I98goAmHvU,7211
|
|
24
|
+
pyg90alarm-1.11.0.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
25
|
+
pyg90alarm-1.11.0.dist-info/top_level.txt,sha256=czHiGxYMyTk5QEDTDb0EpPiKqUMRa8zI4zx58Ii409M,11
|
|
26
|
+
pyg90alarm-1.11.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|