LedFx/ledfx/api/find_devices.py

24 lines
621 B
Python

import logging
from aiohttp import web
from ledfx.api import RestEndpoint
from ledfx.utils import async_fire_and_forget
_LOGGER = logging.getLogger(__name__)
class FindDevicesEndpoint(RestEndpoint):
"""REST end-point for detecting and adding wled devices"""
ENDPOINT_PATH = "/api/find_devices"
async def post(self) -> web.Response:
""" Find and add all WLED devices on the LAN """
async_fire_and_forget(
self._ledfx.devices.find_wled_devices(), self._ledfx.loop
)
response = {"status": "success"}
return web.json_response(data=response, status=200)