mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
* fix issue #24478 - missing climate entities * bump client
This commit is contained in:
parent
e9b0f54a43
commit
616301f7ee
@ -19,10 +19,7 @@ async def async_setup_platform(hass, hass_config, async_add_entities,
|
|||||||
client = hass.data[DOMAIN]['client']
|
client = hass.data[DOMAIN]['client']
|
||||||
heater = hass.data[DOMAIN]['heater']
|
heater = hass.data[DOMAIN]['heater']
|
||||||
|
|
||||||
rooms = [InComfortClimate(client, r)
|
async_add_entities([InComfortClimate(client, r) for r in heater.rooms])
|
||||||
for r in heater.rooms if not r.room_temp]
|
|
||||||
if rooms:
|
|
||||||
async_add_entities(rooms)
|
|
||||||
|
|
||||||
|
|
||||||
class InComfortClimate(ClimateDevice):
|
class InComfortClimate(ClimateDevice):
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "Intergas InComfort/Intouch Lan2RF gateway",
|
"name": "Intergas InComfort/Intouch Lan2RF gateway",
|
||||||
"documentation": "https://www.home-assistant.io/components/incomfort",
|
"documentation": "https://www.home-assistant.io/components/incomfort",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"incomfort-client==0.2.9"
|
"incomfort-client==0.3.0"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
|
@ -634,7 +634,7 @@ iglo==1.2.7
|
|||||||
ihcsdk==2.3.0
|
ihcsdk==2.3.0
|
||||||
|
|
||||||
# homeassistant.components.incomfort
|
# homeassistant.components.incomfort
|
||||||
incomfort-client==0.2.9
|
incomfort-client==0.3.0
|
||||||
|
|
||||||
# homeassistant.components.influxdb
|
# homeassistant.components.influxdb
|
||||||
influxdb==5.2.0
|
influxdb==5.2.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user