Files
ha_ecovacs_bumper/custom_components/ecovacs/const.py
T
bittles db2c4ec880 optimizations
split out sucks constants to their own file, no need to define verify ssl.  if bumper is true then verify ssl false
2023-01-03 22:21:14 -05:00

14 lines
316 B
Python

import logging
LOGGER = logging.getLogger(__name__)
#ecovacs constants
#init constants
ECOVACS_DEVICES = "ecovacs_devices"
DOMAIN = "ecovacs"
CONF_COUNTRY = "country"
CONF_CONTINENT = "continent"
#bumper config vars
CONF_BUMPER = "bumper"
CONF_BUMPER_SERVER = "bumper_server"
SERVER_ADDRESS = None
VERIFY_SSL = True