Skip to content

Commit

Permalink
feat(add): L258 (#6191)
Browse files Browse the repository at this point in the history
* added sowilo devices

* fix linting errors

* fix linting errors

* Update sowilo.ts

* removing ota

* Update sowilo.ts

---------

Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
  • Loading branch information
drchorney and Koenkk authored Oct 25, 2023
1 parent b930eee commit c5365fa
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/devices/sowilo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import {Definition} from '../lib/types';
import extend from '../lib/extend';

const definition: Definition[] = [
{
zigbeeModel: ['L258'],
model: 'L258',
vendor: 'Sowilo DS',
description: 'Heimdall Pro 5 channel RGBWW controller',
extend: extend.light_onoff_brightness_colortemp_color({supportsHueAndSaturation: true, colorTempRange: [150, 575]}),
meta: {turnsOffAtBrightness1: true},
},
];

module.exports = definition;

0 comments on commit c5365fa

Please sign in to comment.