We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an error when I toggle to turn on my heater, it looks the following code cause the issue.
async def async_turn_on(self) -> None: """Turn the entity on.""" await self.async_set_hvac_mode(HVACMode.HEATING)
The following change will fix my issue.
async def async_turn_on(self) -> None: """Turn the entity on.""" await self.async_set_hvac_mode(HVACMode.HEAT_COOL)
Could you help review if the HVAC mode for turning on depends on the device?
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is an error when I toggle to turn on my heater, it looks the following code cause the issue.
The following change will fix my issue.
Could you help review if the HVAC mode for turning on depends on the device?
Thanks
The text was updated successfully, but these errors were encountered: