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

Namespaces

 binary_sensor
 
 climate
 

Classes

class  MaxCubeHandle
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_GATEWAYS = "gateways"
 
 CONFIG_GATEWAY
 
 CONFIG_SCHEMA
 
string DATA_KEY = "maxcube"
 
int DEFAULT_PORT = 62910
 
string DOMAIN = "maxcube"
 
string NOTIFICATION_ID = "maxcube_notification"
 
string NOTIFICATION_TITLE = "Max!Cube gateway setup"
 

Detailed Description

Support for the MAX! Cube LAN Gateway.

Function Documentation

◆ setup()

bool homeassistant.components.maxcube.setup ( HomeAssistant  hass,
ConfigType  config 
)
Establish connection to MAX! Cube.

Definition at line 52 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 18 of file __init__.py.

◆ CONF_GATEWAYS

string homeassistant.components.maxcube.CONF_GATEWAYS = "gateways"

Definition at line 28 of file __init__.py.

◆ CONFIG_GATEWAY

homeassistant.components.maxcube.CONFIG_GATEWAY
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST): cv.string,
4  vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
5  vol.Optional(CONF_SCAN_INTERVAL, default=300): cv.time_period,
6  }
7 )

Definition at line 30 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.maxcube.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Required(CONF_GATEWAYS, default={}): vol.All(
6  cv.ensure_list, [CONFIG_GATEWAY]
7  )
8  }
9  )
10  },
11  extra=vol.ALLOW_EXTRA,
12 )

Definition at line 38 of file __init__.py.

◆ DATA_KEY

string homeassistant.components.maxcube.DATA_KEY = "maxcube"

Definition at line 23 of file __init__.py.

◆ DEFAULT_PORT

int homeassistant.components.maxcube.DEFAULT_PORT = 62910

Definition at line 20 of file __init__.py.

◆ DOMAIN

string homeassistant.components.maxcube.DOMAIN = "maxcube"

Definition at line 21 of file __init__.py.

◆ NOTIFICATION_ID

string homeassistant.components.maxcube.NOTIFICATION_ID = "maxcube_notification"

Definition at line 25 of file __init__.py.

◆ NOTIFICATION_TITLE

string homeassistant.components.maxcube.NOTIFICATION_TITLE = "Max!Cube gateway setup"

Definition at line 26 of file __init__.py.