zigbee-herdsman-converters 25.28.0 → 25.30.0
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.
- package/CHANGELOG.md +42 -0
- package/dist/converters/toZigbee.d.ts.map +1 -1
- package/dist/converters/toZigbee.js +16 -16
- package/dist/converters/toZigbee.js.map +1 -1
- package/dist/devices/adeo.d.ts.map +1 -1
- package/dist/devices/adeo.js +7 -0
- package/dist/devices/adeo.js.map +1 -1
- package/dist/devices/bacchus.d.ts.map +1 -1
- package/dist/devices/bacchus.js +7 -9
- package/dist/devices/bacchus.js.map +1 -1
- package/dist/devices/bosch.d.ts.map +1 -1
- package/dist/devices/bosch.js +71 -140
- package/dist/devices/bosch.js.map +1 -1
- package/dist/devices/eurotronic.d.ts.map +1 -1
- package/dist/devices/eurotronic.js +1 -0
- package/dist/devices/eurotronic.js.map +1 -1
- package/dist/devices/index.d.ts.map +1 -1
- package/dist/devices/index.js +2 -0
- package/dist/devices/index.js.map +1 -1
- package/dist/devices/innr.d.ts.map +1 -1
- package/dist/devices/innr.js +1 -0
- package/dist/devices/innr.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +200 -0
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/multir.d.ts +3 -0
- package/dist/devices/multir.d.ts.map +1 -0
- package/dist/devices/multir.js +129 -0
- package/dist/devices/multir.js.map +1 -0
- package/dist/devices/philips.d.ts.map +1 -1
- package/dist/devices/philips.js +7 -0
- package/dist/devices/philips.js.map +1 -1
- package/dist/devices/sber.js +6 -6
- package/dist/devices/sber.js.map +1 -1
- package/dist/devices/schneider_electric.d.ts.map +1 -1
- package/dist/devices/schneider_electric.js +47 -12
- package/dist/devices/schneider_electric.js.map +1 -1
- package/dist/devices/sonoff.d.ts +2 -0
- package/dist/devices/sonoff.d.ts.map +1 -1
- package/dist/devices/sonoff.js +34 -0
- package/dist/devices/sonoff.js.map +1 -1
- package/dist/devices/third_reality.js +2 -2
- package/dist/devices/third_reality.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +42 -18
- package/dist/devices/tuya.js.map +1 -1
- package/dist/devices/yandex.d.ts.map +1 -1
- package/dist/devices/yandex.js +6 -18
- package/dist/devices/yandex.js.map +1 -1
- package/dist/devices/ysrsai.d.ts.map +1 -1
- package/dist/devices/ysrsai.js +4 -1
- package/dist/devices/ysrsai.js.map +1 -1
- package/dist/devices/zemismart.js +1 -1
- package/dist/devices/zemismart.js.map +1 -1
- package/dist/lib/bosch.d.ts +38 -5
- package/dist/lib/bosch.d.ts.map +1 -1
- package/dist/lib/bosch.js +651 -167
- package/dist/lib/bosch.js.map +1 -1
- package/dist/lib/lumi.js +3 -3
- package/dist/lib/lumi.js.map +1 -1
- package/dist/lib/modernExtend.d.ts +54 -1
- package/dist/lib/modernExtend.d.ts.map +1 -1
- package/dist/lib/modernExtend.js +97 -21
- package/dist/lib/modernExtend.js.map +1 -1
- package/dist/lib/philips.js +1 -1
- package/dist/lib/philips.js.map +1 -1
- package/dist/lib/tuya.js +8 -8
- package/dist/lib/tuya.js.map +1 -1
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +10 -0
- package/dist/lib/utils.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +3 -3
package/dist/devices/lumi.js
CHANGED
|
@@ -4687,5 +4687,205 @@ exports.definitions = [
|
|
|
4687
4687
|
description: "Pro track light",
|
|
4688
4688
|
extend: [m.light({ colorTemp: { range: [166, 370] } })],
|
|
4689
4689
|
},
|
|
4690
|
+
{
|
|
4691
|
+
zigbeeModel: ["lumi.airrtc.aeu005"],
|
|
4692
|
+
model: "WT-A03E",
|
|
4693
|
+
vendor: "Aqara",
|
|
4694
|
+
description: "Radiator thermostat W600",
|
|
4695
|
+
extend: [
|
|
4696
|
+
m.thermostat({
|
|
4697
|
+
setpoints: { occupiedHeatingSetpoint: { min: 5, max: 30, step: 0.5 } },
|
|
4698
|
+
localTemperatureCalibration: true,
|
|
4699
|
+
temperatureSetpointHold: true,
|
|
4700
|
+
temperatureSetpointHoldDuration: true,
|
|
4701
|
+
setpointsLimit: {
|
|
4702
|
+
maxHeatSetpointLimit: { min: 5, max: 30, step: 0.5 },
|
|
4703
|
+
minHeatSetpointLimit: { min: 5, max: 30, step: 0.5 },
|
|
4704
|
+
},
|
|
4705
|
+
}),
|
|
4706
|
+
m.enumLookup({
|
|
4707
|
+
name: "calibrate",
|
|
4708
|
+
lookup: { start: 1 },
|
|
4709
|
+
cluster: "manuSpecificLumi",
|
|
4710
|
+
attribute: { ID: 0x0270, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4711
|
+
description: "Calibrates the valve",
|
|
4712
|
+
access: "ALL",
|
|
4713
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4714
|
+
}),
|
|
4715
|
+
m.enumLookup({
|
|
4716
|
+
name: "calibrated",
|
|
4717
|
+
lookup: { not_ready: 0, ready: 1, error: 2, in_progress: 3 },
|
|
4718
|
+
cluster: "manuSpecificLumi",
|
|
4719
|
+
attribute: { ID: 0x027b, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4720
|
+
description: "State of calibrate",
|
|
4721
|
+
access: "STATE_GET",
|
|
4722
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4723
|
+
}),
|
|
4724
|
+
m.binary({
|
|
4725
|
+
name: "state",
|
|
4726
|
+
valueOn: ["ON", 1],
|
|
4727
|
+
valueOff: ["OFF", 0],
|
|
4728
|
+
cluster: "manuSpecificLumi",
|
|
4729
|
+
attribute: { ID: 0x0271, type: 0x20 },
|
|
4730
|
+
description: "Enabling termostat",
|
|
4731
|
+
access: "ALL",
|
|
4732
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4733
|
+
}),
|
|
4734
|
+
m.binary({
|
|
4735
|
+
name: "valve_detection",
|
|
4736
|
+
valueOn: ["ON", 1],
|
|
4737
|
+
valueOff: ["OFF", 0],
|
|
4738
|
+
cluster: "manuSpecificLumi",
|
|
4739
|
+
attribute: { ID: 0x0274, type: 0x20 },
|
|
4740
|
+
description: "Determines if temperature control abnormalities should be detected",
|
|
4741
|
+
access: "ALL",
|
|
4742
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4743
|
+
}),
|
|
4744
|
+
m.binary({
|
|
4745
|
+
name: "display_flip",
|
|
4746
|
+
valueOn: ["ON", 1],
|
|
4747
|
+
valueOff: ["OFF", 0],
|
|
4748
|
+
cluster: "manuSpecificLumi",
|
|
4749
|
+
attribute: { ID: 0x0330, type: 0x20 },
|
|
4750
|
+
description: "Display flip",
|
|
4751
|
+
access: "ALL",
|
|
4752
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4753
|
+
}),
|
|
4754
|
+
m.binary({
|
|
4755
|
+
name: "helper",
|
|
4756
|
+
valueOn: ["ON", 1],
|
|
4757
|
+
valueOff: ["OFF", 0],
|
|
4758
|
+
cluster: "manuSpecificLumi",
|
|
4759
|
+
attribute: { ID: 0x027d, type: 0x20 },
|
|
4760
|
+
description: "Schedule helper",
|
|
4761
|
+
access: "ALL",
|
|
4762
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4763
|
+
}),
|
|
4764
|
+
m.binary({
|
|
4765
|
+
name: "window_detection",
|
|
4766
|
+
valueOn: ["ON", 1],
|
|
4767
|
+
valueOff: ["OFF", 0],
|
|
4768
|
+
cluster: "manuSpecificLumi",
|
|
4769
|
+
attribute: { ID: 0x0273, type: 0x20 },
|
|
4770
|
+
description: "Enables/disables window detection on the device",
|
|
4771
|
+
access: "ALL",
|
|
4772
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4773
|
+
}),
|
|
4774
|
+
m.binary({
|
|
4775
|
+
name: "child_lock",
|
|
4776
|
+
valueOn: ["LOCK", 1],
|
|
4777
|
+
valueOff: ["UNLOCK", 0],
|
|
4778
|
+
cluster: "manuSpecificLumi",
|
|
4779
|
+
attribute: { ID: 0x0277, type: 0x20 },
|
|
4780
|
+
description: "Enables/disables physical input on the device",
|
|
4781
|
+
access: "ALL",
|
|
4782
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4783
|
+
}),
|
|
4784
|
+
m.numeric({
|
|
4785
|
+
name: "away_preset_temperature",
|
|
4786
|
+
valueMin: 0,
|
|
4787
|
+
valueMax: 30,
|
|
4788
|
+
valueStep: 0.5,
|
|
4789
|
+
scale: 100,
|
|
4790
|
+
unit: "°C",
|
|
4791
|
+
cluster: "manuSpecificLumi",
|
|
4792
|
+
attribute: { ID: 0x0279, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
|
|
4793
|
+
description: "Away preset temperature",
|
|
4794
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4795
|
+
}),
|
|
4796
|
+
m.identify(),
|
|
4797
|
+
],
|
|
4798
|
+
},
|
|
4799
|
+
{
|
|
4800
|
+
zigbeeModel: ["lumi.airrtc.aeu001"],
|
|
4801
|
+
model: "UT-A01E",
|
|
4802
|
+
vendor: "Aqara",
|
|
4803
|
+
description: "Floor heating thermostat W500",
|
|
4804
|
+
extend: [
|
|
4805
|
+
m.thermostat({
|
|
4806
|
+
setpoints: { occupiedHeatingSetpoint: { min: 5, max: 40, step: 0.5 } },
|
|
4807
|
+
localTemperatureCalibration: true,
|
|
4808
|
+
temperatureSetpointHold: true,
|
|
4809
|
+
temperatureSetpointHoldDuration: true,
|
|
4810
|
+
systemMode: ["off", "heat"],
|
|
4811
|
+
runningState: ["idle", "heat", "cool", "fan_only"],
|
|
4812
|
+
setpointsLimit: {
|
|
4813
|
+
maxHeatSetpointLimit: { min: 5, max: 30, step: 0.5 },
|
|
4814
|
+
minHeatSetpointLimit: { min: 5, max: 30, step: 0.5 },
|
|
4815
|
+
},
|
|
4816
|
+
}),
|
|
4817
|
+
m.enumLookup({
|
|
4818
|
+
name: "preset",
|
|
4819
|
+
lookup: { home: 1, away: 2, sleep: 3, vacation: 5, evening: 6, manual: 8 },
|
|
4820
|
+
cluster: "manuSpecificLumi",
|
|
4821
|
+
attribute: { ID: 0x0311, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4822
|
+
description: "Preset",
|
|
4823
|
+
access: "ALL",
|
|
4824
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4825
|
+
}),
|
|
4826
|
+
m.enumLookup({
|
|
4827
|
+
name: "state",
|
|
4828
|
+
lookup: { working: 0, idle: 2 },
|
|
4829
|
+
cluster: "manuSpecificLumi",
|
|
4830
|
+
attribute: { ID: 0x0310, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4831
|
+
description: "State",
|
|
4832
|
+
access: "STATE_GET",
|
|
4833
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4834
|
+
}),
|
|
4835
|
+
m.humidity(),
|
|
4836
|
+
m.enumLookup({
|
|
4837
|
+
name: "sensor_source",
|
|
4838
|
+
lookup: { internal: 0, ntc: 2 },
|
|
4839
|
+
cluster: "manuSpecificLumi",
|
|
4840
|
+
attribute: { ID: 0x0280, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4841
|
+
description: "Temperature sensor source",
|
|
4842
|
+
access: "ALL",
|
|
4843
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4844
|
+
}),
|
|
4845
|
+
m.enumLookup({
|
|
4846
|
+
name: "ntc_sensor_type",
|
|
4847
|
+
lookup: { ntc_10k: 10, ntc_50k: 50, ntc_100k: 100, unknown: 10000 },
|
|
4848
|
+
cluster: "manuSpecificLumi",
|
|
4849
|
+
attribute: { ID: 0x0315, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
|
|
4850
|
+
description: "NTC sensor type (k - KOhm)",
|
|
4851
|
+
access: "ALL",
|
|
4852
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4853
|
+
}),
|
|
4854
|
+
m.binary({
|
|
4855
|
+
name: "window_detection",
|
|
4856
|
+
valueOn: ["ON", 1],
|
|
4857
|
+
valueOff: ["OFF", 0],
|
|
4858
|
+
cluster: "manuSpecificLumi",
|
|
4859
|
+
attribute: { ID: 0x0273, type: 0x20 },
|
|
4860
|
+
description: "Enables/disables window detection on the device",
|
|
4861
|
+
access: "ALL",
|
|
4862
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4863
|
+
}),
|
|
4864
|
+
lumi.lumiModernExtend.lumiPowerOutageMemory(),
|
|
4865
|
+
m.binary({
|
|
4866
|
+
name: "child_lock",
|
|
4867
|
+
valueOn: ["LOCK", 1],
|
|
4868
|
+
valueOff: ["UNLOCK", 0],
|
|
4869
|
+
cluster: "manuSpecificLumi",
|
|
4870
|
+
attribute: { ID: 0x0277, type: 0x20 },
|
|
4871
|
+
description: "Enables/disables physical input on the device",
|
|
4872
|
+
access: "ALL",
|
|
4873
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4874
|
+
}),
|
|
4875
|
+
m.numeric({
|
|
4876
|
+
name: "hysteresis",
|
|
4877
|
+
valueMin: 0,
|
|
4878
|
+
valueMax: 3,
|
|
4879
|
+
valueStep: 0.5,
|
|
4880
|
+
scale: 10,
|
|
4881
|
+
unit: "°C",
|
|
4882
|
+
cluster: "manuSpecificLumi",
|
|
4883
|
+
attribute: { ID: 0x030c, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
|
|
4884
|
+
description: "Hysteresis",
|
|
4885
|
+
zigbeeCommandOptions: { manufacturerCode },
|
|
4886
|
+
}),
|
|
4887
|
+
m.identify(),
|
|
4888
|
+
],
|
|
4889
|
+
},
|
|
4690
4890
|
];
|
|
4691
4891
|
//# sourceMappingURL=lumi.js.map
|