mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
12 lines
228 B
Python
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
|