Let’s say i’m working @ R&D department of a company.
Many times during engineering i need opinion from others about design variants.
So i want to count opinions.
I tried the counter option of home assistant but i had no luck.
I need to track four different gui switches for four different design variants. With each hit one of four counter has to be incremented by 1.
I would like that everybody can give his opinion on a Raspberrypi Hass.io Touchscreen Terminal about it. So everybody can pass by and give me a feedback.
Create some input booleans to show on the front end. These show up like switches. They will start as off and when pushed will turn on. When on they trigger the automation below which after it increments the counter, will turn it back off.
input_boolean:
option1:
name: Option1
initial: off
option2:
name: Option2
initial: off
option3:
name: Option3
initial: off
option4:
name: Option4
initial: off
This is the automation that monitors the input boolean, increments the counter and then turns the input_boolean back off.