Skip to content

Commit

Permalink
feat(add): SIN-4-1-22_LEX (#5991)
Browse files Browse the repository at this point in the history
* Update adeo.ts

Add support for ADEO/LEXMAN controller

* Update adeo.ts

Add support for ADEO/LEXMAN controller update

* Update adeo.ts

* Update adeo.ts

previous code correction

* Update adeo.ts

* Update philips.js

* Update adeo.ts
  • Loading branch information
RAULSALABIGAS authored Jul 31, 2023
1 parent 277e6eb commit 5855048
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/devices/adeo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,18 @@ const definitions: Definition[] = [
},
exposes: [e.cover_position()],
},
{
zigbeeModel: ['SIN-4-1-22_LEX'],
model: 'SIN-4-1-22_LEX',
vendor: 'ADEO',
description: 'ENKI LEXMAN Access Control',
extend: extend.switch(),
configure: async (device, coordinatorEndpoint, logger) => {
const ep = device.getEndpoint(1);
await reporting.bind(ep, coordinatorEndpoint, ['genOnOff']);
await reporting.onOff(ep);
},
},
];

module.exports = definitions;

0 comments on commit 5855048

Please sign in to comment.