Skip to content

Commit

Permalink
Make each button a seperate device (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohNan committed Sep 19, 2023
1 parent 67c9cf3 commit 16a70e2
Show file tree
Hide file tree
Showing 9 changed files with 414 additions and 79 deletions.
29 changes: 22 additions & 7 deletions custom_components/flichub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@
from pyflichub.client import FlicHubTcpClient
from pyflichub.command import Command
from pyflichub.event import Event
from .const import CONF_PASSWORD, CLIENT_READY_TIMEOUT, EVENT_CLICK, EVENT_DATA_NAME, EVENT_DATA_CLICK_TYPE, \
EVENT_DATA_SERIAL_NUMBER
from .const import CLIENT_READY_TIMEOUT, EVENT_CLICK, EVENT_DATA_NAME, EVENT_DATA_CLICK_TYPE, \
EVENT_DATA_SERIAL_NUMBER, DATA_BUTTONS, DATA_HUB
from .const import DOMAIN
from .const import PLATFORMS

SCAN_INTERVAL = timedelta(seconds=30)

_LOGGER: logging.Logger = logging.getLogger(__package__)


@dataclass
class FlicHubEntryData:
"""Class for sharing data within the Nanoleaf integration."""
Expand All @@ -51,8 +52,19 @@ def on_event(button: FlicButton, event: Event):
def on_commend(command: Command):
_LOGGER.debug(f"Command: {command.data}")
if command.command == "buttons":
coordinator.async_set_updated_data({button.serial_number : button for button in command.data })

coordinator.async_set_updated_data(
{
DATA_BUTTONS: {button.serial_number: button for button in command.data},
DATA_HUB: coordinator.data.get(DATA_HUB, None) if coordinator.data else None
}
)
if command.command == "network":
coordinator.async_set_updated_data(
{
DATA_BUTTONS: coordinator.data.get(DATA_BUTTONS, None) if coordinator.data else {},
DATA_HUB: command.data
}
)

client = FlicHubTcpClient(
ip=entry.data[CONF_IP_ADDRESS],
Expand All @@ -65,7 +77,11 @@ def on_commend(command: Command):

async def async_get_buttons() -> [FlicButton]:
buttons = await client.get_buttons()
return {button.serial_number : button for button in buttons }
hub_info = await client.get_hubinfo()
return {
DATA_BUTTONS: {button.serial_number: button for button in buttons},
DATA_HUB: hub_info
}

def client_connected():
_LOGGER.debug("Connected!")
Expand Down Expand Up @@ -113,13 +129,12 @@ def stop_client(event):

async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Handle removal of an entry."""
coordinator = hass.data[DOMAIN][entry.entry_id]
hass.data[DOMAIN][entry.entry_id].client.disconnect()
unloaded = all(
await asyncio.gather(
*[
hass.config_entries.async_forward_entry_unload(entry, platform)
for platform in PLATFORMS
if platform in coordinator.platforms
]
)
)
Expand Down
Loading

0 comments on commit 16a70e2

Please sign in to comment.