Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Nanoleaf integration."""
2 
3 DOMAIN = "nanoleaf"
4 
5 NANOLEAF_EVENT = f"{DOMAIN}_event"
6 
7 TOUCH_MODELS = {"NL29", "NL42", "NL52"}
8 
9 TOUCH_GESTURE_TRIGGER_MAP = {
10  2: "swipe_up",
11  3: "swipe_down",
12  4: "swipe_left",
13  5: "swipe_right",
14 }