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

Classes

class  IdteckReader
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 CONFIG_SCHEMA
 
string DOMAIN = "idteck_prox"
 
string EVENT_IDTECK_PROX_KEYCARD = "idteck_prox_keycard"
 

Detailed Description

Component for interfacing RFK101 proximity card readers.

Function Documentation

◆ setup()

bool homeassistant.components.idteck_prox.setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the IDTECK proximity card component.

Definition at line 45 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 20 of file __init__.py.

◆ CONFIG_SCHEMA

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

Definition at line 26 of file __init__.py.

◆ DOMAIN

string homeassistant.components.idteck_prox.DOMAIN = "idteck_prox"

Definition at line 22 of file __init__.py.

◆ EVENT_IDTECK_PROX_KEYCARD

string homeassistant.components.idteck_prox.EVENT_IDTECK_PROX_KEYCARD = "idteck_prox_keycard"

Definition at line 24 of file __init__.py.