-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
243 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Copyright 2021, Milan Meulemans. | ||
# | ||
# This file is part of aionanoleaf. | ||
# | ||
# aionanoleaf is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# aionanoleaf is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with aionanoleaf. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
"""Nanoleaf events.""" | ||
from __future__ import annotations | ||
|
||
from abc import ABC | ||
|
||
from .typing import EffectsEventData, LayoutEventData, StateEventData, TouchEventData | ||
|
||
SINGLE_TAP = "Single Tap" | ||
DOUBLE_TAP = "Double Tap" | ||
SWIPE_UP = "Swipe Up" | ||
SWIPE_DOWN = "Swipe Down" | ||
SWIPE_LEFT = "Swipe Left" | ||
SWIPE_RIGHT = "Swipe Right" | ||
|
||
|
||
class Event(ABC): | ||
"""Abstract Nanoleaf event.""" | ||
|
||
EVENT_TYPE_ID: int | ||
|
||
|
||
class StateEvent(Event): | ||
"""Nanoleaf state event.""" | ||
|
||
EVENT_TYPE_ID = 1 | ||
|
||
def __init__(self, event_data: StateEventData) -> None: | ||
"""Init Nanoleaf state event.""" | ||
self._event_data = event_data | ||
|
||
@property | ||
def attribute_id(self) -> int: | ||
"""Return attribute ID.""" | ||
return self._event_data["attr"] | ||
|
||
@property | ||
def attribute(self) -> str: | ||
"""Return event attribute.""" | ||
return { | ||
1: "is_on", | ||
2: "brightness", | ||
3: "hue", | ||
4: "saturation", | ||
5: "color_temperature", | ||
6: "color_mode", | ||
}[self.attribute_id] | ||
|
||
@property | ||
def value(self) -> str | int: | ||
"""Return event value, this is the new state of the attribute.""" | ||
return self._event_data["value"] | ||
|
||
|
||
class LayoutEvent(Event): | ||
"""Nanoleaf layout event.""" | ||
|
||
EVENT_TYPE_ID = 2 | ||
|
||
def __init__(self, event_data: LayoutEventData) -> None: | ||
"""Init Nanoleaf layout event.""" | ||
self._event_data = event_data | ||
|
||
@property | ||
def attribute_id(self) -> int: | ||
"""Return event attribute ID.""" | ||
return self._event_data["attr"] | ||
|
||
@property | ||
def attribute(self) -> str: | ||
"""Return event attribute.""" | ||
return { | ||
1: "layout", | ||
2: "global_orientation", | ||
}[self.attribute_id] | ||
|
||
|
||
class EffectsEvent(Event): | ||
"""Nanoleaf effects event.""" | ||
|
||
EVENT_TYPE_ID = 3 | ||
|
||
def __init__(self, event_data: EffectsEventData) -> None: | ||
"""Init Nanoleaf effects event.""" | ||
self._event_data = event_data | ||
|
||
@property | ||
def attribute_id(self) -> int: | ||
"""Return event attribute ID.""" | ||
return self._event_data["attr"] | ||
|
||
@property | ||
def effect(self) -> str: | ||
"""Return the active effect.""" | ||
return self._event_data["value"] | ||
|
||
|
||
class TouchEvent(Event): | ||
"""Nanoleaf touch event.""" | ||
|
||
EVENT_TYPE_ID = 4 | ||
|
||
def __init__(self, event_data: TouchEventData) -> None: | ||
"""Init Nanoleaf touch event.""" | ||
self._event_data = event_data | ||
|
||
@property | ||
def gesture_id(self) -> int: | ||
"""Return gesture ID.""" | ||
return self._event_data["gesture"] | ||
|
||
@property | ||
def gesture(self) -> str: | ||
"""Return gesture.""" | ||
return { | ||
0: SINGLE_TAP, | ||
1: DOUBLE_TAP, | ||
2: SWIPE_UP, | ||
3: SWIPE_DOWN, | ||
4: SWIPE_LEFT, | ||
5: SWIPE_RIGHT, | ||
}.get(self.gesture_id, str(self.gesture_id)) | ||
|
||
@property | ||
def panel_id(self) -> int | None: | ||
"""Return panel ID if gesture has an associated panel else None.""" | ||
panel_id = self._event_data["panelId"] | ||
return None if panel_id == -1 else panel_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters