mirror of https://github.com/simbaja/ha_gehome.git
- updated documentation
- added icon for climate entities
This commit is contained in:
parent
2e9bc2c726
commit
6bd56b4dce
|
@ -1,7 +1,7 @@
|
|||
|
||||
# GE Home Appliances (SmartHQ) Changelog
|
||||
|
||||
## 0.4.x
|
||||
## 0.4.3
|
||||
|
||||
- Added support for Split A/C units (@RobertusIT)
|
||||
- Added support for Window A/C units (@mbrentrowe, @swcrawford1)
|
||||
|
|
|
@ -29,6 +29,10 @@ Oven Controls:
|
|||
|
||||
![Fridge controls](https://raw.githubusercontent.com/simbaja/ha_components/master/img/oven_controls.png)
|
||||
|
||||
A/C Controls:
|
||||
|
||||
![A/C controls](https://raw.githubusercontent.com/simbaja/ha_components/master/img/ac_controls.png)
|
||||
|
||||
## Installation (Manual)
|
||||
|
||||
1. Using the tool of choice open the directory (folder) for your HA configuration (where you find `configuration.yaml`).
|
||||
|
|
|
@ -186,4 +186,7 @@ class GeClimate(GeEntity, ClimateEntity):
|
|||
if self.temperature_unit == TEMP_FAHRENHEIT:
|
||||
return float(temperature_f)
|
||||
else:
|
||||
return (temperature_f - 32.0) * (5/9)
|
||||
return (temperature_f - 32.0) * (5/9)
|
||||
|
||||
def _get_icon(self) -> Optional[str]:
|
||||
return "mdi:air-conditioner"
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
10
info.md
10
info.md
|
@ -24,6 +24,10 @@ Oven Controls:
|
|||
|
||||
![Fridge controls](https://raw.githubusercontent.com/simbaja/ha_components/master/img/oven_controls.png)
|
||||
|
||||
A/C Controls:
|
||||
|
||||
![A/C controls](https://raw.githubusercontent.com/simbaja/ha_components/master/img/ac_controls.png)
|
||||
|
||||
|
||||
{% if installed %}
|
||||
### Changes as compared to your installed version:
|
||||
|
@ -31,7 +35,7 @@ Oven Controls:
|
|||
#### Breaking Changes
|
||||
|
||||
{% if version_installed.split('.') | map('int') < '0.4.0'.split('.') | map('int') %}
|
||||
- Laundry support changes will cause entity names to be different, you will need to fix in HA
|
||||
- Laundry support changes will cause entity names to be different, you will need to fix in HA (uninstall, reboot, delete leftover entitites, install, reboot)
|
||||
{% endif %}
|
||||
|
||||
#### Changes
|
||||
|
@ -54,6 +58,10 @@ Oven Controls:
|
|||
|
||||
#### Bugfixes
|
||||
|
||||
{% if version_installed.split('.') | map('int') < '0.4.3'.split('.') | map('int') %}
|
||||
- Bug fixes for laundry (@steveredden, @sweichbr)
|
||||
{% endif %}
|
||||
|
||||
{% if version_installed.split('.') | map('int') < '0.4.1'.split('.') | map('int') %}
|
||||
- Fixed an issue with dryer entities causing an error in HA (@steveredden)
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue