Skip to content

Commit

Permalink
feat(add): CCT5010-0003 (#7454)
Browse files Browse the repository at this point in the history
  • Loading branch information
dflemstr committed Apr 28, 2024
1 parent d9640a4 commit df05493
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/devices/schneider_electric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,23 @@ const definitions: Definition[] = [
extend: [onOff({powerOnBehavior: false})],
whiteLabel: [{vendor: 'Elko', model: 'EKO07144'}],
},
{
zigbeeModel: ['PUCK/UNIDIM/1'],
model: 'CCT5010-0003',
vendor: 'Schneider Electric',
description: 'Micro module dimmer with neutral lead',
ota: ota.zigbeeOTA,
extend: [light({configureReporting: true, levelConfig: {}})],
fromZigbee: [fz.wiser_lighting_ballast_configuration],
toZigbee: [tz.ballast_config, tz.wiser_dimmer_mode],
exposes: [
e.numeric('ballast_minimum_level', ea.ALL).withValueMin(1).withValueMax(254)
.withDescription('Specifies the minimum light output of the ballast'),
e.numeric('ballast_maximum_level', ea.ALL).withValueMin(1).withValueMax(254)
.withDescription('Specifies the maximum light output of the ballast'),
e.enum('dimmer_mode', ea.ALL, ['auto', 'rc', 'rl', 'rl_led'])
.withDescription('Sets dimming mode to autodetect or fixed RC/RL/RL_LED mode (max load is reduced in RL_LED)')],
},
{
zigbeeModel: ['CCTFR6730'],
model: 'CCTFR6730',
Expand Down

0 comments on commit df05493

Please sign in to comment.