From a2923d94a8ec510d3ca255b257689ae6ef8eca7c Mon Sep 17 00:00:00 2001 From: Josh Anderson Date: Tue, 5 Dec 2017 22:53:49 +0000 Subject: [PATCH] Add 'support_rgb_color' to supported features --- aurora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora.py b/aurora.py index aec45f8..b7d4591 100644 --- a/aurora.py +++ b/aurora.py @@ -12,7 +12,7 @@ REQUIREMENTS = ['nanoleaf==0.4.0'] -SUPPORT_AURORA = ( SUPPORT_BRIGHTNESS | SUPPORT_COLOR_TEMP ) +SUPPORT_AURORA = ( SUPPORT_BRIGHTNESS | SUPPORT_COLOR_TEMP | SUPPORT_RGB_COLOR ) _LOGGER = logging.getLogger(__name__)