Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.dexcom.config_flow Namespace Reference

Classes

class  DexcomConfigFlow
 

Variables

 DATA_SCHEMA
 

Detailed Description

Config flow for Dexcom integration.

Variable Documentation

◆ DATA_SCHEMA

homeassistant.components.dexcom.config_flow.DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_USERNAME): str,
4  vol.Required(CONF_PASSWORD): str,
5  vol.Required(CONF_SERVER): vol.In({SERVER_US, SERVER_OUS}),
6  }
7 )

Definition at line 15 of file config_flow.py.