mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
15 lines
230 B
Python
15 lines
230 B
Python
"""Constants for the Dexcom integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "dexcom"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
MMOL_L = "mmol/L"
|
|
MG_DL = "mg/dL"
|
|
|
|
CONF_SERVER = "server"
|
|
|
|
SERVER_OUS = "EU"
|
|
SERVER_US = "US"
|