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

Namespaces

 climate
 
 entity
 
 sensor
 
 switch
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string ACTUATORS = "actuators"
 
 CONFIG_SCHEMA
 
string DOMAIN = "xs1"
 
list PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.SWITCH]
 
string SENSORS = "sensors"
 

Detailed Description

Support for the EZcontrol XS1 gateway.

Function Documentation

◆ setup()

bool homeassistant.components.xs1.setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up XS1 integration.

Definition at line 46 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 21 of file __init__.py.

◆ ACTUATORS

string homeassistant.components.xs1.ACTUATORS = "actuators"

Definition at line 24 of file __init__.py.

◆ CONFIG_SCHEMA

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

Definition at line 28 of file __init__.py.

◆ DOMAIN

string homeassistant.components.xs1.DOMAIN = "xs1"

Definition at line 23 of file __init__.py.

◆ PLATFORMS

list homeassistant.components.xs1.PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.SWITCH]

Definition at line 43 of file __init__.py.

◆ SENSORS

string homeassistant.components.xs1.SENSORS = "sensors"

Definition at line 25 of file __init__.py.