mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
commit
3f8c91d77c
@ -26,7 +26,7 @@ from homeassistant.helpers.translation import async_get_translations
|
|||||||
from homeassistant.loader import bind_hass
|
from homeassistant.loader import bind_hass
|
||||||
from homeassistant.util.yaml import load_yaml
|
from homeassistant.util.yaml import load_yaml
|
||||||
|
|
||||||
REQUIREMENTS = ['home-assistant-frontend==20180803.0']
|
REQUIREMENTS = ['home-assistant-frontend==20180804.0']
|
||||||
|
|
||||||
DOMAIN = 'frontend'
|
DOMAIN = 'frontend'
|
||||||
DEPENDENCIES = ['api', 'websocket_api', 'http', 'system_log',
|
DEPENDENCIES = ['api', 'websocket_api', 'http', 'system_log',
|
||||||
|
@ -166,6 +166,7 @@ def get_pt2262_device(device_id):
|
|||||||
"""Look for the device which id matches the given device_id parameter."""
|
"""Look for the device which id matches the given device_id parameter."""
|
||||||
for device in RFX_DEVICES.values():
|
for device in RFX_DEVICES.values():
|
||||||
if (hasattr(device, 'is_lighting4') and
|
if (hasattr(device, 'is_lighting4') and
|
||||||
|
device.masked_id is not None and
|
||||||
device.masked_id == get_pt2262_deviceid(device_id,
|
device.masked_id == get_pt2262_deviceid(device_id,
|
||||||
device.data_bits)):
|
device.data_bits)):
|
||||||
_LOGGER.debug("rfxtrx: found matching device %s for %s",
|
_LOGGER.debug("rfxtrx: found matching device %s for %s",
|
||||||
|
@ -17,7 +17,7 @@ from homeassistant.helpers.entity import Entity
|
|||||||
from homeassistant.util import Throttle
|
from homeassistant.util import Throttle
|
||||||
from homeassistant.util.temperature import celsius_to_fahrenheit
|
from homeassistant.util.temperature import celsius_to_fahrenheit
|
||||||
|
|
||||||
REQUIREMENTS = ['Adafruit_Python_DHT==1.3.2']
|
REQUIREMENTS = ['Adafruit-DHT==1.3.3']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"""Constants used by Home Assistant components."""
|
"""Constants used by Home Assistant components."""
|
||||||
MAJOR_VERSION = 0
|
MAJOR_VERSION = 0
|
||||||
MINOR_VERSION = 75
|
MINOR_VERSION = 75
|
||||||
PATCH_VERSION = '0'
|
PATCH_VERSION = '1'
|
||||||
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
||||||
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
||||||
REQUIRED_PYTHON_VER = (3, 5, 3)
|
REQUIRED_PYTHON_VER = (3, 5, 3)
|
||||||
|
@ -14,6 +14,9 @@ voluptuous==0.11.3
|
|||||||
# homeassistant.components.nuimo_controller
|
# homeassistant.components.nuimo_controller
|
||||||
--only-binary=all nuimo==0.1.0
|
--only-binary=all nuimo==0.1.0
|
||||||
|
|
||||||
|
# homeassistant.components.sensor.dht
|
||||||
|
# Adafruit-DHT==1.3.3
|
||||||
|
|
||||||
# homeassistant.components.sensor.sht31
|
# homeassistant.components.sensor.sht31
|
||||||
Adafruit-GPIO==1.0.3
|
Adafruit-GPIO==1.0.3
|
||||||
|
|
||||||
@ -23,9 +26,6 @@ Adafruit-SHT31==1.0.2
|
|||||||
# homeassistant.components.bbb_gpio
|
# homeassistant.components.bbb_gpio
|
||||||
# Adafruit_BBIO==1.0.0
|
# Adafruit_BBIO==1.0.0
|
||||||
|
|
||||||
# homeassistant.components.sensor.dht
|
|
||||||
# Adafruit_Python_DHT==1.3.2
|
|
||||||
|
|
||||||
# homeassistant.components.doorbird
|
# homeassistant.components.doorbird
|
||||||
DoorBirdPy==0.1.3
|
DoorBirdPy==0.1.3
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ COMMENT_REQUIREMENTS = (
|
|||||||
'RPi.GPIO',
|
'RPi.GPIO',
|
||||||
'raspihats',
|
'raspihats',
|
||||||
'rpi-rf',
|
'rpi-rf',
|
||||||
'Adafruit_Python_DHT',
|
'Adafruit-DHT',
|
||||||
'Adafruit_BBIO',
|
'Adafruit_BBIO',
|
||||||
'fritzconnection',
|
'fritzconnection',
|
||||||
'pybluez',
|
'pybluez',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user