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

Namespaces

 cover
 
 light
 
 switch
 

Classes

class  SCSGate
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_SCS_ID = "scs_id"
 
 CONFIG_SCHEMA
 
string DOMAIN = "scsgate"
 
 SCSGATE_SCHEMA
 

Detailed Description

Support for SCSGate components.

Function Documentation

◆ setup()

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

Definition at line 32 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 17 of file __init__.py.

◆ CONF_SCS_ID

string homeassistant.components.scsgate.CONF_SCS_ID = "scs_id"

Definition at line 19 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.scsgate.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {DOMAIN: vol.Schema({vol.Required(CONF_DEVICE): cv.string})}, extra=vol.ALLOW_EXTRA
3 )

Definition at line 23 of file __init__.py.

◆ DOMAIN

string homeassistant.components.scsgate.DOMAIN = "scsgate"

Definition at line 21 of file __init__.py.

◆ SCSGATE_SCHEMA

homeassistant.components.scsgate.SCSGATE_SCHEMA
Initial value:
1 = vol.Schema(
2  {vol.Required(CONF_SCS_ID): cv.string, vol.Optional(CONF_NAME): cv.string}
3 )

Definition at line 27 of file __init__.py.