1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-29 13:13:46 +01:00
Files
core/homeassistant/components/wake_on_lan/const.py
2024-07-19 21:20:43 +02:00

12 lines
228 B
Python

"""Constants for the Wake-On-LAN component."""
from homeassistant.const import Platform
DOMAIN = "wake_on_lan"
PLATFORMS = [Platform.BUTTON]
CONF_OFF_ACTION = "turn_off"
DEFAULT_NAME = "Wake on LAN"
DEFAULT_PING_TIMEOUT = 1