Changed from nanoleaf_aurora to nanoleaf (#21913)
Nanoleaf component now supports both nanoleaf lights, Aurora and Canvas Changed the dependency to pynanoleaf, nanoleaf does not seem to be maintained anymorepull/21935/head
parent
bc76055c17
commit
e7c85d350e
|
@ -238,7 +238,7 @@ omit =
|
|||
homeassistant/components/light/limitlessled.py
|
||||
homeassistant/components/light/lw12wifi.py
|
||||
homeassistant/components/light/mystrom.py
|
||||
homeassistant/components/light/nanoleaf_aurora.py
|
||||
homeassistant/components/light/nanoleaf.py
|
||||
homeassistant/components/light/niko_home_control.py
|
||||
homeassistant/components/light/opple.py
|
||||
homeassistant/components/light/osramlightify.py
|
||||
|
|
|
@ -95,7 +95,7 @@ SERVICE_HANDLERS = {
|
|||
'kodi': ('media_player', 'kodi'),
|
||||
'volumio': ('media_player', 'volumio'),
|
||||
'lg_smart_device': ('media_player', 'lg_soundbar'),
|
||||
'nanoleaf_aurora': ('light', 'nanoleaf_aurora'),
|
||||
'nanoleaf_aurora': ('light', 'nanoleaf'),
|
||||
}
|
||||
|
||||
OPTIONAL_SERVICE_HANDLERS = {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
"""
|
||||
Support for Nanoleaf Aurora platform.
|
||||
Support for Nanoleaf Lights.
|
||||
|
||||
For more details about this platform, please refer to the documentation at
|
||||
https://home-assistant.io/components/light.nanoleaf_aurora/
|
||||
https://home-assistant.io/components/light.nanoleaf/
|
||||
"""
|
||||
import logging
|
||||
|
||||
|
@ -19,20 +19,20 @@ from homeassistant.util.color import \
|
|||
color_temperature_mired_to_kelvin as mired_to_kelvin
|
||||
from homeassistant.util.json import load_json, save_json
|
||||
|
||||
REQUIREMENTS = ['nanoleaf==0.4.1']
|
||||
REQUIREMENTS = ['pynanoleaf==0.0.2']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
DEFAULT_NAME = 'Aurora'
|
||||
DEFAULT_NAME = 'Nanoleaf'
|
||||
|
||||
DATA_NANOLEAF_AURORA = 'nanoleaf_aurora'
|
||||
DATA_NANOLEAF = 'nanoleaf'
|
||||
|
||||
CONFIG_FILE = '.nanoleaf_aurora.conf'
|
||||
CONFIG_FILE = '.nanoleaf.conf'
|
||||
|
||||
ICON = 'mdi:triangle-outline'
|
||||
|
||||
SUPPORT_AURORA = (SUPPORT_BRIGHTNESS | SUPPORT_COLOR_TEMP | SUPPORT_EFFECT |
|
||||
SUPPORT_COLOR)
|
||||
SUPPORT_NANOLEAF = (SUPPORT_BRIGHTNESS | SUPPORT_COLOR_TEMP | SUPPORT_EFFECT |
|
||||
SUPPORT_COLOR)
|
||||
|
||||
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||
vol.Required(CONF_HOST): cv.string,
|
||||
|
@ -42,20 +42,19 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|||
|
||||
|
||||
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||
"""Set up the Nanoleaf Aurora device."""
|
||||
import nanoleaf
|
||||
import nanoleaf.setup
|
||||
if DATA_NANOLEAF_AURORA not in hass.data:
|
||||
hass.data[DATA_NANOLEAF_AURORA] = dict()
|
||||
"""Set up the Nanoleaf light."""
|
||||
import pynanoleaf
|
||||
if DATA_NANOLEAF not in hass.data:
|
||||
hass.data[DATA_NANOLEAF] = dict()
|
||||
|
||||
token = ''
|
||||
if discovery_info is not None:
|
||||
host = discovery_info['host']
|
||||
name = discovery_info['hostname']
|
||||
# if device already exists via config, skip discovery setup
|
||||
if host in hass.data[DATA_NANOLEAF_AURORA]:
|
||||
if host in hass.data[DATA_NANOLEAF]:
|
||||
return
|
||||
_LOGGER.info("Discovered a new Aurora: %s", discovery_info)
|
||||
_LOGGER.info("Discovered a new Nanoleaf: %s", discovery_info)
|
||||
conf = load_json(hass.config.path(CONFIG_FILE))
|
||||
if conf.get(host, {}).get('token'):
|
||||
token = conf[host]['token']
|
||||
|
@ -64,8 +63,10 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
|
|||
name = config[CONF_NAME]
|
||||
token = config[CONF_TOKEN]
|
||||
|
||||
nanoleaf_light = pynanoleaf.Nanoleaf(host)
|
||||
|
||||
if not token:
|
||||
token = nanoleaf.setup.generate_auth_token(host)
|
||||
token = nanoleaf_light.request_token()
|
||||
if not token:
|
||||
_LOGGER.error("Could not generate the auth token, did you press "
|
||||
"and hold the power button on %s"
|
||||
|
@ -75,22 +76,22 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
|
|||
conf[host] = {'token': token}
|
||||
save_json(hass.config.path(CONFIG_FILE), conf)
|
||||
|
||||
aurora_light = nanoleaf.Aurora(host, token)
|
||||
nanoleaf_light.token = token
|
||||
|
||||
if aurora_light.on is None:
|
||||
if nanoleaf_light.on is None:
|
||||
_LOGGER.error(
|
||||
"Could not connect to Nanoleaf Aurora: %s on %s", name, host)
|
||||
"Could not connect to Nanoleaf Light: %s on %s", name, host)
|
||||
return
|
||||
|
||||
hass.data[DATA_NANOLEAF_AURORA][host] = aurora_light
|
||||
add_entities([AuroraLight(aurora_light, name)], True)
|
||||
hass.data[DATA_NANOLEAF][host] = nanoleaf_light
|
||||
add_entities([NanoleafLight(nanoleaf_light, name)], True)
|
||||
|
||||
|
||||
class AuroraLight(Light):
|
||||
"""Representation of a Nanoleaf Aurora."""
|
||||
class NanoleafLight(Light):
|
||||
"""Representation of a Nanoleaf Light."""
|
||||
|
||||
def __init__(self, light, name):
|
||||
"""Initialize an Aurora light."""
|
||||
"""Initialize an Nanoleaf light."""
|
||||
self._brightness = None
|
||||
self._color_temp = None
|
||||
self._effect = None
|
||||
|
@ -158,7 +159,7 @@ class AuroraLight(Light):
|
|||
@property
|
||||
def supported_features(self):
|
||||
"""Flag supported features."""
|
||||
return SUPPORT_AURORA
|
||||
return SUPPORT_NANOLEAF
|
||||
|
||||
def turn_on(self, **kwargs):
|
||||
"""Instruct the light to turn on."""
|
||||
|
@ -189,6 +190,6 @@ class AuroraLight(Light):
|
|||
self._brightness = self._light.brightness
|
||||
self._color_temp = self._light.color_temperature
|
||||
self._effect = self._light.effect
|
||||
self._effects_list = self._light.effects_list
|
||||
self._effects_list = self._light.effects
|
||||
self._hs_color = self._light.hue, self._light.saturation
|
||||
self._state = self._light.on
|
|
@ -725,9 +725,6 @@ myusps==1.3.2
|
|||
# homeassistant.components.media_player.nad
|
||||
nad_receiver==0.0.11
|
||||
|
||||
# homeassistant.components.light.nanoleaf_aurora
|
||||
nanoleaf==0.4.1
|
||||
|
||||
# homeassistant.components.device_tracker.keenetic_ndms2
|
||||
ndms2_client==0.0.6
|
||||
|
||||
|
@ -1170,6 +1167,9 @@ pymyq==1.1.0
|
|||
# homeassistant.components.mysensors
|
||||
pymysensors==0.18.0
|
||||
|
||||
# homeassistant.components.light.nanoleaf
|
||||
pynanoleaf==0.0.2
|
||||
|
||||
# homeassistant.components.lock.nello
|
||||
pynello==2.0.2
|
||||
|
||||
|
|
Loading…
Reference in New Issue