mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Add support to ignore a xiaomi aqara gateway (#14428)
This commit is contained in:
parent
e88fc33eef
commit
c316d5b0b9
@ -23,7 +23,7 @@ from homeassistant.helpers.event import async_track_point_in_utc_time
|
||||
from homeassistant.util.dt import utcnow
|
||||
from homeassistant.util import slugify
|
||||
|
||||
REQUIREMENTS = ['PyXiaomiGateway==0.9.3']
|
||||
REQUIREMENTS = ['PyXiaomiGateway==0.9.4']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
@ -36,6 +36,7 @@ CONF_DISCOVERY_RETRY = 'discovery_retry'
|
||||
CONF_GATEWAYS = 'gateways'
|
||||
CONF_INTERFACE = 'interface'
|
||||
CONF_KEY = 'key'
|
||||
CONF_DISABLE = 'disable'
|
||||
|
||||
DOMAIN = 'xiaomi_aqara'
|
||||
|
||||
@ -73,6 +74,7 @@ GATEWAY_CONFIG = vol.Schema({
|
||||
vol.All(cv.string, vol.Length(min=16, max=16)),
|
||||
vol.Optional(CONF_HOST): cv.string,
|
||||
vol.Optional(CONF_PORT, default=9898): cv.port,
|
||||
vol.Optional(CONF_DISABLE, default=False): cv.boolean,
|
||||
})
|
||||
|
||||
|
||||
|
@ -46,7 +46,7 @@ PyMVGLive==1.1.4
|
||||
PyMata==2.14
|
||||
|
||||
# homeassistant.components.xiaomi_aqara
|
||||
PyXiaomiGateway==0.9.3
|
||||
PyXiaomiGateway==0.9.4
|
||||
|
||||
# homeassistant.components.rpi_gpio
|
||||
# RPi.GPIO==0.6.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user