zigbee-herdsman 10.0.1 → 10.0.3
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 +23 -0
- package/dist/adapter/serialPort.d.ts.map +1 -1
- package/dist/adapter/serialPort.js +7 -0
- package/dist/adapter/serialPort.js.map +1 -1
- package/dist/adapter/z-stack/adapter/manager.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/manager.js +11 -1
- package/dist/adapter/z-stack/adapter/manager.js.map +1 -1
- package/dist/controller/controller.d.ts.map +1 -1
- package/dist/controller/controller.js +6 -1
- package/dist/controller/controller.js.map +1 -1
- package/dist/controller/model/device.d.ts +1 -1
- package/dist/controller/model/device.d.ts.map +1 -1
- package/dist/controller/model/device.js +70 -50
- package/dist/controller/model/device.js.map +1 -1
- package/dist/controller/model/endpoint.d.ts +2 -1
- package/dist/controller/model/endpoint.d.ts.map +1 -1
- package/dist/controller/model/endpoint.js.map +1 -1
- package/dist/zspec/zcl/buffaloZcl.d.ts +3 -3
- package/dist/zspec/zcl/buffaloZcl.d.ts.map +1 -1
- package/dist/zspec/zcl/buffaloZcl.js.map +1 -1
- package/dist/zspec/zcl/definition/cluster.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/cluster.js +0 -721
- package/dist/zspec/zcl/definition/cluster.js.map +1 -1
- package/dist/zspec/zcl/definition/clusters-types.d.ts +25 -415
- package/dist/zspec/zcl/definition/clusters-types.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/enums.d.ts +0 -1
- package/dist/zspec/zcl/definition/enums.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/enums.js +0 -1
- package/dist/zspec/zcl/definition/enums.js.map +1 -1
- package/dist/zspec/zcl/definition/foundation.d.ts +306 -7
- package/dist/zspec/zcl/definition/foundation.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/foundation.js +552 -207
- package/dist/zspec/zcl/definition/foundation.js.map +1 -1
- package/dist/zspec/zcl/definition/status.d.ts +21 -10
- package/dist/zspec/zcl/definition/status.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/status.js +11 -0
- package/dist/zspec/zcl/definition/status.js.map +1 -1
- package/dist/zspec/zcl/definition/tstype.d.ts +1 -4
- package/dist/zspec/zcl/definition/tstype.d.ts.map +1 -1
- package/dist/zspec/zcl/utils.d.ts +4 -4
- package/dist/zspec/zcl/utils.d.ts.map +1 -1
- package/dist/zspec/zcl/utils.js +54 -104
- package/dist/zspec/zcl/utils.js.map +1 -1
- package/dist/zspec/zcl/zclFrame.d.ts +4 -4
- package/dist/zspec/zcl/zclFrame.d.ts.map +1 -1
- package/dist/zspec/zcl/zclFrame.js +11 -95
- package/dist/zspec/zcl/zclFrame.js.map +1 -1
- package/dist/zspec/zcl/zclStatusError.d.ts +1 -1
- package/dist/zspec/zcl/zclStatusError.d.ts.map +1 -1
- package/dist/zspec/zcl/zclStatusError.js +2 -2
- package/dist/zspec/zcl/zclStatusError.js.map +1 -1
- package/package.json +1 -1
|
@@ -30,16 +30,6 @@ exports.Clusters = {
|
|
|
30
30
|
alarmMask: { name: "alarmMask", ID: 0x0013, type: enums_1.DataType.BITMAP8, write: true, default: 0 },
|
|
31
31
|
disableLocalConfig: { name: "disableLocalConfig", ID: 0x0014, type: enums_1.DataType.BITMAP8, write: true, default: 0 },
|
|
32
32
|
swBuildId: { name: "swBuildId", ID: 0x4000, type: enums_1.DataType.CHAR_STR, default: "", maxLen: 16 },
|
|
33
|
-
// custom
|
|
34
|
-
schneiderMeterRadioPower: {
|
|
35
|
-
name: "schneiderMeterRadioPower",
|
|
36
|
-
ID: 0xe200,
|
|
37
|
-
type: enums_1.DataType.INT8,
|
|
38
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
39
|
-
write: true,
|
|
40
|
-
min: -128,
|
|
41
|
-
max: 127,
|
|
42
|
-
},
|
|
43
33
|
},
|
|
44
34
|
commands: {
|
|
45
35
|
resetFactDefault: { name: "resetFactDefault", ID: 0x00, parameters: [] },
|
|
@@ -3734,30 +3724,6 @@ exports.Clusters = {
|
|
|
3734
3724
|
write: true,
|
|
3735
3725
|
max: 0xffff,
|
|
3736
3726
|
},
|
|
3737
|
-
SinopeOccupancy: {
|
|
3738
|
-
name: "SinopeOccupancy",
|
|
3739
|
-
ID: 0x0400,
|
|
3740
|
-
type: enums_1.DataType.ENUM8,
|
|
3741
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SINOPE_TECHNOLOGIES,
|
|
3742
|
-
write: true,
|
|
3743
|
-
max: 0xff,
|
|
3744
|
-
},
|
|
3745
|
-
SinopeMainCycleOutput: {
|
|
3746
|
-
name: "SinopeMainCycleOutput",
|
|
3747
|
-
ID: 0x0401,
|
|
3748
|
-
type: enums_1.DataType.UINT16,
|
|
3749
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SINOPE_TECHNOLOGIES,
|
|
3750
|
-
write: true,
|
|
3751
|
-
max: 0xffff,
|
|
3752
|
-
},
|
|
3753
|
-
SinopeAuxCycleOutput: {
|
|
3754
|
-
name: "SinopeAuxCycleOutput",
|
|
3755
|
-
ID: 0x0404,
|
|
3756
|
-
type: enums_1.DataType.UINT16,
|
|
3757
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SINOPE_TECHNOLOGIES,
|
|
3758
|
-
write: true,
|
|
3759
|
-
max: 0xffff,
|
|
3760
|
-
},
|
|
3761
3727
|
viessmannWindowOpenInternal: {
|
|
3762
3728
|
name: "viessmannWindowOpenInternal",
|
|
3763
3729
|
ID: 0x4000,
|
|
@@ -3766,14 +3732,6 @@ exports.Clusters = {
|
|
|
3766
3732
|
write: true,
|
|
3767
3733
|
max: 0xff,
|
|
3768
3734
|
},
|
|
3769
|
-
danfossWindowOpenInternal: {
|
|
3770
|
-
name: "danfossWindowOpenInternal",
|
|
3771
|
-
ID: 0x4000,
|
|
3772
|
-
type: enums_1.DataType.ENUM8,
|
|
3773
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3774
|
-
write: true,
|
|
3775
|
-
max: 0xff,
|
|
3776
|
-
},
|
|
3777
3735
|
StelproOutdoorTemp: { name: "StelproOutdoorTemp", ID: 0x4001, type: enums_1.DataType.INT16, write: true, min: -32768, max: 32767 },
|
|
3778
3736
|
viessmannWindowOpenForce: {
|
|
3779
3737
|
name: "viessmannWindowOpenForce",
|
|
@@ -3782,29 +3740,6 @@ exports.Clusters = {
|
|
|
3782
3740
|
manufacturerCode: manufacturerCode_1.ManufacturerCode.VIESSMANN_ELEKTRONIK_GMBH,
|
|
3783
3741
|
write: true,
|
|
3784
3742
|
},
|
|
3785
|
-
danfossWindowOpenExternal: {
|
|
3786
|
-
name: "danfossWindowOpenExternal",
|
|
3787
|
-
ID: 0x4003,
|
|
3788
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3789
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3790
|
-
write: true,
|
|
3791
|
-
},
|
|
3792
|
-
danfossDayOfWeek: {
|
|
3793
|
-
name: "danfossDayOfWeek",
|
|
3794
|
-
ID: 0x4010,
|
|
3795
|
-
type: enums_1.DataType.ENUM8,
|
|
3796
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3797
|
-
write: true,
|
|
3798
|
-
max: 0xff,
|
|
3799
|
-
},
|
|
3800
|
-
danfossTriggerTime: {
|
|
3801
|
-
name: "danfossTriggerTime",
|
|
3802
|
-
ID: 0x4011,
|
|
3803
|
-
type: enums_1.DataType.UINT16,
|
|
3804
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3805
|
-
write: true,
|
|
3806
|
-
max: 0xffff,
|
|
3807
|
-
},
|
|
3808
3743
|
viessmannAssemblyMode: {
|
|
3809
3744
|
name: "viessmannAssemblyMode",
|
|
3810
3745
|
ID: 0x4012,
|
|
@@ -3812,216 +3747,7 @@ exports.Clusters = {
|
|
|
3812
3747
|
manufacturerCode: manufacturerCode_1.ManufacturerCode.VIESSMANN_ELEKTRONIK_GMBH,
|
|
3813
3748
|
write: true,
|
|
3814
3749
|
},
|
|
3815
|
-
danfossMountedModeActive: {
|
|
3816
|
-
name: "danfossMountedModeActive",
|
|
3817
|
-
ID: 0x4012,
|
|
3818
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3819
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3820
|
-
write: true,
|
|
3821
|
-
},
|
|
3822
|
-
danfossMountedModeControl: {
|
|
3823
|
-
name: "danfossMountedModeControl",
|
|
3824
|
-
ID: 0x4013,
|
|
3825
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3826
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3827
|
-
write: true,
|
|
3828
|
-
},
|
|
3829
|
-
danfossThermostatOrientation: {
|
|
3830
|
-
name: "danfossThermostatOrientation",
|
|
3831
|
-
ID: 0x4014,
|
|
3832
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3833
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3834
|
-
write: true,
|
|
3835
|
-
},
|
|
3836
|
-
danfossExternalMeasuredRoomSensor: {
|
|
3837
|
-
name: "danfossExternalMeasuredRoomSensor",
|
|
3838
|
-
ID: 0x4015,
|
|
3839
|
-
type: enums_1.DataType.INT16,
|
|
3840
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3841
|
-
write: true,
|
|
3842
|
-
min: -32768,
|
|
3843
|
-
max: 32767,
|
|
3844
|
-
},
|
|
3845
|
-
danfossRadiatorCovered: {
|
|
3846
|
-
name: "danfossRadiatorCovered",
|
|
3847
|
-
ID: 0x4016,
|
|
3848
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3849
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3850
|
-
write: true,
|
|
3851
|
-
},
|
|
3852
3750
|
StelproSystemMode: { name: "StelproSystemMode", ID: 0x401c, type: enums_1.DataType.ENUM8, write: true, max: 0xff },
|
|
3853
|
-
danfossAlgorithmScaleFactor: {
|
|
3854
|
-
name: "danfossAlgorithmScaleFactor",
|
|
3855
|
-
ID: 0x4020,
|
|
3856
|
-
type: enums_1.DataType.UINT8,
|
|
3857
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3858
|
-
write: true,
|
|
3859
|
-
max: 0xff,
|
|
3860
|
-
},
|
|
3861
|
-
danfossHeatAvailable: {
|
|
3862
|
-
name: "danfossHeatAvailable",
|
|
3863
|
-
ID: 0x4030,
|
|
3864
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3865
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3866
|
-
write: true,
|
|
3867
|
-
},
|
|
3868
|
-
danfossHeatRequired: {
|
|
3869
|
-
name: "danfossHeatRequired",
|
|
3870
|
-
ID: 0x4031,
|
|
3871
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3872
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3873
|
-
write: true,
|
|
3874
|
-
},
|
|
3875
|
-
danfossLoadBalancingEnable: {
|
|
3876
|
-
name: "danfossLoadBalancingEnable",
|
|
3877
|
-
ID: 0x4032,
|
|
3878
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3879
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3880
|
-
write: true,
|
|
3881
|
-
},
|
|
3882
|
-
danfossLoadRoomMean: {
|
|
3883
|
-
name: "danfossLoadRoomMean",
|
|
3884
|
-
ID: 0x4040,
|
|
3885
|
-
type: enums_1.DataType.INT16,
|
|
3886
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3887
|
-
write: true,
|
|
3888
|
-
min: -32768,
|
|
3889
|
-
max: 32767,
|
|
3890
|
-
},
|
|
3891
|
-
danfossLoadEstimate: {
|
|
3892
|
-
name: "danfossLoadEstimate",
|
|
3893
|
-
ID: 0x404a,
|
|
3894
|
-
type: enums_1.DataType.INT16,
|
|
3895
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3896
|
-
write: true,
|
|
3897
|
-
min: -32768,
|
|
3898
|
-
max: 32767,
|
|
3899
|
-
},
|
|
3900
|
-
danfossRegulationSetpointOffset: {
|
|
3901
|
-
name: "danfossRegulationSetpointOffset",
|
|
3902
|
-
ID: 0x404b,
|
|
3903
|
-
type: enums_1.DataType.INT8,
|
|
3904
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3905
|
-
write: true,
|
|
3906
|
-
min: -128,
|
|
3907
|
-
max: 127,
|
|
3908
|
-
},
|
|
3909
|
-
danfossAdaptionRunControl: {
|
|
3910
|
-
name: "danfossAdaptionRunControl",
|
|
3911
|
-
ID: 0x404c,
|
|
3912
|
-
type: enums_1.DataType.ENUM8,
|
|
3913
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3914
|
-
write: true,
|
|
3915
|
-
max: 0xff,
|
|
3916
|
-
},
|
|
3917
|
-
danfossAdaptionRunStatus: {
|
|
3918
|
-
name: "danfossAdaptionRunStatus",
|
|
3919
|
-
ID: 0x404d,
|
|
3920
|
-
type: enums_1.DataType.BITMAP8,
|
|
3921
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3922
|
-
write: true,
|
|
3923
|
-
},
|
|
3924
|
-
danfossAdaptionRunSettings: {
|
|
3925
|
-
name: "danfossAdaptionRunSettings",
|
|
3926
|
-
ID: 0x404e,
|
|
3927
|
-
type: enums_1.DataType.BITMAP8,
|
|
3928
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3929
|
-
write: true,
|
|
3930
|
-
},
|
|
3931
|
-
danfossPreheatStatus: {
|
|
3932
|
-
name: "danfossPreheatStatus",
|
|
3933
|
-
ID: 0x404f,
|
|
3934
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3935
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3936
|
-
write: true,
|
|
3937
|
-
},
|
|
3938
|
-
danfossPreheatTime: {
|
|
3939
|
-
name: "danfossPreheatTime",
|
|
3940
|
-
ID: 0x4050,
|
|
3941
|
-
type: enums_1.DataType.UINT32,
|
|
3942
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3943
|
-
write: true,
|
|
3944
|
-
},
|
|
3945
|
-
danfossWindowOpenFeatureEnable: {
|
|
3946
|
-
name: "danfossWindowOpenFeatureEnable",
|
|
3947
|
-
ID: 0x4051,
|
|
3948
|
-
type: enums_1.DataType.BOOLEAN,
|
|
3949
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3950
|
-
write: true,
|
|
3951
|
-
},
|
|
3952
|
-
danfossRoomStatusCode: {
|
|
3953
|
-
name: "danfossRoomStatusCode",
|
|
3954
|
-
ID: 0x4100,
|
|
3955
|
-
type: enums_1.DataType.BITMAP16,
|
|
3956
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3957
|
-
write: true,
|
|
3958
|
-
},
|
|
3959
|
-
danfossOutputStatus: {
|
|
3960
|
-
name: "danfossOutputStatus",
|
|
3961
|
-
ID: 0x4110,
|
|
3962
|
-
type: enums_1.DataType.ENUM8,
|
|
3963
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3964
|
-
write: true,
|
|
3965
|
-
max: 0xff,
|
|
3966
|
-
},
|
|
3967
|
-
danfossRoomFloorSensorMode: {
|
|
3968
|
-
name: "danfossRoomFloorSensorMode",
|
|
3969
|
-
ID: 0x4120,
|
|
3970
|
-
type: enums_1.DataType.ENUM8,
|
|
3971
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3972
|
-
write: true,
|
|
3973
|
-
max: 0xff,
|
|
3974
|
-
},
|
|
3975
|
-
danfossFloorMinSetpoint: {
|
|
3976
|
-
name: "danfossFloorMinSetpoint",
|
|
3977
|
-
ID: 0x4121,
|
|
3978
|
-
type: enums_1.DataType.INT16,
|
|
3979
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3980
|
-
write: true,
|
|
3981
|
-
min: -32768,
|
|
3982
|
-
max: 32767,
|
|
3983
|
-
},
|
|
3984
|
-
danfossFloorMaxSetpoint: {
|
|
3985
|
-
name: "danfossFloorMaxSetpoint",
|
|
3986
|
-
ID: 0x4122,
|
|
3987
|
-
type: enums_1.DataType.INT16,
|
|
3988
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3989
|
-
write: true,
|
|
3990
|
-
min: -32768,
|
|
3991
|
-
max: 32767,
|
|
3992
|
-
},
|
|
3993
|
-
danfossScheduleTypeUsed: {
|
|
3994
|
-
name: "danfossScheduleTypeUsed",
|
|
3995
|
-
ID: 0x4130,
|
|
3996
|
-
type: enums_1.DataType.ENUM8,
|
|
3997
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
3998
|
-
write: true,
|
|
3999
|
-
max: 0xff,
|
|
4000
|
-
},
|
|
4001
|
-
danfossIcon2PreHeat: {
|
|
4002
|
-
name: "danfossIcon2PreHeat",
|
|
4003
|
-
ID: 0x4131,
|
|
4004
|
-
type: enums_1.DataType.ENUM8,
|
|
4005
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
4006
|
-
write: true,
|
|
4007
|
-
max: 0xff,
|
|
4008
|
-
},
|
|
4009
|
-
danfossIcon2PreHeatStatus: {
|
|
4010
|
-
name: "danfossIcon2PreHeatStatus",
|
|
4011
|
-
ID: 0x414f,
|
|
4012
|
-
type: enums_1.DataType.ENUM8,
|
|
4013
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
4014
|
-
write: true,
|
|
4015
|
-
max: 0xff,
|
|
4016
|
-
},
|
|
4017
|
-
schneiderWiserSpecific: {
|
|
4018
|
-
name: "schneiderWiserSpecific",
|
|
4019
|
-
ID: 0xe110,
|
|
4020
|
-
type: enums_1.DataType.ENUM8,
|
|
4021
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
4022
|
-
write: true,
|
|
4023
|
-
max: 0xff,
|
|
4024
|
-
},
|
|
4025
3751
|
},
|
|
4026
3752
|
commands: {
|
|
4027
3753
|
setpointRaiseLower: {
|
|
@@ -4055,45 +3781,7 @@ exports.Clusters = {
|
|
|
4055
3781
|
clearWeeklySchedule: { name: "clearWeeklySchedule", ID: 0x03, parameters: [] },
|
|
4056
3782
|
getRelayStatusLog: { name: "getRelayStatusLog", ID: 0x04, response: 1, parameters: [] },
|
|
4057
3783
|
// custom
|
|
4058
|
-
danfossSetpointCommand: {
|
|
4059
|
-
name: "danfossSetpointCommand",
|
|
4060
|
-
ID: 0x40,
|
|
4061
|
-
parameters: [
|
|
4062
|
-
{ name: "setpointType", type: enums_1.DataType.ENUM8, max: 0xff },
|
|
4063
|
-
{ name: "setpoint", type: enums_1.DataType.INT16, min: -32768, max: 32767 },
|
|
4064
|
-
],
|
|
4065
|
-
},
|
|
4066
|
-
schneiderWiserThermostatBoost: {
|
|
4067
|
-
name: "schneiderWiserThermostatBoost",
|
|
4068
|
-
ID: 0x80,
|
|
4069
|
-
parameters: [
|
|
4070
|
-
{ name: "command", type: enums_1.DataType.ENUM8, max: 0xff },
|
|
4071
|
-
{ name: "enable", type: enums_1.DataType.ENUM8, max: 0xff },
|
|
4072
|
-
{ name: "temperature", type: enums_1.DataType.UINT16, max: 0xffff },
|
|
4073
|
-
{ name: "duration", type: enums_1.DataType.UINT16, max: 0xffff },
|
|
4074
|
-
],
|
|
4075
|
-
},
|
|
4076
3784
|
plugwiseCalibrateValve: { name: "plugwiseCalibrateValve", ID: 0xa0, parameters: [] },
|
|
4077
|
-
wiserSmartSetSetpoint: {
|
|
4078
|
-
name: "wiserSmartSetSetpoint",
|
|
4079
|
-
ID: 0xe0,
|
|
4080
|
-
parameters: [
|
|
4081
|
-
{ name: "operatingmode", type: enums_1.DataType.UINT8, max: 0xff },
|
|
4082
|
-
{ name: "zonemode", type: enums_1.DataType.UINT8, max: 0xff },
|
|
4083
|
-
{ name: "setpoint", type: enums_1.DataType.INT16, min: -32768, max: 32767 },
|
|
4084
|
-
{ name: "reserved", type: enums_1.DataType.UINT8, max: 0xff },
|
|
4085
|
-
],
|
|
4086
|
-
},
|
|
4087
|
-
wiserSmartSetFipMode: {
|
|
4088
|
-
name: "wiserSmartSetFipMode",
|
|
4089
|
-
ID: 0xe1,
|
|
4090
|
-
parameters: [
|
|
4091
|
-
{ name: "zonemode", type: enums_1.DataType.UINT8, max: 0xff },
|
|
4092
|
-
{ name: "fipmode", type: enums_1.DataType.ENUM8, max: 0xff },
|
|
4093
|
-
{ name: "reserved", type: enums_1.DataType.UINT8, max: 0xff },
|
|
4094
|
-
],
|
|
4095
|
-
},
|
|
4096
|
-
wiserSmartCalibrateValve: { name: "wiserSmartCalibrateValve", ID: 0xe2, parameters: [] },
|
|
4097
3785
|
},
|
|
4098
3786
|
commandsResponse: {
|
|
4099
3787
|
getWeeklyScheduleRsp: {
|
|
@@ -4171,15 +3859,6 @@ exports.Clusters = {
|
|
|
4171
3859
|
tempDisplayMode: { name: "tempDisplayMode", ID: 0x0000, type: enums_1.DataType.ENUM8, write: true, required: true, max: 0x01, default: 0 },
|
|
4172
3860
|
keypadLockout: { name: "keypadLockout", ID: 0x0001, type: enums_1.DataType.ENUM8, write: true, required: true, max: 0x05, default: 0 },
|
|
4173
3861
|
programmingVisibility: { name: "programmingVisibility", ID: 0x0002, type: enums_1.DataType.ENUM8, write: true, max: 0x01, default: 0 },
|
|
4174
|
-
// custom
|
|
4175
|
-
danfossViewingDirection: {
|
|
4176
|
-
name: "danfossViewingDirection",
|
|
4177
|
-
ID: 0x4000,
|
|
4178
|
-
type: enums_1.DataType.ENUM8,
|
|
4179
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
4180
|
-
write: true,
|
|
4181
|
-
max: 0xff,
|
|
4182
|
-
},
|
|
4183
3862
|
},
|
|
4184
3863
|
commands: {},
|
|
4185
3864
|
commandsResponse: {},
|
|
@@ -4681,15 +4360,6 @@ exports.Clusters = {
|
|
|
4681
4360
|
max: 0xfffffe,
|
|
4682
4361
|
default: 0xffffff,
|
|
4683
4362
|
},
|
|
4684
|
-
// custom
|
|
4685
|
-
wiserControlMode: {
|
|
4686
|
-
name: "wiserControlMode",
|
|
4687
|
-
ID: 0xe000,
|
|
4688
|
-
type: enums_1.DataType.ENUM8,
|
|
4689
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
4690
|
-
write: true,
|
|
4691
|
-
max: 0xff,
|
|
4692
|
-
},
|
|
4693
4363
|
},
|
|
4694
4364
|
commands: {},
|
|
4695
4365
|
commandsResponse: {},
|
|
@@ -6397,320 +6067,6 @@ exports.Clusters = {
|
|
|
6397
6067
|
// TODO: Supply Control Attribute Set (0x0b00..)
|
|
6398
6068
|
// TODO: Alternative Historical Consumption Attribute Set (0x0c00..)
|
|
6399
6069
|
// TODO: Noti fication At tribute Set (0x0000.., client=true)
|
|
6400
|
-
// custom
|
|
6401
|
-
develcoPulseConfiguration: {
|
|
6402
|
-
name: "develcoPulseConfiguration",
|
|
6403
|
-
ID: 0x0300,
|
|
6404
|
-
type: enums_1.DataType.UINT16,
|
|
6405
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DEVELCO,
|
|
6406
|
-
write: true,
|
|
6407
|
-
max: 0xffff,
|
|
6408
|
-
},
|
|
6409
|
-
develcoCurrentSummation: {
|
|
6410
|
-
name: "develcoCurrentSummation",
|
|
6411
|
-
ID: 0x0301,
|
|
6412
|
-
type: enums_1.DataType.UINT48,
|
|
6413
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DEVELCO,
|
|
6414
|
-
write: true,
|
|
6415
|
-
max: 0xffffffffffff,
|
|
6416
|
-
},
|
|
6417
|
-
develcoInterfaceMode: {
|
|
6418
|
-
name: "develcoInterfaceMode",
|
|
6419
|
-
ID: 0x0302,
|
|
6420
|
-
type: enums_1.DataType.ENUM16,
|
|
6421
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DEVELCO,
|
|
6422
|
-
write: true,
|
|
6423
|
-
max: 0xffff,
|
|
6424
|
-
},
|
|
6425
|
-
owonL1PhasePower: {
|
|
6426
|
-
name: "owonL1PhasePower",
|
|
6427
|
-
ID: 0x2000,
|
|
6428
|
-
type: enums_1.DataType.INT24,
|
|
6429
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6430
|
-
write: true,
|
|
6431
|
-
min: -8388608,
|
|
6432
|
-
max: 8388607,
|
|
6433
|
-
},
|
|
6434
|
-
owonL2PhasePower: {
|
|
6435
|
-
name: "owonL2PhasePower",
|
|
6436
|
-
ID: 0x2001,
|
|
6437
|
-
type: enums_1.DataType.INT24,
|
|
6438
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6439
|
-
write: true,
|
|
6440
|
-
min: -8388608,
|
|
6441
|
-
max: 8388607,
|
|
6442
|
-
},
|
|
6443
|
-
owonL3PhasePower: {
|
|
6444
|
-
name: "owonL3PhasePower",
|
|
6445
|
-
ID: 0x2002,
|
|
6446
|
-
type: enums_1.DataType.INT24,
|
|
6447
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6448
|
-
write: true,
|
|
6449
|
-
min: -8388608,
|
|
6450
|
-
max: 8388607,
|
|
6451
|
-
},
|
|
6452
|
-
owonL1PhaseReactivePower: {
|
|
6453
|
-
name: "owonL1PhaseReactivePower",
|
|
6454
|
-
ID: 0x2100,
|
|
6455
|
-
type: enums_1.DataType.INT24,
|
|
6456
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6457
|
-
write: true,
|
|
6458
|
-
min: -8388608,
|
|
6459
|
-
max: 8388607,
|
|
6460
|
-
},
|
|
6461
|
-
owonL2PhaseReactivePower: {
|
|
6462
|
-
name: "owonL2PhaseReactivePower",
|
|
6463
|
-
ID: 0x2101,
|
|
6464
|
-
type: enums_1.DataType.INT24,
|
|
6465
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6466
|
-
write: true,
|
|
6467
|
-
min: -8388608,
|
|
6468
|
-
max: 8388607,
|
|
6469
|
-
},
|
|
6470
|
-
owonL3PhaseReactivePower: {
|
|
6471
|
-
name: "owonL3PhaseReactivePower",
|
|
6472
|
-
ID: 0x2102,
|
|
6473
|
-
type: enums_1.DataType.INT24,
|
|
6474
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6475
|
-
write: true,
|
|
6476
|
-
min: -8388608,
|
|
6477
|
-
max: 8388607,
|
|
6478
|
-
},
|
|
6479
|
-
owonReactivePowerSum: {
|
|
6480
|
-
name: "owonReactivePowerSum",
|
|
6481
|
-
ID: 0x2103,
|
|
6482
|
-
type: enums_1.DataType.INT24,
|
|
6483
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6484
|
-
write: true,
|
|
6485
|
-
min: -8388608,
|
|
6486
|
-
max: 8388607,
|
|
6487
|
-
},
|
|
6488
|
-
owonL1PhaseVoltage: {
|
|
6489
|
-
name: "owonL1PhaseVoltage",
|
|
6490
|
-
ID: 0x3000,
|
|
6491
|
-
type: enums_1.DataType.UINT24,
|
|
6492
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6493
|
-
write: true,
|
|
6494
|
-
max: 0xffffff,
|
|
6495
|
-
},
|
|
6496
|
-
owonL2PhaseVoltage: {
|
|
6497
|
-
name: "owonL2PhaseVoltage",
|
|
6498
|
-
ID: 0x3001,
|
|
6499
|
-
type: enums_1.DataType.UINT24,
|
|
6500
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6501
|
-
write: true,
|
|
6502
|
-
max: 0xffffff,
|
|
6503
|
-
},
|
|
6504
|
-
owonL3PhaseVoltage: {
|
|
6505
|
-
name: "owonL3PhaseVoltage",
|
|
6506
|
-
ID: 0x3002,
|
|
6507
|
-
type: enums_1.DataType.UINT24,
|
|
6508
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6509
|
-
write: true,
|
|
6510
|
-
max: 0xffffff,
|
|
6511
|
-
},
|
|
6512
|
-
owonL1PhaseCurrent: {
|
|
6513
|
-
name: "owonL1PhaseCurrent",
|
|
6514
|
-
ID: 0x3100,
|
|
6515
|
-
type: enums_1.DataType.UINT24,
|
|
6516
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6517
|
-
write: true,
|
|
6518
|
-
max: 0xffffff,
|
|
6519
|
-
},
|
|
6520
|
-
owonL2PhaseCurrent: {
|
|
6521
|
-
name: "owonL2PhaseCurrent",
|
|
6522
|
-
ID: 0x3101,
|
|
6523
|
-
type: enums_1.DataType.UINT24,
|
|
6524
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6525
|
-
write: true,
|
|
6526
|
-
max: 0xffffff,
|
|
6527
|
-
},
|
|
6528
|
-
owonL3PhaseCurrent: {
|
|
6529
|
-
name: "owonL3PhaseCurrent",
|
|
6530
|
-
ID: 0x3102,
|
|
6531
|
-
type: enums_1.DataType.UINT24,
|
|
6532
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6533
|
-
write: true,
|
|
6534
|
-
max: 0xffffff,
|
|
6535
|
-
},
|
|
6536
|
-
owonCurrentSum: {
|
|
6537
|
-
name: "owonCurrentSum",
|
|
6538
|
-
ID: 0x3103,
|
|
6539
|
-
type: enums_1.DataType.UINT24,
|
|
6540
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6541
|
-
write: true,
|
|
6542
|
-
max: 0xffffff,
|
|
6543
|
-
},
|
|
6544
|
-
owonLeakageCurrent: {
|
|
6545
|
-
name: "owonLeakageCurrent",
|
|
6546
|
-
ID: 0x3104,
|
|
6547
|
-
type: enums_1.DataType.UINT24,
|
|
6548
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6549
|
-
write: true,
|
|
6550
|
-
max: 0xffffff,
|
|
6551
|
-
},
|
|
6552
|
-
owonL1Energy: {
|
|
6553
|
-
name: "owonL1Energy",
|
|
6554
|
-
ID: 0x4000,
|
|
6555
|
-
type: enums_1.DataType.UINT48,
|
|
6556
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6557
|
-
write: true,
|
|
6558
|
-
max: 0xffffffffffff,
|
|
6559
|
-
},
|
|
6560
|
-
owonL2Energy: {
|
|
6561
|
-
name: "owonL2Energy",
|
|
6562
|
-
ID: 0x4001,
|
|
6563
|
-
type: enums_1.DataType.UINT48,
|
|
6564
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6565
|
-
write: true,
|
|
6566
|
-
max: 0xffffffffffff,
|
|
6567
|
-
},
|
|
6568
|
-
owonL3Energy: {
|
|
6569
|
-
name: "owonL3Energy",
|
|
6570
|
-
ID: 0x4002,
|
|
6571
|
-
type: enums_1.DataType.UINT48,
|
|
6572
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6573
|
-
write: true,
|
|
6574
|
-
max: 0xffffffffffff,
|
|
6575
|
-
},
|
|
6576
|
-
owonL1ReactiveEnergy: {
|
|
6577
|
-
name: "owonL1ReactiveEnergy",
|
|
6578
|
-
ID: 0x4100,
|
|
6579
|
-
type: enums_1.DataType.UINT48,
|
|
6580
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6581
|
-
write: true,
|
|
6582
|
-
max: 0xffffffffffff,
|
|
6583
|
-
},
|
|
6584
|
-
owonL2ReactiveEnergy: {
|
|
6585
|
-
name: "owonL2ReactiveEnergy",
|
|
6586
|
-
ID: 0x4101,
|
|
6587
|
-
type: enums_1.DataType.UINT48,
|
|
6588
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6589
|
-
write: true,
|
|
6590
|
-
max: 0xffffffffffff,
|
|
6591
|
-
},
|
|
6592
|
-
owonL3ReactiveEnergy: {
|
|
6593
|
-
name: "owonL3ReactiveEnergy",
|
|
6594
|
-
ID: 0x4102,
|
|
6595
|
-
type: enums_1.DataType.UINT48,
|
|
6596
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6597
|
-
write: true,
|
|
6598
|
-
max: 0xffffffffffff,
|
|
6599
|
-
},
|
|
6600
|
-
owonReactiveEnergySum: {
|
|
6601
|
-
name: "owonReactiveEnergySum",
|
|
6602
|
-
ID: 0x4103,
|
|
6603
|
-
type: enums_1.DataType.UINT48,
|
|
6604
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6605
|
-
write: true,
|
|
6606
|
-
max: 0xffffffffffff,
|
|
6607
|
-
},
|
|
6608
|
-
owonL1PowerFactor: {
|
|
6609
|
-
name: "owonL1PowerFactor",
|
|
6610
|
-
ID: 0x4104,
|
|
6611
|
-
type: enums_1.DataType.INT8,
|
|
6612
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6613
|
-
write: true,
|
|
6614
|
-
min: -128,
|
|
6615
|
-
max: 127,
|
|
6616
|
-
},
|
|
6617
|
-
owonL2PowerFactor: {
|
|
6618
|
-
name: "owonL2PowerFactor",
|
|
6619
|
-
ID: 0x4105,
|
|
6620
|
-
type: enums_1.DataType.INT8,
|
|
6621
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6622
|
-
write: true,
|
|
6623
|
-
min: -128,
|
|
6624
|
-
max: 127,
|
|
6625
|
-
},
|
|
6626
|
-
owonL3PowerFactor: {
|
|
6627
|
-
name: "owonL3PowerFactor",
|
|
6628
|
-
ID: 0x4106,
|
|
6629
|
-
type: enums_1.DataType.INT8,
|
|
6630
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6631
|
-
write: true,
|
|
6632
|
-
min: -128,
|
|
6633
|
-
max: 127,
|
|
6634
|
-
},
|
|
6635
|
-
owonFrequency: {
|
|
6636
|
-
name: "owonFrequency",
|
|
6637
|
-
ID: 0x5005,
|
|
6638
|
-
type: enums_1.DataType.UINT8,
|
|
6639
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6640
|
-
write: true,
|
|
6641
|
-
max: 0xff,
|
|
6642
|
-
},
|
|
6643
|
-
owonReportMap: {
|
|
6644
|
-
name: "owonReportMap",
|
|
6645
|
-
ID: 0x1000,
|
|
6646
|
-
type: enums_1.DataType.BITMAP8,
|
|
6647
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6648
|
-
write: true,
|
|
6649
|
-
},
|
|
6650
|
-
owonLastHistoricalRecordTime: {
|
|
6651
|
-
name: "owonLastHistoricalRecordTime",
|
|
6652
|
-
ID: 0x5000,
|
|
6653
|
-
type: enums_1.DataType.UINT32,
|
|
6654
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6655
|
-
write: true,
|
|
6656
|
-
max: 0xffffffff,
|
|
6657
|
-
},
|
|
6658
|
-
owonOldestHistoricalRecordTime: {
|
|
6659
|
-
name: "owonOldestHistoricalRecordTime",
|
|
6660
|
-
ID: 0x5001,
|
|
6661
|
-
type: enums_1.DataType.UINT32,
|
|
6662
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6663
|
-
write: true,
|
|
6664
|
-
max: 0xffffffff,
|
|
6665
|
-
},
|
|
6666
|
-
owonMinimumReportCycle: {
|
|
6667
|
-
name: "owonMinimumReportCycle",
|
|
6668
|
-
ID: 0x5002,
|
|
6669
|
-
type: enums_1.DataType.UINT32,
|
|
6670
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6671
|
-
write: true,
|
|
6672
|
-
max: 0xffffffff,
|
|
6673
|
-
},
|
|
6674
|
-
owonMaximumReportCycle: {
|
|
6675
|
-
name: "owonMaximumReportCycle",
|
|
6676
|
-
ID: 0x5003,
|
|
6677
|
-
type: enums_1.DataType.UINT32,
|
|
6678
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6679
|
-
write: true,
|
|
6680
|
-
max: 0xffffffff,
|
|
6681
|
-
},
|
|
6682
|
-
owonSentHistoricalRecordState: {
|
|
6683
|
-
name: "owonSentHistoricalRecordState",
|
|
6684
|
-
ID: 0x5004,
|
|
6685
|
-
type: enums_1.DataType.UINT8,
|
|
6686
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6687
|
-
write: true,
|
|
6688
|
-
max: 0xff,
|
|
6689
|
-
},
|
|
6690
|
-
owonAccumulativeEnergyThreshold: {
|
|
6691
|
-
name: "owonAccumulativeEnergyThreshold",
|
|
6692
|
-
ID: 0x5006,
|
|
6693
|
-
type: enums_1.DataType.UINT8,
|
|
6694
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6695
|
-
write: true,
|
|
6696
|
-
max: 0xff,
|
|
6697
|
-
},
|
|
6698
|
-
owonReportMode: {
|
|
6699
|
-
name: "owonReportMode",
|
|
6700
|
-
ID: 0x5007,
|
|
6701
|
-
type: enums_1.DataType.UINT8,
|
|
6702
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6703
|
-
write: true,
|
|
6704
|
-
max: 0xff,
|
|
6705
|
-
},
|
|
6706
|
-
owonPercentChangeInPower: {
|
|
6707
|
-
name: "owonPercentChangeInPower",
|
|
6708
|
-
ID: 0x5008,
|
|
6709
|
-
type: enums_1.DataType.UINT8,
|
|
6710
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.OWON_TECHNOLOGY_INC,
|
|
6711
|
-
write: true,
|
|
6712
|
-
max: 0xff,
|
|
6713
|
-
},
|
|
6714
6070
|
},
|
|
6715
6071
|
commands: {
|
|
6716
6072
|
getProfile: {
|
|
@@ -6839,9 +6195,6 @@ exports.Clusters = {
|
|
|
6839
6195
|
{ name: "measurementPeriod", type: enums_1.DataType.UINT16 },
|
|
6840
6196
|
],
|
|
6841
6197
|
},
|
|
6842
|
-
// custom
|
|
6843
|
-
owonGetHistoryRecord: { name: "owonGetHistoryRecord", ID: 0x20, parameters: [] },
|
|
6844
|
-
owonStopSendingHistoricalRecord: { name: "owonStopSendingHistoricalRecord", ID: 0x21, parameters: [] },
|
|
6845
6198
|
},
|
|
6846
6199
|
commandsResponse: {
|
|
6847
6200
|
getProfileRsp: {
|
|
@@ -6963,8 +6316,6 @@ exports.Clusters = {
|
|
|
6963
6316
|
],
|
|
6964
6317
|
},
|
|
6965
6318
|
startSamplingRsp: { name: "startSamplingRsp", ID: 0x0d, parameters: [{ name: "sampleId", type: enums_1.DataType.UINT16 }] },
|
|
6966
|
-
// custom
|
|
6967
|
-
owonGetHistoryRecordRsp: { name: "owonGetHistoryRecordRsp", ID: 0x20, parameters: [] },
|
|
6968
6319
|
},
|
|
6969
6320
|
},
|
|
6970
6321
|
// seMessaging: {ID: 0x0703},
|
|
@@ -7722,78 +7073,6 @@ exports.Clusters = {
|
|
|
7722
7073
|
averageMacRetryPerApsMessageSent: { name: "averageMacRetryPerApsMessageSent", ID: 0x011b, type: enums_1.DataType.UINT16, max: 0xffff, default: 0 },
|
|
7723
7074
|
lastMessageLqi: { name: "lastMessageLqi", ID: 0x011c, type: enums_1.DataType.UINT8, max: 0xff, default: 0 },
|
|
7724
7075
|
lastMessageRssi: { name: "lastMessageRssi", ID: 0x011d, type: enums_1.DataType.INT8, min: -127, max: 127, default: 0 },
|
|
7725
|
-
// custom
|
|
7726
|
-
danfossSystemStatusCode: {
|
|
7727
|
-
name: "danfossSystemStatusCode",
|
|
7728
|
-
ID: 0x4000,
|
|
7729
|
-
type: enums_1.DataType.BITMAP16,
|
|
7730
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7731
|
-
write: true,
|
|
7732
|
-
},
|
|
7733
|
-
schneiderCommunicationQuality: {
|
|
7734
|
-
name: "schneiderCommunicationQuality",
|
|
7735
|
-
ID: 0x4000,
|
|
7736
|
-
type: enums_1.DataType.UINT8,
|
|
7737
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
7738
|
-
write: true,
|
|
7739
|
-
max: 0xff,
|
|
7740
|
-
},
|
|
7741
|
-
danfossHeatSupplyRequest: {
|
|
7742
|
-
name: "danfossHeatSupplyRequest",
|
|
7743
|
-
ID: 0x4031,
|
|
7744
|
-
type: enums_1.DataType.ENUM8,
|
|
7745
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7746
|
-
write: true,
|
|
7747
|
-
max: 0xff,
|
|
7748
|
-
},
|
|
7749
|
-
danfossSystemStatusWater: {
|
|
7750
|
-
name: "danfossSystemStatusWater",
|
|
7751
|
-
ID: 0x4200,
|
|
7752
|
-
type: enums_1.DataType.ENUM8,
|
|
7753
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7754
|
-
write: true,
|
|
7755
|
-
max: 0xff,
|
|
7756
|
-
},
|
|
7757
|
-
danfossMultimasterRole: {
|
|
7758
|
-
name: "danfossMultimasterRole",
|
|
7759
|
-
ID: 0x4201,
|
|
7760
|
-
type: enums_1.DataType.ENUM8,
|
|
7761
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7762
|
-
write: true,
|
|
7763
|
-
max: 0xff,
|
|
7764
|
-
},
|
|
7765
|
-
danfossIconApplication: {
|
|
7766
|
-
name: "danfossIconApplication",
|
|
7767
|
-
ID: 0x4210,
|
|
7768
|
-
type: enums_1.DataType.ENUM8,
|
|
7769
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7770
|
-
write: true,
|
|
7771
|
-
max: 0xff,
|
|
7772
|
-
},
|
|
7773
|
-
danfossIconForcedHeatingCooling: {
|
|
7774
|
-
name: "danfossIconForcedHeatingCooling",
|
|
7775
|
-
ID: 0x4220,
|
|
7776
|
-
type: enums_1.DataType.ENUM8,
|
|
7777
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.DANFOSS_A_S,
|
|
7778
|
-
write: true,
|
|
7779
|
-
max: 0xff,
|
|
7780
|
-
},
|
|
7781
|
-
schneiderMeterStatus: {
|
|
7782
|
-
name: "schneiderMeterStatus",
|
|
7783
|
-
ID: 0xff01,
|
|
7784
|
-
type: enums_1.DataType.UINT32,
|
|
7785
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
7786
|
-
write: true,
|
|
7787
|
-
max: 0xffffffff,
|
|
7788
|
-
},
|
|
7789
|
-
schneiderDiagnosticRegister1: {
|
|
7790
|
-
name: "schneiderDiagnosticRegister1",
|
|
7791
|
-
ID: 0xff02,
|
|
7792
|
-
type: enums_1.DataType.UINT32,
|
|
7793
|
-
manufacturerCode: manufacturerCode_1.ManufacturerCode.SCHNEIDER_ELECTRIC,
|
|
7794
|
-
write: true,
|
|
7795
|
-
max: 0xffffffff,
|
|
7796
|
-
},
|
|
7797
7076
|
},
|
|
7798
7077
|
commands: {},
|
|
7799
7078
|
commandsResponse: {},
|