Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Support for vacuum cleaner robots (botvacs)."""
2 
3 DOMAIN = "vacuum"
4 
5 STATE_CLEANING = "cleaning"
6 STATE_DOCKED = "docked"
7 STATE_RETURNING = "returning"
8 STATE_ERROR = "error"
9 
10 STATES = [STATE_CLEANING, STATE_DOCKED, STATE_RETURNING, STATE_ERROR]