Skip to content

Commit 622e65e

Browse files
basdpKoenkk
andauthored
feat(add): LST103 (#7979)
* Added definition for the Gumax Lighting System * Fix linting error * Update gumax.ts --------- Co-authored-by: Koen Kanters <[email protected]>
1 parent cc4c516 commit 622e65e

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/devices/gumax.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import {light} from '../lib/modernExtend';
2+
import {DefinitionWithExtend} from '../lib/types';
3+
4+
const definitions: DefinitionWithExtend[] = [
5+
{
6+
zigbeeModel: ['LST103'],
7+
model: 'LST103',
8+
vendor: 'Gumax',
9+
description: 'Gumax lighting system',
10+
extend: [light({colorTemp: {range: [153, 370]}, color: {modes: ['xy', 'hs'], enhancedHue: true}})],
11+
},
12+
];
13+
14+
export default definitions;
15+
module.exports = definitions;

src/devices/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ import gledopto from './gledopto';
9898
import gmmts from './gmmts';
9999
import gmy from './gmy';
100100
import gs from './gs';
101+
import gumax from './gumax';
101102
import halemeier from './halemeier';
102103
import hampton_bay from './hampton_bay';
103104
import heatit from './heatit';
@@ -407,6 +408,7 @@ export default [
407408
...gmmts,
408409
...gmy,
409410
...gs,
411+
...gumax,
410412
...halemeier,
411413
...hampton_bay,
412414
...heatit,

0 commit comments

Comments
 (0)