Skip to content

Commit

Permalink
fix: Fix configure failing for OWON PCT504 (#6020)
Browse files Browse the repository at this point in the history
Hello,
issue for unsupported attribute error

Deleted lines : 
await reporting.thermostatUnoccupiedHeatingSetpoint(endpoint);
await reporting.thermostatUnoccupiedCoolingSetpoint(endpoint);

Check issue : Koenkk/zigbee2mqtt#17211

This error stop the other reporting like occupancy and humidity.

Tested on my box.

Regards
  • Loading branch information
XLDom authored Jul 27, 2023
1 parent 90519ec commit cfc5e64
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/devices/owon.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,7 @@ module.exports = [
await reporting.fanMode(endpoint);
await reporting.bind(endpoint, coordinatorEndpoint, ['hvacThermostat']);
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
await reporting.thermostatUnoccupiedHeatingSetpoint(endpoint);
await reporting.thermostatOccupiedCoolingSetpoint(endpoint);
await reporting.thermostatUnoccupiedCoolingSetpoint(endpoint);
await reporting.thermostatTemperature(endpoint, {min: 60, max: 600, change: 0.1});
await reporting.thermostatSystemMode(endpoint);
await reporting.thermostatRunningMode(endpoint);
Expand Down

0 comments on commit cfc5e64

Please sign in to comment.