Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.fibaro.binary_sensor Namespace Reference

Classes

class  FibaroBinarySensor
 

Functions

None async_setup_entry (HomeAssistant hass, ConfigEntry entry, AddEntitiesCallback async_add_entities)
 

Variables

dictionary SENSOR_TYPES
 

Detailed Description

Support for Fibaro binary sensors.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.fibaro.binary_sensor.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry,
AddEntitiesCallback  async_add_entities 
)
Perform the setup for Fibaro controller devices.

Definition at line 44 of file binary_sensor.py.

Variable Documentation

◆ SENSOR_TYPES

dictionary homeassistant.components.fibaro.binary_sensor.SENSOR_TYPES
Initial value:
1 = {
2  "com.fibaro.floodSensor": ["Flood", "mdi:water", BinarySensorDeviceClass.MOISTURE],
3  "com.fibaro.motionSensor": ["Motion", "mdi:run", BinarySensorDeviceClass.MOTION],
4  "com.fibaro.doorSensor": ["Door", "mdi:window-open", BinarySensorDeviceClass.DOOR],
5  "com.fibaro.windowSensor": [
6  "Window",
7  "mdi:window-open",
8  BinarySensorDeviceClass.WINDOW,
9  ],
10  "com.fibaro.smokeSensor": ["Smoke", "mdi:smoking", BinarySensorDeviceClass.SMOKE],
11  "com.fibaro.FGMS001": ["Motion", "mdi:run", BinarySensorDeviceClass.MOTION],
12  "com.fibaro.heatDetector": ["Heat", "mdi:fire", BinarySensorDeviceClass.HEAT],
13  "com.fibaro.accelerometer": [
14  "Moving",
15  "mdi:axis-arrow",
16  BinarySensorDeviceClass.MOVING,
17  ],
18 }

Definition at line 24 of file binary_sensor.py.