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

Namespaces

 const
 
 sensor
 

Classes

class  EbusdData
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 
def verify_ebusd_config (config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
int CACHE_TTL = 900
 
string CONF_CIRCUIT = "circuit"
 
 CONFIG_SCHEMA
 
string DEFAULT_NAME = "ebusd"
 
int DEFAULT_PORT = 8888
 
string SERVICE_EBUSD_WRITE = "ebusd_write"
 

Detailed Description

Support for Ebusd daemon for communication with eBUS heating systems.

Function Documentation

◆ setup()

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

Definition at line 59 of file __init__.py.

◆ verify_ebusd_config()

def homeassistant.components.ebusd.verify_ebusd_config (   config)
Verify eBusd config.

Definition at line 31 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 22 of file __init__.py.

◆ CACHE_TTL

int homeassistant.components.ebusd.CACHE_TTL = 900

Definition at line 27 of file __init__.py.

◆ CONF_CIRCUIT

string homeassistant.components.ebusd.CONF_CIRCUIT = "circuit"

Definition at line 26 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.ebusd.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  vol.All(
5  {
6  vol.Required(CONF_CIRCUIT): cv.string,
7  vol.Required(CONF_HOST): cv.string,
8  vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
9  vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
10  vol.Optional(CONF_MONITORED_CONDITIONS, default=[]): cv.ensure_list,
11  },
12  verify_ebusd_config,
13  )
14  )
15  },
16  extra=vol.ALLOW_EXTRA,
17 )

Definition at line 40 of file __init__.py.

◆ DEFAULT_NAME

string homeassistant.components.ebusd.DEFAULT_NAME = "ebusd"

Definition at line 24 of file __init__.py.

◆ DEFAULT_PORT

int homeassistant.components.ebusd.DEFAULT_PORT = 8888

Definition at line 25 of file __init__.py.

◆ SERVICE_EBUSD_WRITE

string homeassistant.components.ebusd.SERVICE_EBUSD_WRITE = "ebusd_write"

Definition at line 28 of file __init__.py.