Skip to content

Commit e24cbb0

Browse files
fix(ignore): Add more Third Reality custom clusters (#7967)
* update 3r waterleak ts * add 3r soil sensor * update 3r soil sensor * update motion and door sensor * update motion and door sneor --------- Co-authored-by: jintj <[email protected]>
1 parent 42a3c21 commit e24cbb0

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/devices/third_reality.ts

+22
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,17 @@ const definitions: DefinitionWithExtend[] = [
126126
device.powerSource = 'Battery';
127127
device.save();
128128
},
129+
extend: [
130+
deviceAddCustomCluster('3rMotionSpecialCluster', {
131+
ID: 0xff01,
132+
manufacturerCode: 0x1233,
133+
attributes: {
134+
CoolDownTime: {ID: 0x0001, type: Zcl.DataType.UINT16},
135+
},
136+
commands: {},
137+
commandsResponse: {},
138+
}),
139+
],
129140
},
130141
{
131142
zigbeeModel: ['3RDS17BZ'],
@@ -142,6 +153,17 @@ const definitions: DefinitionWithExtend[] = [
142153
device.powerSource = 'Battery';
143154
device.save();
144155
},
156+
extend: [
157+
deviceAddCustomCluster('3rDoorSpecialCluster', {
158+
ID: 0xff01,
159+
manufacturerCode: 0x1233,
160+
attributes: {
161+
DelayOpenAttrId: {ID: 0x0000, type: Zcl.DataType.UINT16},
162+
},
163+
commands: {},
164+
commandsResponse: {},
165+
}),
166+
],
145167
},
146168
{
147169
zigbeeModel: ['3RDTS01056Z'],

0 commit comments

Comments
 (0)