Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.tado.services Namespace Reference

Functions

None setup_services (HomeAssistant hass)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 SCHEMA_ADD_METER_READING
 

Detailed Description

Services for the Tado integration.

Function Documentation

◆ setup_services()

None homeassistant.components.tado.services.setup_services ( HomeAssistant  hass)
Set up the services for the Tado integration.

Definition at line 33 of file services.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.tado.services._LOGGER = logging.getLogger(__name__)
private

Definition at line 19 of file services.py.

◆ SCHEMA_ADD_METER_READING

homeassistant.components.tado.services.SCHEMA_ADD_METER_READING
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_CONFIG_ENTRY): selector.ConfigEntrySelector(
4  {
5  "integration": DOMAIN,
6  }
7  ),
8  vol.Required(CONF_READING): vol.Coerce(int),
9  }
10 )

Definition at line 20 of file services.py.