core/homeassistant/components/life360/const.py

16 lines
441 B
Python
Raw Normal View History

2019-06-06 23:07:15 +00:00
"""Constants for Life360 integration."""
2019-07-31 19:25:30 +00:00
DOMAIN = "life360"
2019-06-06 23:07:15 +00:00
2019-07-31 19:25:30 +00:00
CONF_AUTHORIZATION = "authorization"
CONF_CIRCLES = "circles"
CONF_DRIVING_SPEED = "driving_speed"
CONF_ERROR_THRESHOLD = "error_threshold"
CONF_MAX_GPS_ACCURACY = "max_gps_accuracy"
CONF_MAX_UPDATE_WAIT = "max_update_wait"
CONF_MEMBERS = "members"
CONF_SHOW_AS_STATE = "show_as_state"
CONF_WARNING_THRESHOLD = "warning_threshold"
2019-07-31 19:25:30 +00:00
SHOW_DRIVING = "driving"
SHOW_MOVING = "moving"