Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.dovado Namespace Reference

Namespaces

 notify
 
 sensor
 

Classes

class  DovadoData
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 CONFIG_SCHEMA
 
string DOMAIN = "dovado"
 
 MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)
 

Detailed Description

Support for Dovado router.

Function Documentation

◆ setup()

bool homeassistant.components.dovado.setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the Dovado component.

Definition at line 43 of file __init__.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.dovado._LOGGER = logging.getLogger(__name__)
private

Definition at line 22 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.dovado.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Required(CONF_USERNAME): cv.string,
6  vol.Required(CONF_PASSWORD): cv.string,
7  vol.Optional(CONF_HOST): cv.string,
8  vol.Optional(CONF_PORT): cv.port,
9  }
10  )
11  },
12  extra=vol.ALLOW_EXTRA,
13 )

Definition at line 26 of file __init__.py.

◆ DOMAIN

string homeassistant.components.dovado.DOMAIN = "dovado"

Definition at line 24 of file __init__.py.

◆ MIN_TIME_BETWEEN_UPDATES

homeassistant.components.dovado.MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)

Definition at line 40 of file __init__.py.