Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Wake-On-LAN component."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "wake_on_lan"
6 PLATFORMS = [Platform.BUTTON]
7 
8 CONF_OFF_ACTION = "turn_off"
9 
10 DEFAULT_NAME = "Wake on LAN"
11 DEFAULT_PING_TIMEOUT = 1