Home Assistant Unofficial Reference 2024.12.1
__init__.py File Reference

Go to the source code of this file.

Classes

class  homeassistant.components.numato.NumatoAPI
 

Namespaces

 homeassistant.components.numato
 

Functions

def homeassistant.components.numato.adc_port_number (num)
 
def homeassistant.components.numato.float_range (rng)
 
def homeassistant.components.numato.int_range (rng)
 
bool homeassistant.components.numato.setup (HomeAssistant hass, ConfigType config)
 

Variables

 homeassistant.components.numato._LOGGER = logging.getLogger(__name__)
 
 homeassistant.components.numato.ADC_SCHEMA
 
string homeassistant.components.numato.CONF_DEVICE_ID = "id"
 
string homeassistant.components.numato.CONF_DEVICES = "devices"
 
string homeassistant.components.numato.CONF_DISCOVER = "discover"
 
string homeassistant.components.numato.CONF_DST_RANGE = "destination_range"
 
string homeassistant.components.numato.CONF_DST_UNIT = "unit"
 
string homeassistant.components.numato.CONF_INVERT_LOGIC = "invert_logic"
 
string homeassistant.components.numato.CONF_PORTS = "ports"
 
string homeassistant.components.numato.CONF_SRC_RANGE = "source_range"
 
 homeassistant.components.numato.CONFIG_SCHEMA
 
string homeassistant.components.numato.DATA_API = "api"
 
string homeassistant.components.numato.DATA_PORTS_IN_USE = "ports_in_use"
 
list homeassistant.components.numato.DEFAULT_DEV = [f"/dev/ttyACM{i}" for i in range(10)]
 
list homeassistant.components.numato.DEFAULT_DST_RANGE = [0.0, 100.0]
 
bool homeassistant.components.numato.DEFAULT_INVERT_LOGIC = False
 
list homeassistant.components.numato.DEFAULT_SRC_RANGE = [0, 1024]
 
 homeassistant.components.numato.DEVICE_SCHEMA
 
string homeassistant.components.numato.DOMAIN = "numato"
 
 homeassistant.components.numato.IO_PORTS_SCHEMA
 
 homeassistant.components.numato.PORT_RANGE = range(1, 8)
 
 homeassistant.components.numato.PORTS_SCHEMA = vol.Schema({cv.positive_int: cv.string})