Add Mini remote support to insteon_plm (#15152)

* Add mini-remote

* Bump insteonplm version to 0.11.3 to support mini-remotes
This commit is contained in:
Tom Harris 2018-06-27 06:19:56 -04:00 committed by Pascal Vizeli
parent 41017f10a3
commit d6dee62c92
2 changed files with 5 additions and 3 deletions

View file

@ -17,7 +17,7 @@ import homeassistant.helpers.config_validation as cv
from homeassistant.helpers import discovery
from homeassistant.helpers.entity import Entity
REQUIREMENTS = ['insteonplm==0.11.2']
REQUIREMENTS = ['insteonplm==0.11.3']
_LOGGER = logging.getLogger(__name__)
@ -300,7 +300,8 @@ class IPDB(object):
OpenClosedRelay)
from insteonplm.states.dimmable import (DimmableSwitch,
DimmableSwitch_Fan)
DimmableSwitch_Fan,
DimmableRemote)
from insteonplm.states.sensor import (VariableSensor,
OnOffSensor,
@ -328,6 +329,7 @@ class IPDB(object):
State(DimmableSwitch_Fan, 'fan'),
State(DimmableSwitch, 'light'),
State(DimmableRemote, 'binary_sensor'),
State(X10DimmableSwitch, 'light'),
State(X10OnOffSwitch, 'switch'),

View file

@ -460,7 +460,7 @@ influxdb==5.0.0
insteonlocal==0.53
# homeassistant.components.insteon_plm
insteonplm==0.11.2
insteonplm==0.11.3
# homeassistant.components.sensor.iperf3
iperf3==0.1.10