I am relatively new to Home Assistant and can use some guidance.
Goal
Wireless switch on my dustcollector when my woodworking devices are switched on.
Implementation
Binary sensor(s)
I have a few binary sensors indicating if a device is switched on or not. The binary sensors come from ESPHome devices and turn On when the connected device draws a current (using coil and transistor to create TTL true or false).
binary_sensor:
- platform: gpio
pin: GPIO14
name: ${upper_devicename} jointer/planer
Group
I have created a group and want to use this to power on my dustcollector when any of the woodworking devices in this group is turned on.
dustcollector_clients:
name: Dustcollector clients
entities:
- binary_sensor.a3_31_jointer_planer
- binary_sensor.b3_winner_saw
- binary_sensor.b3_winner_shaper
Results
- The binary_sensors appear and flip state when connected to ground (Off) or VCC (On).
- The group appears in Home Assistant and contains the binary sensors and their state flips correctly
Problem
The group state seems not to follow the state of the binary sensors. If any of them, or all are turned on, the state of the group is still off and the switch of the group can be operated independently to On and Off.
Am I doing something wrong?
Am I missing some vital part?