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

Namespaces

 config_flow
 
 const
 
 device
 
 entity
 
 number
 
 sensor
 
 switch
 

Functions

bool async_setup (HomeAssistant hass, ConfigType config)
 
bool async_setup_entry (HomeAssistant hass, ConfigEntry entry)
 
bool async_unload_entry (HomeAssistant hass, ConfigEntry entry)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 CONFIG_SCHEMA
 
list PLATFORMS = [Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
 

Detailed Description

The JuiceNet integration.

Function Documentation

◆ async_setup()

bool homeassistant.components.juicenet.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the JuiceNet component.

Definition at line 35 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.juicenet.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Set up JuiceNet from a config entry.

Definition at line 51 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.juicenet.async_unload_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Unload a config entry.

Definition at line 104 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 22 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.juicenet.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  vol.All(
3  cv.deprecated(DOMAIN),
4  {DOMAIN: vol.Schema({vol.Required(CONF_ACCESS_TOKEN): cv.string})},
5  ),
6  extra=vol.ALLOW_EXTRA,
7 )

Definition at line 26 of file __init__.py.

◆ PLATFORMS

list homeassistant.components.juicenet.PLATFORMS = [Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]

Definition at line 24 of file __init__.py.