Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for APCUPSd component."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "apcupsd"
6 CONNECTION_TIMEOUT: int = 10
7 
8 # Field name of last self test retrieved from apcupsd.
9 LAST_S_TEST: Final = "laststest"