z4d-certified-devices 3.169__py3-none-any.whl → 3.171__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.

Potentially problematic release.


This version of z4d-certified-devices might be problematic. Click here for more details.

@@ -17,6 +17,7 @@
17
17
  "0402": "",
18
18
  "0406": { "Attributes": {
19
19
  "0030": {"Enabled": true, "Name": "PhilipsSensitivity" , "DataType": "20", "ActionList": [ "check_store_value"] },
20
+ "0040": {"Enabled": true, "Name": "Philips0040" , "DataType": "20", "ActionList": [ "check_store_value"] },
20
21
  "0041": {"Enabled": true, "Name": "Philips0041" , "DataType": "23", "ActionList": [ "check_store_value"] },
21
22
  "0042": {"Enabled": true, "Name": "Philips0042" , "DataType": "23", "ActionList": [ "check_store_value"] },
22
23
  "0043": {"Enabled": true, "Name": "Philips0043" , "DataType": "23", "ActionList": [ "check_store_value"] },
@@ -14,16 +14,19 @@
14
14
  "ef00": "",
15
15
  "000a": "",
16
16
  "0019": "",
17
- "Type": "Power/Voltage/Ampere/Meter/PowerFactor"
17
+ "Type": "Power/Ampere/Meter/Temperature"
18
18
  },
19
19
  "f1": {
20
- "Type": "Power/Ampere/Meter/PowerFactor"
20
+ "Type": "Power/Ampere/Meter/PowerFactor/Voltage"
21
21
  },
22
22
  "f2": {
23
- "Type": "Power/Ampere/Meter/PowerFactor"
23
+ "Type": "Power/Ampere/Meter/PowerFactor/Voltage"
24
+ },
25
+ "f3": {
26
+ "Type": "Power/Ampere/Meter/PowerFactor/Voltage"
24
27
  }
25
28
  },
26
- "FakeEp": [ "f1", "f2" ],
29
+ "FakeEp": [ "f1", "f2", "f3" ],
27
30
  "Type": "",
28
31
  "ClusterToBind": [ "0019", "ef00" ],
29
32
  "ConfigureReporting": {},
@@ -33,30 +36,34 @@
33
36
  "TUYA_REGISTRATION": 19,
34
37
  "TWO_COMPLEMENT_VAL": "0x100000000",
35
38
  "TWO_COMPLEMENT_TST": "0x80000000",
