Releases: RobHofmann/HomeAssistant-GreeClimateComponent
2.14.2: Connectivity fixes, Cleanup & extra checks
This is a maintenance release that will solve several issues with connectivity. Also some cleanup of unused stuff & added some extra None checks to avoid crashes of the component.
2.14.1: Fixes for connectivity
This release fixes some issues with AC's that are no longer able to be controlled on the latest HASS.
2.14: Built-in sensor support, built-in light sensor support, extended auto_light & auto_xfan
Added support for built-in temp sensor
Added suport for built-in light sensor
Extended auto_light functionality to be usable with light sensor
IMPORTANT!
From this version, auto_light and auto_xfan must be set as input_boolean
2.13.0 Fixed the oopsie :)
Fixed v2 encryption
Added support for Anti Direct Blow
Improved component initialization process. Devices will be added to Home Assistant even if they are not available on the network or have no power when the system starts.
2.12.0 Device Availability
Solved problem of device unavailability if home assistant starts when devices are offline or have no power. From now on, devices are correctly added to the home assistant. There is a specific time interval when the home assistant checks whether the devices are online or not. If not, device is marked as unavailable until it appears on the network.
2.11.0 Potential fix for Fahrenheit.
This might fix the wrong display temperatures for fahrenheit users.
2.10.0 Added support for encryption v1.21 (newer devices)
add new encryption method (#165) * add new encryption method
2.9.0 Add support for auto_light, auto_xfan & target temperature entity id
Added support for auto_light:
when set auto_light: true in config unit will always turn light on when power on and turn light light off when power off. Light entity id should be set but is optional and can be used to control light for example in sleep mode
Added support for auto_xfan:
when set auto_xfan: true in config unit will always turn on xFan in cool and dry mode. There is no need to set xfan entity id, even if it is set, it will be ignored
Added support for target temperature entity id
when set target_temp: input_number... in config we can control target temperature with input_number helper.
Useful when someone wants to build a custom layout, for example with custom:button_card. Input number should be declared with attributes min: 16 max: 30
See README for more information.
2.8.0 Horizontal swing & new climate entity flags
Horizontal swing & new climate entity flags (#156)
-
Changed async_track_state_change to async_track_state_change_event according to https://developers.home-assistant.io/blog/2024/04/13/deprecate_async_track_state_change/
-
Enabled horizontal swing using presets
2.7.0 Fix for future HASS versions (CONSTS are being replaced)
async_track_state_change -> async_track_state_change_event (based on: https://developers.home-assistant.io/blog/2024/04/13/deprecate_async_track_state_change/).
PR:
#155