Skip to content

Commit

Permalink
feat(add): DS-Z-001DE (#8682)
Browse files Browse the repository at this point in the history
Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
  • Loading branch information
maxwai and Koenkk authored Jan 27, 2025
1 parent 04df965 commit 809bb75
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/devices/direct_signs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import * as m from '../lib/modernExtend';
import {DefinitionWithExtend} from '../lib/types';

const definitions: DefinitionWithExtend[] = [
{
zigbeeModel: ['DS-Z-001DE'],
model: 'DS-Z-001DE',
vendor: 'DIRECTSIGNS',
description: 'RGB + CCT LED Controller',
extend: [m.light({colorTemp: {range: [158, 500]}, color: {modes: ['xy', 'hs'], enhancedHue: true}})],
},
];

export default definitions;
module.exports = definitions;
2 changes: 2 additions & 0 deletions src/devices/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ import datek from './datek';
import dawon_dns from './dawon_dns';
import develco from './develco';
import digi from './digi';
import direct_signs from './direct_signs';
import diyruz from './diyruz';
import dlink from './dlink';
import dnake from './dnake';
Expand Down Expand Up @@ -378,6 +379,7 @@ export default [
...dawon_dns,
...develco,
...digi,
...direct_signs,
...diyruz,
...dlink,
...dnake,
Expand Down

0 comments on commit 809bb75

Please sign in to comment.