Hi,
Happy new year .
So I am facing a small issue here and after a lot of reading I must conclude that I still can’t figure it out.
What I need is a bit of help getting my Wireless Buttons to be able to dim and bright the light when the button is pressed (single click).
I simply want it to either do a brightness +10 or -10% depending on whats pressed. It is okay if the light is turned off that it turns it on when brightening and also turning off the light if we get below 0%
I do have something similar with turning the volume up and down, but that doesn’t seem to be that easy with the light.
Here is my two automations:
### IHC Wireless Click Left Button ###
- alias: '[Outdoor] IHC Click - Light Bright'
trigger:
platform: state
entity_id: light.ihc_click_left
action:
- entity_id: light.backyard
type: brightness_increase
### IHC Wireless Click Right Button ##
- alias: '[Outdoor] IHC Click - Light Dim'
trigger:
platform: state
entity_id: light.ihc_click_right
action:
- entity_id: light.backyard
type: brightness_decrease
I get an error and I understand that I can’t get the type thing working here. Tried a lot of things, so I hope someone out there can help me out.
Thanks!