2021-11-09 15:41:45 +00:00
|
|
|
"""Constants for the Wake-On-LAN component."""
|
2024-03-08 19:38:34 +00:00
|
|
|
|
2024-07-19 19:20:43 +00:00
|
|
|
from homeassistant.const import Platform
|
|
|
|
|
2021-11-09 15:41:45 +00:00
|
|
|
DOMAIN = "wake_on_lan"
|
2024-07-19 19:20:43 +00:00
|
|
|
PLATFORMS = [Platform.BUTTON]
|
|
|
|
|
|
|
|
CONF_OFF_ACTION = "turn_off"
|
|
|
|
|
|
|
|
DEFAULT_NAME = "Wake on LAN"
|
|
|
|
DEFAULT_PING_TIMEOUT = 1
|