home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
72.33k stars 30.27k forks source link

Rheem Econet Unknown Fan Modes #85890

Closed johncarey70 closed 1 year ago

johncarey70 commented 1 year ago

The problem

Thermostat Fan Modes Medium Lo & Medium Hi are generating unknown errors in the logs. Looks like these are missing from the pyeconet api: class ThermostatFanMode(Enum): """Define the operation mode"""

AUTO = 1
LOW = 2
MEDLO = 3
MEDIUM = 4
MEDHI = 5
HIGH = 6
UNKNOWN = 99

The fan modes in the returned data from econet show up as both MEDLO / MEDIUMLO & MEDHI / MEDIUMHI so both need to be in that class:

AUTO = 1
LOW = 2
MEDLO = 3
MEDIUM = 4
MEDHI = 5
HIGH = 6
MEDIUMLO = 7
MEDIUMHI = 8
UNKNOWN = 99

What version of Home Assistant Core has the issue?

2023.1.4

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

Rheem EcoNet Products

Link to integration documentation on our website

https://www.home-assistant.io/integrations/econet

Diagnostics information

No response

Example YAML snippet

No response

Anything in the logs that might be useful for us?

Logger: pyeconet.equipment.thermostat
Source: components/econet/climate.py:180
First occurred: 1:27:41 PM (6 occurrences)
Last logged: 1:33:17 PM

Unknown fan mode: [Medium Lo]
Unknown fan mode: [Medium Hi]

Additional information

No response

home-assistant[bot] commented 1 year ago

Hey there @vangorra, @w1ll1am23, mind taking a look at this issue as it has been labeled with an integration (econet) you are listed as a code owner for? Thanks!

Code owner commands Code owners of `econet` can trigger bot actions by commenting: - `@home-assistant close` Closes the issue. - `@home-assistant rename Awesome new title` Change the title of the issue. - `@home-assistant reopen` Reopen the issue. - `@home-assistant unassign econet` Removes the current integration label and assignees on the issue, add the integration domain after the command.

(message by CodeOwnersMention)


econet documentation econet source (message by IssueLinks)

issue-triage-workflows[bot] commented 1 year ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.