Skip to content

Commit

Permalink
fix(ignore): Reduce LYWSD03MMC reporting interval (#6338)
Browse files Browse the repository at this point in the history
  • Loading branch information
devbis committed Oct 27, 2023
1 parent d6996a6 commit fab8c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/custom_devices_diy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1274,8 +1274,8 @@ const definitions: Definition[] = [
const endpoint = device.getEndpoint(1);
const bindClusters = ['msTemperatureMeasurement', 'msRelativeHumidity', 'genPowerCfg'];
await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
await reporting.temperature(endpoint);
await reporting.humidity(endpoint);
await reporting.temperature(endpoint, {min: 10, max: 300, change: 10});
await reporting.humidity(endpoint, {min: 10, max: 300, change: 50});
await reporting.batteryVoltage(endpoint);
await reporting.batteryPercentageRemaining(endpoint);
},
Expand Down

0 comments on commit fab8c33

Please sign in to comment.