mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
IKEA Tradfri Gateway: added support for RGB (#7115)
* After rebase and all fixes * Added color_rgb_to_hex to util.color * Added test_color_rgb_to_hex * Changed reference to color_rgb_to_hex * Bumped to pytradfri 0.5, having support for retry * Bumped to pytradfri 0.5, having support for retry * Bumped to pytradfri 0.5, having support for retry * Bumped to pytradfri 0.5, having support for retry * Rolled back to 0.4 * Rolled back to 0.4
This commit is contained in:
parent
a1208261a8
commit
75242e67a7
@ -5,16 +5,16 @@ import logging
|
|||||||
|
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
# Import the device class from the component that you want to support
|
import homeassistant.util.color as color_util
|
||||||
from homeassistant.components.light import ATTR_BRIGHTNESS, \
|
from homeassistant.components.light import (
|
||||||
SUPPORT_BRIGHTNESS, Light, PLATFORM_SCHEMA
|
ATTR_BRIGHTNESS, ATTR_RGB_COLOR, Light,
|
||||||
from homeassistant.const import CONF_HOST, CONF_API_KEY
|
PLATFORM_SCHEMA, SUPPORT_BRIGHTNESS, SUPPORT_RGB_COLOR)
|
||||||
|
from homeassistant.const import CONF_API_KEY, CONF_HOST
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
|
SUPPORTED_FEATURES = (SUPPORT_BRIGHTNESS | SUPPORT_RGB_COLOR)
|
||||||
|
|
||||||
SUPPORTED_FEATURES = (SUPPORT_BRIGHTNESS)
|
# https://github.com/ggravlingen/pytradfri
|
||||||
|
|
||||||
# Home Assistant depends on 3rd party packages for API specific code.
|
|
||||||
REQUIREMENTS = ['pytradfri==0.4']
|
REQUIREMENTS = ['pytradfri==0.4']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
@ -31,7 +31,6 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|||||||
import pytradfri
|
import pytradfri
|
||||||
|
|
||||||
# Assign configuration variables.
|
# Assign configuration variables.
|
||||||
# The configuration check takes care they are present.
|
|
||||||
host = config.get(CONF_HOST)
|
host = config.get(CONF_HOST)
|
||||||
securitycode = config.get(CONF_API_KEY)
|
securitycode = config.get(CONF_API_KEY)
|
||||||
|
|
||||||
@ -58,7 +57,9 @@ class IKEATradfri(Light):
|
|||||||
self._light_control = light.light_control
|
self._light_control = light.light_control
|
||||||
self._light_data = light.light_control.lights[0]
|
self._light_data = light.light_control.lights[0]
|
||||||
self._name = light.name
|
self._name = light.name
|
||||||
|
|
||||||
self._brightness = None
|
self._brightness = None
|
||||||
|
self._rgb_color = None
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def supported_features(self):
|
def supported_features(self):
|
||||||
@ -80,21 +81,36 @@ class IKEATradfri(Light):
|
|||||||
"""Brightness of the light (an integer in the range 1-255)."""
|
"""Brightness of the light (an integer in the range 1-255)."""
|
||||||
return self._light_data.dimmer
|
return self._light_data.dimmer
|
||||||
|
|
||||||
|
@property
|
||||||
|
def rgb_color(self):
|
||||||
|
"""RGB color of the light."""
|
||||||
|
return self._rgb_color
|
||||||
|
|
||||||
def turn_off(self, **kwargs):
|
def turn_off(self, **kwargs):
|
||||||
"""Instruct the light to turn off."""
|
"""Instruct the light to turn off."""
|
||||||
return self._light_control.set_state(False)
|
return self._light_control.set_state(False)
|
||||||
|
|
||||||
def turn_on(self, **kwargs):
|
def turn_on(self, **kwargs):
|
||||||
"""Instruct the light to turn on."""
|
"""
|
||||||
|
Instruct the light to turn on.
|
||||||
|
|
||||||
|
After adding "self._light_data.hexcolor is not None"
|
||||||
|
for ATTR_RGB_COLOR, this also supports Philips Hue bulbs.
|
||||||
|
"""
|
||||||
if ATTR_BRIGHTNESS in kwargs:
|
if ATTR_BRIGHTNESS in kwargs:
|
||||||
self._light.light_control.set_dimmer(kwargs.get(ATTR_BRIGHTNESS))
|
self._light.light_control.set_dimmer(kwargs.get(ATTR_BRIGHTNESS))
|
||||||
|
if ATTR_RGB_COLOR in kwargs and self._light_data.hex_color is not None:
|
||||||
|
self._light.light_control.set_hex_color(
|
||||||
|
color_util.color_rgb_to_hex(*kwargs[ATTR_RGB_COLOR]))
|
||||||
else:
|
else:
|
||||||
self._light.light_control.set_state(True)
|
self._light.light_control.set_state(True)
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Fetch new state data for this light.
|
"""Fetch new state data for this light."""
|
||||||
|
|
||||||
This is the only method that should fetch new data for Home Assistant.
|
|
||||||
"""
|
|
||||||
self._light.update()
|
self._light.update()
|
||||||
self._brightness = self._light_data.dimmer
|
self._brightness = self._light_data.dimmer
|
||||||
|
|
||||||
|
# Handle Hue lights paired with the gatway
|
||||||
|
if self._light_data.hex_color is not None:
|
||||||
|
self._rgb_color = color_util.rgb_hex_to_rgb_list(
|
||||||
|
self._light_data.hex_color)
|
||||||
|
@ -305,6 +305,11 @@ def color_rgbw_to_rgb(r, g, b, w):
|
|||||||
return _match_max_scale((r, g, b, w), rgb)
|
return _match_max_scale((r, g, b, w), rgb)
|
||||||
|
|
||||||
|
|
||||||
|
def color_rgb_to_hex(r, g, b):
|
||||||
|
"""Return a RGB color from a hex color string."""
|
||||||
|
return '{0:02x}{1:02x}{2:02x}'.format(r, g, b)
|
||||||
|
|
||||||
|
|
||||||
def rgb_hex_to_rgb_list(hex_string):
|
def rgb_hex_to_rgb_list(hex_string):
|
||||||
"""Return an RGB color value list from a hex color string."""
|
"""Return an RGB color value list from a hex color string."""
|
||||||
return [int(hex_string[i:i + len(hex_string) // 3], 16)
|
return [int(hex_string[i:i + len(hex_string) // 3], 16)
|
||||||
|
@ -173,6 +173,11 @@ class TestColorUtil(unittest.TestCase):
|
|||||||
self.assertEqual((127, 127, 127),
|
self.assertEqual((127, 127, 127),
|
||||||
color_util.color_rgbw_to_rgb(0, 0, 0, 127))
|
color_util.color_rgbw_to_rgb(0, 0, 0, 127))
|
||||||
|
|
||||||
|
def test_color_rgb_to_hex(self):
|
||||||
|
"""Test color_rgb_to_hex."""
|
||||||
|
self.assertEqual('000000',
|
||||||
|
color_util.color_rgb_to_hex(0, 0, 0))
|
||||||
|
|
||||||
|
|
||||||
class ColorTemperatureMiredToKelvinTests(unittest.TestCase):
|
class ColorTemperatureMiredToKelvinTests(unittest.TestCase):
|
||||||
"""Test color_temperature_mired_to_kelvin."""
|
"""Test color_temperature_mired_to_kelvin."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user