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

Namespaces

 const
 
 cover
 
 entity
 
 light
 
 sensor
 
 switch
 

Functions

def _discover (hass, config, component_name, found_tellcore_devices)
 
bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_SIGNAL_REPETITIONS = "signal_repetitions"
 
 CONFIG_SCHEMA
 
string DOMAIN = "tellstick"
 

Detailed Description

Support for Tellstick.

Function Documentation

◆ _discover()

def homeassistant.components.tellstick._discover (   hass,
  config,
  component_name,
  found_tellcore_devices 
)
private
Set up and send the discovery event.

Definition at line 49 of file __init__.py.

◆ setup()

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

Definition at line 72 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 25 of file __init__.py.

◆ CONF_SIGNAL_REPETITIONS

string homeassistant.components.tellstick.CONF_SIGNAL_REPETITIONS = "signal_repetitions"

Definition at line 27 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.tellstick.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Inclusive(CONF_HOST, "tellcore-net"): cv.string,
6  vol.Inclusive(CONF_PORT, "tellcore-net"): vol.All(
7  cv.ensure_list, [cv.port], vol.Length(min=2, max=2)
8  ),
9  vol.Optional(
10  CONF_SIGNAL_REPETITIONS, default=DEFAULT_SIGNAL_REPETITIONS
11  ): vol.Coerce(int),
12  }
13  )
14  },
15  extra=vol.ALLOW_EXTRA,
16 )

Definition at line 31 of file __init__.py.

◆ DOMAIN

string homeassistant.components.tellstick.DOMAIN = "tellstick"

Definition at line 29 of file __init__.py.