This is awesome, thank you niro1987. Nice work!
Great use to control at least 10 actions, I use it as a second TV remote for now.
I can get it to work with the new Ikea buttom? Is it because itās need some other settings?
Iāve just ordered one of those - let me see what I can do for you in the coming few days. Should not be that hard to fix.
can anyone help me how to tell the dim up button, to increase brightness and dim down button to decrease brigthness (also the color up and down buttons to change the kelvin or color temp?)
the power button was obvious, it turns on or off the smart switch that is connected to the light, but I donāt know what action should I give the rest and also I donāt see how to tell HA that I have a light that is capable of dimming and changning color temperature (do i have to pair the bulb itself with HA?)
Thankās for such a great and simple blueprint!
did the new HA update break this? the left and right buttons dont work anymore.
I notice under device it says Quirk: fivebtnremotezha.IkeaTradfriRemote1 whereas before the update i believed it said something else. Anyone else?
Mine still work, did you try re-pairing the device?
p.s. the quirk on my device is the same as yours
zhaquirks.ikea.fivebtnremotezha.IkeaTradfriRemote1
think the new zha update fixed it. cheers
Hey niro1987
I am interested to hear if you have solution for the IKEA N2 control? (as Mikael refers to).
thanks in advance
Partially: check out my GitHub, look for the STYRBAR files.
The problem is that the remote sends out the āonā command together with the āholdā command whenever you hold down on one of the arrow buttons. That makes the Custom Actions version of the script difficult.
Ho can you add a condition to one of the buttonās actions, basically only turn a light on if a condition is satisfied. This templated doesnāt seem to allow this as all conditions specified are on a parallel level and not cascaded.
What you want, you can do in a script and then use one of the actions from this blueprint to fire the script.
I paired a new 5 button remote to HA, and I noticed that the Color Up and Color Down buttons donāt do anything in an automation created with this blueprint. I checked an older 5 button remote I already had paired, and they donāt do anything with that one either. I donāt know whether they were working before and when they may have stopped working.
I listened to zha_event when the buttons are pressed, and the events seem fine and are recognized each time. Iām seeing this in the logs for Color Up, for example:
{
"event_type": "zha_event",
"data": {
"device_ieee": "[deleted]",
"unique_id": "[deleted]",
"device_id": "[deleted]",
"endpoint_id": 1,
"cluster_id": 5,
"command": "press",
"args": [
256,
13,
0
]
},
"origin": "LOCAL",
"time_fired": "2022-05-24T00:49:11.732187+00:00",
"context": {
"id": "[deleted]",
"parent_id": null,
"user_id": null
}
}
But the action in the automation isnāt performed. What else can I check or do to figure out why itās not working?
Try removing the device from the network an pair it again.
Hey thanks for all your blueprints! Can I somehow cycle through the light temperature?
Have a look at this blueprint
Right, found that one! Thanks again for these blueprints!!
hey there, awesome blueprints. thanks so much for taking the time to make these. iāve got a quick question: how should i go about setting up a light group to change (or toggle through?) color temperatures using the Short Press - Color Up/Down Button? I specifically would like to be able to do this using the Custom Actions blueprint, because Iād like to be able to have the flexibility to be able to utilize short-press and long-press actions. Thank you!