mirror of
https://github.com/home-assistant/core.git
synced 2025-11-27 19:48:01 +00:00
15 lines
266 B
Python
15 lines
266 B
Python
"""Constants used by the Withings component."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DEFAULT_TITLE = "Withings"
|
|
|
|
DOMAIN = "withings"
|
|
|
|
SCORE_POINTS = "points"
|
|
UOM_BEATS_PER_MINUTE = "bpm"
|
|
UOM_BREATHS_PER_MINUTE = "br/min"
|
|
UOM_FREQUENCY = "times"
|