Skip to content

Commit

Permalink
feat(add): 98847 (#5888)
Browse files Browse the repository at this point in the history
* add support for EGLO FUEVA-Z (ceiling light IP44)

It seems to be working, however preset "warm" is missing for color_temp and color_temp_startup (where are only coolest, cool, neutral and warmest). Why? I also noticed that both "neutral" and "warmiest" pressets are equal 370. It should be fixed, but how?

* Update eglo.ts

---------

Co-authored-by: Koen Kanters <koenkanters94@gmail.com>
  • Loading branch information
pswid and Koenkk authored Jun 18, 2023
1 parent bcbaf02 commit 0a8bd27
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/devices/eglo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ const definitions: Definition[] = [
description: 'SALITERAS-Z ceiling light',
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
},
{
zigbeeModel: ['EGLO_ZM_TW_CLP'],
model: '98847',
vendor: 'EGLO',
description: 'FUEVA-Z ceiling light IP44',
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 370]}),
},
];

module.exports = definitions;

0 comments on commit 0a8bd27

Please sign in to comment.