Skip to content

Commit

Permalink
feat(add): 550B1024 Koenkk/zigbee2mqtt#18538
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Oct 8, 2023
1 parent 95c187a commit a6036e3
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 @@ -388,6 +388,23 @@ const definitions: Definition[] = [
await reporting.brightness(endpoint);
},
},
{
zigbeeModel: ['CCT593011_AS'],
model: '550B1024',
vendor: 'Schneider Electric',
description: 'Temperature & humidity sensor',
fromZigbee: [fz.humidity, fz.temperature, fz.battery],
toZigbee: [],
exposes: [e.battery(), e.temperature(), e.humidity()],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
const binds = ['msTemperatureMeasurement', 'genPowerCfg', 'msRelativeHumidity'];
await reporting.bind(endpoint, coordinatorEndpoint, binds);
await reporting.batteryPercentageRemaining(endpoint);
await reporting.temperature(endpoint);
await reporting.humidity(endpoint);
},
},
{
zigbeeModel: ['NHPB/DIMMER/1'],
model: 'WDE002386',
Expand Down

0 comments on commit a6036e3

Please sign in to comment.