1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 04:05:01 +01:00
Files

13 lines
273 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"
CONF_SECUREON_PASSWORD = "secureon_password"
DEFAULT_NAME = "Wake on LAN"
DEFAULT_PING_TIMEOUT = 1