Bump python bsblan version 0.6.4 (#128999)
parent
af6544c64d
commit
4e8f878d83
|
@ -54,6 +54,9 @@ class BSBLanUpdateCoordinator(DataUpdateCoordinator[BSBLanCoordinatorData]):
|
|||
async def _async_update_data(self) -> BSBLanCoordinatorData:
|
||||
"""Get state and sensor data from BSB-Lan device."""
|
||||
try:
|
||||
# initialize the client, this is cached and will only be called once
|
||||
await self.client.initialize()
|
||||
|
||||
state = await self.client.state()
|
||||
sensor = await self.client.sensor()
|
||||
except BSBLANConnectionError as err:
|
||||
|
|
|
@ -7,5 +7,5 @@
|
|||
"integration_type": "device",
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["bsblan"],
|
||||
"requirements": ["python-bsblan==0.6.2"]
|
||||
"requirements": ["python-bsblan==0.6.4"]
|
||||
}
|
||||
|
|
|
@ -2299,7 +2299,7 @@ python-awair==0.2.4
|
|||
python-blockchain-api==0.0.2
|
||||
|
||||
# homeassistant.components.bsblan
|
||||
python-bsblan==0.6.2
|
||||
python-bsblan==0.6.4
|
||||
|
||||
# homeassistant.components.clementine
|
||||
python-clementine-remote==1.0.1
|
||||
|
|
|
@ -1844,7 +1844,7 @@ python-MotionMount==2.2.0
|
|||
python-awair==0.2.4
|
||||
|
||||
# homeassistant.components.bsblan
|
||||
python-bsblan==0.6.2
|
||||
python-bsblan==0.6.4
|
||||
|
||||
# homeassistant.components.ecobee
|
||||
python-ecobee-api==0.2.20
|
||||
|
|
|
@ -97,5 +97,14 @@
|
|||
"dataType": 1,
|
||||
"readonly": 1,
|
||||
"unit": ""
|
||||
},
|
||||
"room1_temp_setpoint_boost": {
|
||||
"name": "Room 1 Temp Setpoint Boost",
|
||||
"error": 0,
|
||||
"value": "22.5",
|
||||
"desc": "Boost",
|
||||
"dataType": 1,
|
||||
"readonly": 1,
|
||||
"unit": "°C"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,6 +47,13 @@
|
|||
'unit': '',
|
||||
'value': '2',
|
||||
}),
|
||||
'room1_temp_setpoint_boost': dict({
|
||||
'data_type': 1,
|
||||
'desc': 'Boost',
|
||||
'name': 'Room 1 Temp Setpoint Boost',
|
||||
'unit': '°C',
|
||||
'value': '22.5',
|
||||
}),
|
||||
'room1_thermostat_mode': dict({
|
||||
'data_type': 1,
|
||||
'desc': 'Kein Bedarf',
|
||||
|
|
Loading…
Reference in New Issue