BeagleBone Black GPIO
The bbb_gpio
integration is the base for all BeagleBone Black related GPIO platforms in Home Assistant.
There is no setup needed for the integration itself.
Binary Sensor
The bbb_gpio
binary sensor platform allows you to read sensor values of the GPIOs of your BeagleBone Black.
Configuration
To use your BeagleBone Black’s GPIO in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
binary_sensor:
- platform: bbb_gpio
pins:
P8_12:
name: Door
GPIO0_26:
name: Window
Configuration Variables
List of used pins.
Port numbers and corresponding names.
Debounce time for reading input pin defined in milliseconds [ms].
For more details about the GPIO layout, visit the article about the BeagleBone Black.
Switch
The bbb_gpio
switch platform allows you to control the GPIOs of your BeagleBone Black.
Configuration
To use your BeagleBone Black’s GPIO in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
switch:
- platform: bbb_gpio
pins:
GPIO0_7:
name: LED Red
P9_12:
name: LED Green
For more details about the GPIO layout, visit the article about the BeagleBone Black.
Suggest an edit to this page, or provide/view feedback for this page.