Bumped pyhomematic, additional device support (#9506)
Add an optional extended description…
This commit is contained in:
parent
7314ec7a42
commit
3aa08f6c91
3 changed files with 5 additions and 3 deletions
|
@ -21,7 +21,7 @@ from homeassistant.helpers.entity import Entity
|
|||
from homeassistant.helpers.event import async_track_time_interval
|
||||
from homeassistant.config import load_yaml_config_file
|
||||
|
||||
REQUIREMENTS = ['pyhomematic==0.1.30']
|
||||
REQUIREMENTS = ['pyhomematic==0.1.32']
|
||||
|
||||
DOMAIN = 'homematic'
|
||||
|
||||
|
@ -65,7 +65,8 @@ HM_DEVICE_TYPES = {
|
|||
'WaterSensor', 'PowermeterGas', 'LuxSensor', 'WeatherSensor',
|
||||
'WeatherStation', 'ThermostatWall2', 'TemperatureDiffSensor',
|
||||
'TemperatureSensor', 'CO2Sensor', 'IPSwitchPowermeter', 'HMWIOSwitch',
|
||||
'FillingLevel', 'ValveDrive', 'EcoLogic'],
|
||||
'FillingLevel', 'ValveDrive', 'EcoLogic', 'IPThermostatWall',
|
||||
'IPSmoke'],
|
||||
DISCOVER_CLIMATE: [
|
||||
'Thermostat', 'ThermostatWall', 'MAXThermostat', 'ThermostatWall2',
|
||||
'MAXWallThermostat', 'IPThermostat', 'IPThermostatWall'],
|
||||
|
|
|
@ -16,6 +16,7 @@ HM_STATE_HA_CAST = {
|
|||
'RotaryHandleSensor': {0: 'closed', 1: 'tilted', 2: 'open'},
|
||||
'WaterSensor': {0: 'dry', 1: 'wet', 2: 'water'},
|
||||
'CO2Sensor': {0: 'normal', 1: 'added', 2: 'strong'},
|
||||
'IPSmoke': {0: 'off', 1: 'primary', 2: 'intrusion', 3: 'secondary'}
|
||||
}
|
||||
|
||||
HM_UNIT_HA_CAST = {
|
||||
|
|
|
@ -615,7 +615,7 @@ pyharmony==1.0.16
|
|||
pyhik==0.1.4
|
||||
|
||||
# homeassistant.components.homematic
|
||||
pyhomematic==0.1.30
|
||||
pyhomematic==0.1.32
|
||||
|
||||
# homeassistant.components.sensor.hydroquebec
|
||||
pyhydroquebec==1.2.0
|
||||
|
|
Loading…
Add table
Reference in a new issue