diff --git a/src/devices/sowilo.ts b/src/devices/sowilo.ts new file mode 100644 index 0000000000000..563fb4adf79aa --- /dev/null +++ b/src/devices/sowilo.ts @@ -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;