From 9c1cd1d31fc33bf1b4c2ed8fc0c64f373818fcbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 25 Jun 2024 22:45:53 +0200 Subject: [PATCH] Add new lights --- huecli/__main__.py | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/huecli/__main__.py b/huecli/__main__.py index 2a8280a..f3883e9 100644 --- a/huecli/__main__.py +++ b/huecli/__main__.py @@ -24,6 +24,7 @@ NAME_TO_ID = { "office": "0x001788010e371aa4", "all": "all_lights", "infuse": "infuse_group", + "living_room": "living_room" } COLOR_MAP = { "red": (0.6942, 0.2963), @@ -45,6 +46,7 @@ class LightID(str, Enum): office = "office" all = "all" infuse = "infuse" + livingroom = "living_room" def get_mqtt_broker(): diff --git a/pyproject.toml b/pyproject.toml index 27f9dc8..265c07d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "huecli" -version = "0.1.3" +version = "0.1.4" description = "Set Philips Hue lights using MQTT" authors = ["Torjus HÃ¥kestad "] license = "MIT"