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

Namespaces

 alarm_control_panel
 
 api
 
 application_credentials
 
 binary_sensor
 
 config_flow
 
 const
 
 entity
 
 sensor
 

Classes

class  MinutPointClient
 
class  PointData
 

Functions

bool async_setup (HomeAssistant hass, ConfigType config)
 
bool async_setup_entry (HomeAssistant hass, PointConfigEntry entry)
 
None async_setup_webhook (HomeAssistant hass, PointConfigEntry entry, PointSession session)
 
bool async_unload_entry (HomeAssistant hass, PointConfigEntry entry)
 
None handle_webhook (HomeAssistant hass, str webhook_id, web.Request request)
 

Variables

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

Detailed Description

Support for Minut Point.

Function Documentation

◆ async_setup()

bool homeassistant.components.point.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the Minut Point component.

Definition at line 66 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.point.async_setup_entry ( HomeAssistant  hass,
PointConfigEntry  entry 
)
Set up Minut Point from a config entry.

Definition at line 107 of file __init__.py.

◆ async_setup_webhook()

None homeassistant.components.point.async_setup_webhook ( HomeAssistant  hass,
PointConfigEntry  entry,
PointSession   session 
)
Set up a webhook to handle binary sensor events.

Definition at line 146 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.point.async_unload_entry ( HomeAssistant  hass,
PointConfigEntry  entry 
)
Unload a config entry.

Definition at line 174 of file __init__.py.

◆ handle_webhook()

None homeassistant.components.point.handle_webhook ( HomeAssistant  hass,
str  webhook_id,
web.Request   request 
)
Handle webhook callback.

Definition at line 186 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 47 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.point.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Required(CONF_CLIENT_ID): cv.string,
6  vol.Required(CONF_CLIENT_SECRET): cv.string,
7  }
8  )
9  },
10  extra=vol.ALLOW_EXTRA,
11 )

Definition at line 53 of file __init__.py.

◆ PLATFORMS

list homeassistant.components.point.PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]

Definition at line 49 of file __init__.py.

◆ PointConfigEntry

homeassistant.components.point.PointConfigEntry

Definition at line 51 of file __init__.py.