Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pyhomematic 0.1.54 + small fixes #19667

Merged
merged 3 commits into from
Jan 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions homeassistant/components/homematic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['pyhomematic==0.1.53']
REQUIREMENTS = ['pyhomematic==0.1.54']

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -79,7 +79,7 @@
'IPWeatherSensor', 'RotaryHandleSensorIP', 'IPPassageSensor',
'IPKeySwitchPowermeter', 'IPThermostatWall230V', 'IPWeatherSensorPlus',
'IPWeatherSensorBasic', 'IPBrightnessSensor', 'IPGarage',
'UniversalSensor'],
'UniversalSensor', 'MotionIPV2'],
DISCOVER_CLIMATE: [
'Thermostat', 'ThermostatWall', 'MAXThermostat', 'ThermostatWall2',
'MAXWallThermostat', 'IPThermostat', 'IPThermostatWall',
Expand All @@ -89,7 +89,7 @@
'MotionIP', 'RemoteMotion', 'WeatherSensor', 'TiltSensor',
'IPShutterContact', 'HMWIOSwitch', 'MaxShutterContact', 'Rain',
'WiredSensor', 'PresenceIP', 'IPWeatherSensor', 'IPPassageSensor',
'SmartwareMotion', 'IPWeatherSensorPlus'],
'SmartwareMotion', 'IPWeatherSensorPlus', 'MotionIPV2'],
DISCOVER_COVER: ['Blind', 'KeyBlind', 'IPKeyBlind', 'IPKeyBlindTilt'],
DISCOVER_LOCKS: ['KeyMatic']
}
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/sensor/homematic.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
'GAS_POWER': 'm3',
'GAS_ENERGY_COUNTER': 'm3',
'LUX': 'lx',
'ILLUMINATION': 'lx',
'CURRENT_ILLUMINATION': 'lx',
'AVERAGE_ILLUMINATION': 'lx',
'LOWEST_ILLUMINATION': 'lx',
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ pyhik==0.1.9
pyhiveapi==0.2.14

# homeassistant.components.homematic
pyhomematic==0.1.53
pyhomematic==0.1.54

# homeassistant.components.homeworks
pyhomeworks==0.0.6
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pydeconz==47
pydispatcher==2.0.5

# homeassistant.components.homematic
pyhomematic==0.1.53
pyhomematic==0.1.54

# homeassistant.components.litejet
pylitejet==0.1
Expand Down