Upgrade pyhomematic, extend device support (#7303)
This commit is contained in:
parent
8bb952e416
commit
760d2f1f0a
2 changed files with 7 additions and 6 deletions
|
@ -21,7 +21,7 @@ from homeassistant.helpers.entity import Entity
|
||||||
from homeassistant.helpers.event import track_time_interval
|
from homeassistant.helpers.event import track_time_interval
|
||||||
from homeassistant.config import load_yaml_config_file
|
from homeassistant.config import load_yaml_config_file
|
||||||
|
|
||||||
REQUIREMENTS = ["pyhomematic==0.1.24"]
|
REQUIREMENTS = ["pyhomematic==0.1.25"]
|
||||||
|
|
||||||
DOMAIN = 'homematic'
|
DOMAIN = 'homematic'
|
||||||
|
|
||||||
|
@ -54,21 +54,22 @@ SERVICE_SET_DEV_VALUE = 'set_dev_value'
|
||||||
HM_DEVICE_TYPES = {
|
HM_DEVICE_TYPES = {
|
||||||
DISCOVER_SWITCHES: [
|
DISCOVER_SWITCHES: [
|
||||||
'Switch', 'SwitchPowermeter', 'IOSwitch', 'IPSwitch',
|
'Switch', 'SwitchPowermeter', 'IOSwitch', 'IPSwitch',
|
||||||
'IPSwitchPowermeter', 'KeyMatic', 'HMWIOSwitch'],
|
'IPSwitchPowermeter', 'KeyMatic', 'HMWIOSwitch', 'Rain', 'EcoLogic'],
|
||||||
DISCOVER_LIGHTS: ['Dimmer', 'KeyDimmer'],
|
DISCOVER_LIGHTS: ['Dimmer', 'KeyDimmer', 'IPKeyDimmer'],
|
||||||
DISCOVER_SENSORS: [
|
DISCOVER_SENSORS: [
|
||||||
'SwitchPowermeter', 'Motion', 'MotionV2', 'RemoteMotion', 'MotionIP',
|
'SwitchPowermeter', 'Motion', 'MotionV2', 'RemoteMotion', 'MotionIP',
|
||||||
'ThermostatWall', 'AreaThermostat', 'RotaryHandleSensor',
|
'ThermostatWall', 'AreaThermostat', 'RotaryHandleSensor',
|
||||||
'WaterSensor', 'PowermeterGas', 'LuxSensor', 'WeatherSensor',
|
'WaterSensor', 'PowermeterGas', 'LuxSensor', 'WeatherSensor',
|
||||||
'WeatherStation', 'ThermostatWall2', 'TemperatureDiffSensor',
|
'WeatherStation', 'ThermostatWall2', 'TemperatureDiffSensor',
|
||||||
'TemperatureSensor', 'CO2Sensor', 'IPSwitchPowermeter', 'HMWIOSwitch'],
|
'TemperatureSensor', 'CO2Sensor', 'IPSwitchPowermeter', 'HMWIOSwitch',
|
||||||
|
'FillingLevel', 'ValveDrive', 'EcoLogic'],
|
||||||
DISCOVER_CLIMATE: [
|
DISCOVER_CLIMATE: [
|
||||||
'Thermostat', 'ThermostatWall', 'MAXThermostat', 'ThermostatWall2',
|
'Thermostat', 'ThermostatWall', 'MAXThermostat', 'ThermostatWall2',
|
||||||
'MAXWallThermostat', 'IPThermostat'],
|
'MAXWallThermostat', 'IPThermostat'],
|
||||||
DISCOVER_BINARY_SENSORS: [
|
DISCOVER_BINARY_SENSORS: [
|
||||||
'ShutterContact', 'Smoke', 'SmokeV2', 'Motion', 'MotionV2',
|
'ShutterContact', 'Smoke', 'SmokeV2', 'Motion', 'MotionV2',
|
||||||
'RemoteMotion', 'WeatherSensor', 'TiltSensor', 'IPShutterContact',
|
'RemoteMotion', 'WeatherSensor', 'TiltSensor', 'IPShutterContact',
|
||||||
'HMWIOSwitch', 'MaxShutterContact'],
|
'HMWIOSwitch', 'MaxShutterContact', 'Rain', 'WiredSensor'],
|
||||||
DISCOVER_COVER: ['Blind', 'KeyBlind']
|
DISCOVER_COVER: ['Blind', 'KeyBlind']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -549,7 +549,7 @@ pyharmony==1.0.12
|
||||||
pyhik==0.1.2
|
pyhik==0.1.2
|
||||||
|
|
||||||
# homeassistant.components.homematic
|
# homeassistant.components.homematic
|
||||||
pyhomematic==0.1.24
|
pyhomematic==0.1.25
|
||||||
|
|
||||||
# homeassistant.components.sensor.hydroquebec
|
# homeassistant.components.sensor.hydroquebec
|
||||||
pyhydroquebec==1.1.0
|
pyhydroquebec==1.1.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue