Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Valve entity platform."""
2 
3 from enum import StrEnum
4 
5 DOMAIN = "valve"
6 
7 
8 class ValveState(StrEnum):
9  """State of Valve entities."""
10 
11  OPENING = "opening"
12  CLOSING = "closing"
13  CLOSED = "closed"
14  OPEN = "open"