Home Assistant Unofficial Reference
2024.12.1
const.py
Go to the documentation of this file.
1
"""Constants for the Hydrawise integration."""
2
3
from
datetime
import
timedelta
4
import
logging
5
6
LOGGER = logging.getLogger(__package__)
7
8
DOMAIN =
"hydrawise"
9
DEFAULT_WATERING_TIME =
timedelta
(minutes=15)
10
11
MANUFACTURER =
"Hydrawise"
12
13
MAIN_SCAN_INTERVAL =
timedelta
(minutes=5)
14
WATER_USE_SCAN_INTERVAL =
timedelta
(minutes=60)
15
16
SIGNAL_UPDATE_HYDRAWISE =
"hydrawise_update"
17
18
SERVICE_RESUME =
"resume"
19
SERVICE_START_WATERING =
"start_watering"
20
SERVICE_SUSPEND =
"suspend"
21
22
ATTR_DURATION =
"duration"
23
ATTR_UNTIL =
"until"
homeassistant.components.uptimerobot.const.timedelta
timedelta
Definition:
const.py:14
core
homeassistant
components
hydrawise
const.py
Generated by
1.9.1