36
- "TS0601_DP": {
39
+ "TS0601_DP": {
37
40
 
38
- "84": { "store_tuya_attribute": "AC_Frequency", "EvalExp": "(value)"},
39
- "85": { "store_tuya_attribute": "Temperature", "EvalExp": "(value)"},
41
+ "84": { "store_tuya_attribute": "AC_Frequency", "EvalExp": "(value)"},
42
+ "85": { "store_tuya_attribute": "Temperature", "EvalExp": "(value) / 10", "sensor_type": "temperature"},
40
43
  "86": { "store_tuya_attribute": "DeviceStatus", "EvalExp": "(value)"},
41
44
 
42
- "6a": { "store_tuya_attribute": "Voltage", "EvalExp": "(value/10)", "sensor_type": "voltage", "domo_round": 0},
43
-
44
- "65": { "store_tuya_attribute": "Meter A", "EvalExp": "(value*10)", "sensor_type": "cons_metering", "domo_round": 3 },
45
- "66": { "store_tuya_attribute": "Power Factor A", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2 },
46
-
47
- "6f": { "store_tuya_attribute": "Meter B", "EvalExp": "(value*10)", "sensor_type": "cons_metering", "domo_round": 3, "domo_ep": "f1"},
48
- "70": { "store_tuya_attribute": "Power Factor B", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2, "domo_ep": "f1" },
45
+ "01": { "store_tuya_attribute": "Energy A+B+C", "EvalExp": "(value * 10)", "sensor_type": "cons_metering", "domo_round": 3},
46
+ "09": { "store_tuya_attribute": "Power A+B+C", "EvalExp": "(value & 0x0000ffff)", "sensor_type": "power", "domo_round": 2 },
47
+ "83": { "store_tuya_attribute": "Current A+B+C", "EvalExp": "(value/1000)", "sensor_type": "current", "domo_round": 2 },
49
48
 
50
- "79": { "store_tuya_attribute": "Meter C", "EvalExp": "(value*10)", "sensor_type": "cons_metering", "domo_round": 3, "domo_ep": "f2"},
51
- "7a": { "store_tuya_attribute": "Power Factor C", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2, "domo_ep": "f2" },
49
+ "65": { "store_tuya_attribute": "Meter A", "EvalExp": "(value*10)", "sensor_type": "cons_metering", "domo_round": 3, "domo_ep": "f1" },
50
+ "66": { "store_tuya_attribute": "Power Factor A", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2 , "domo_ep": "f1"},
51
+ "06": [ { "store_tuya_attribute": "Voltage A", "EvalExp": "((value & 0xffff000000000000) >> 48) / 10", "sensor_type": "voltage", "domo_round": 2 , "domo_ep": "f1"},
52
+ { "store_tuya_attribute": "Current A", "EvalExp": "((value & 0x0000ffffffff0000) >> 24) / 100 ", "sensor_type": "current", "domo_round": 2 , "domo_ep": "f1"},
53
+ { "store_tuya_attribute": "Power A", "EvalExp": "((value & 0x0000000000000ffff) >> 16) / 100", "sensor_type": "power", "domo_round": 2 ,"domo_ep": "f1" }],
52
54
 
53
- "01": { "store_tuya_attribute": "Energy A+B+C", "EvalExp": "(value*10)"},
54
- "09": { "store_tuya_attribute": "Power A+B+C", "EvalExp": "(value)" },
55
- "83": { "store_tuya_attribute": "Current A+B+C", "EvalExp": "(value/1000)" },
55
+ "6f": { "store_tuya_attribute": "Meter B", "EvalExp": "(value * 10)", "sensor_type": "cons_metering", "domo_round": 3, "domo_ep": "f2"},
56
+ "70": { "store_tuya_attribute": "Power Factor B", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2, "domo_ep": "f2" },
57
+ "07": [ { "store_tuya_attribute": "Voltage B", "EvalExp": "((value & 0xffff000000000000) >> 48) / 10", "sensor_type": "voltage", "domo_round": 2, "domo_ep": "f2" },
58
+ { "store_tuya_attribute": "Current B", "EvalExp": "((value & 0x0000ffffffff0000) >> 24) / 100", "sensor_type": "current", "domo_round": 2, "domo_ep": "f2" },
59
+ { "store_tuya_attribute": "Power B", "EvalExp": "((value & 0x0000000000000ffff) >> 16) / 100", "sensor_type": "power", "domo_round": 2, "domo_ep": "f2" }],
60
+
56
61
 
57
- "72": { "store_tuya_attribute": "Power Direction A", "EvalExp": "(value)"},
58
- "73": { "store_tuya_attribute": "Power Direction B", "EvalExp": "(value)"},
59
- "74": { "store_tuya_attribute": "Update Frequency", "EvalExp": "(value)"}
62
+ "79": { "store_tuya_attribute": "Meter C", "EvalExp": "(value * 10)", "sensor_type": "cons_metering", "domo_round": 3, "domo_ep": "f3"},
63
+ "7a": { "store_tuya_attribute": "Power Factor C", "EvalExp": "(value)", "sensor_type": "power_factor", "domo_round": 2, "domo_ep": "f3" },
64
+ "08": [ { "store_tuya_attribute": "Voltage C", "EvalExp": "((value & 0xffff000000000000) >> 48) / 10", "sensor_type": "voltage", "domo_round": 2, "domo_ep": "f3" },
65
+ { "store_tuya_attribute": "Current C", "EvalExp": "((value & 0x0000ffffffff0000) >> 24) / 100", "sensor_type": "current", "domo_round": 2, "domo_ep": "f3" },
66
+ { "store_tuya_attribute": "Power C", "EvalExp": "((value & 0x0000000000000ffff) >> 16) / 100", "sensor_type": "power", "domo_round": 2, "domo_ep": "f3" }]
60
67
  },
61
68
  "Param": {
62
69
  }
@@ -1,3 +1,3 @@
1
1
  MAJOR_VERSION = 3
2
- MINOR_VERSION = 169
2
+ MINOR_VERSION = 171
3
3
  __version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: z4d-certified-devices
3
- Version: 3.169
3
+ Version: 3.171
4
4
  Summary: "Certified devices for Zigbee for Domoticz plugin"
5
5
  Home-page: https://github.com/zigbeefordomoticz/z4d-certified-devices
6
6
  Author: "Patrick Pichon"
@@ -1,5 +1,5 @@
1
1
  z4d_certified_devices/__init__.py,sha256=wdYFaADr5SrC5bXe1OBsrmpfJ7J6GN0H22o49UA4_Es,3533
2
- z4d_certified_devices/version.py,sha256=xPICn3WWuwd8JMA82bxEwqH3OYHgjd_cx4ubpeqsYoM,87
2
+ z4d_certified_devices/version.py,sha256=zda9REiYDdw3NRElKe50SyM-S14t59N8shgCaafuKXk,87
3
3
  z4d_certified_devices/Certified/README.md,sha256=1WnlKFf_NJon6zCJ0zfbBIOHES0L2YoE9EjzI2zhlDA,1415
4
4
  z4d_certified_devices/Certified/Adeo/LDSENK02F.json,sha256=eYpL0-1uta51sAzIpg7wIqUdl9AC16vYkrXZgW7AtA0,2067
5
5
  z4d_certified_devices/Certified/Adeo/LDSENK10.json,sha256=G_Z1dpeZv0kuJ9te9hsFOfdjQx-1FIFTf8F9gC5PZYA,843
@@ -346,7 +346,7 @@ z4d_certified_devices/Certified/Philips/RWL022.json,sha256=0tYimK1-r9q1Q2IOo3xSO
346
346
  z4d_certified_devices/Certified/Philips/SML001.json,sha256=IQJ5Ljwp_ck82Do_G3CI48yOmHNgzNTpJSZSnu4R4Q0,2312
347
347
  z4d_certified_devices/Certified/Philips/SML002.json,sha256=TfKMbybRNGyUE_1BeI-BtRDOgzIUIGyMCdG3oZWe0fE,2314
348
348
  z4d_certified_devices/Certified/Philips/SML003.json,sha256=tP5wQxUoRq7KzDTcAo_IrvSAWzOPHp8HeEVOfeqw19U,2311
349
- z4d_certified_devices/Certified/Philips/SML004.json,sha256=50Uxe4NfBO9oTzTgfY8tLabMx5lWqHYcrV-8T4sIeEg,3095
349
+ z4d_certified_devices/Certified/Philips/SML004.json,sha256=tkFqQdBszkNKIoiIjwgR6GKk-N9NWc97Dm7UMd92lok,3219
350
350
  z4d_certified_devices/Certified/Profalux/BSO-Profalux.json,sha256=DScgb0dlEcBtpxfZQD9pL6RVHk1-PD9OKp5WrJjfJXQ,1152
351
351
  z4d_certified_devices/Certified/Profalux/MAI-ZTS.json,sha256=guAhFaPsvKY0efD2lt_ztO0B04dUli1Pg3Ao4U2ZMS4,1123
352
352
  z4d_certified_devices/Certified/Profalux/MOT-C1Z06C.json,sha256=7sXOZJfhe3jxfWGZn_71RYRGsNGWfSHNXmbVskgWIhQ,1012
@@ -464,7 +464,7 @@ z4d_certified_devices/Certified/Tuya/TS0601-Energy.json,sha256=WRaAlE7-RCPErsDAt
464
464
  z4d_certified_devices/Certified/Tuya/TS0601-Human-Presence.json,sha256=CfEexIfqC2Ec7klmtZ2f_21DeG8yoAgslV-HrTtZ640,1722
465
465
  z4d_certified_devices/Certified/Tuya/TS0601-Irrigation-Valve.json,sha256=7up6OBllBahRWDZb37aSFYNYjxBjpGJmlZBNAnjuEAU,1699
466
466
  z4d_certified_devices/Certified/Tuya/TS0601-PC311-Z-TY.json,sha256=EpmJO1GWOhUcyHaj-OJ1hDPcgARghuNeuuuqnt8RQNE,3079
467
- z4d_certified_devices/Certified/Tuya/TS0601-PC321-Z-TY.json,sha256=CrZQS71ksxAZNGWKuOLgFU_w3f1giCnHX1lp8LvVL_M,2774
467
+ z4d_certified_devices/Certified/Tuya/TS0601-PC321-Z-TY.json,sha256=eMkSwJwi35bo0fouDKYMqgXWVNx7t0RDHoCiBAeoiY4,4294
468
468
  z4d_certified_devices/Certified/Tuya/TS0601-PJ-1203A.json,sha256=Rvm3twJ0v2XirLbXeiYxCYw0iXS8hH0XeGM_yq5fcts,2828
469
469
  z4d_certified_devices/Certified/Tuya/TS0601-Parkside-Watering-Timer.json,sha256=LaO4XUUuiKp1p4mgCwuEBrgXyUt0rWa3HUTfGLKGHY8,987
470
470
  z4d_certified_devices/Certified/Tuya/TS0601-Ronelabs-SEM101.json,sha256=l-hvhs8MfGEXdJc5OWieDTdK7VSO82AhEGq3UR5tWR0,1695
@@ -534,9 +534,9 @@ z4d_certified_devices/Certified/eWeLink/SA-003-Zigbee.json,sha256=PHqliTZ0_8a7F_
534
534
  z4d_certified_devices/Certified/eWeLink/SA-030-1.json,sha256=PHqliTZ0_8a7F_hbRVIVQ9A-sJipGrBD1jzhgkKJRvw,833
535
535
  z4d_certified_devices/Certified/eWeLink/SWITCH-ZR02.json,sha256=poSWAakR1iWJyvCXx5vgjYga38l6QYZM5C0MSk5vqas,835
536
536
  z4d_certified_devices/Certified/eWeLink/SWITCH-ZR03-1.json,sha256=poSWAakR1iWJyvCXx5vgjYga38l6QYZM5C0MSk5vqas,835
537
- z4d_certified_devices-3.169.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
538
- z4d_certified_devices-3.169.dist-info/METADATA,sha256=S9YfUh6PCmjiC-Y-XVPxRzq9d5o7z-ket8IcZsfobuI,36878
539
- z4d_certified_devices-3.169.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
540
- z4d_certified_devices-3.169.dist-info/top_level.txt,sha256=dZpL9ibb5CtTAY-pS-wGk-1jh9d-q04ogJ-Dfskashk,22
541
- z4d_certified_devices-3.169.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
542
- z4d_certified_devices-3.169.dist-info/RECORD,,
537
+ z4d_certified_devices-3.171.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
538
+ z4d_certified_devices-3.171.dist-info/METADATA,sha256=QIOGBHOYUPucVOL77fN7pwr2qfWRMY_rjsMbFnrzxlI,36878
539
+ z4d_certified_devices-3.171.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
540
+ z4d_certified_devices-3.171.dist-info/top_level.txt,sha256=dZpL9ibb5CtTAY-pS-wGk-1jh9d-q04ogJ-Dfskashk,22
541
+ z4d_certified_devices-3.171.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
542
+ z4d_certified_devices-3.171.dist-info/RECORD,,