@chris-1243 Which version of the blueprint are you using?
I had issues with the original blueprint from Epmatt which does not seem to be maintained anymore. But LewisSpring have forked the repo and have a working version of the blueprint which I linked to 4 posts above.
I use it and double-press up and down are working.
Yes, I have problem with virtual double press too. It just works the same as a single click even though I enabled the virtual event and set up a very long delay (2000 ms, just to be sure).
The automation text helper looks OK to me (it contains {"a":"on","t":1692790362.108888}) and itās updated with every click. The automation trace show that it work OK up to this point. Here it skips the condition and falls back to the ādefaultā branch:
choose:
- conditions: >-
{{ trigger_action | string in states(helper_last_controller_event) and
trigger_delta | int <= helper_double_press_delay | int }}
@nutshell0115 I just made some tries on the blueprint and checked the version I was using.
I tried several blueprints from LewisSpring, Isismeiro (both are working) and Epmatt (definitely down). The problem was the human interface. I was doing a too fast double click and the command was not sent correctly and interpreted as a single click.
The blueprint from LewisSpring is a great job and I do recommend to follow your link for those interested.
I understand that blueprints are useful to use devices via the home assistant controller. I have understood that via zha you can also bind the remote to other devices in order to control them even without home assistant server being available.
What happens when your remote is both bind to bulbs (for instance) and has also blueprints configured? Which will prevail ?
I like the idea of binding in case my home assistant server is down and I would still be able to swith my lights on.
Many thanks for guidance.
I am currently trying to use the blueprint with the hook - light to work together.
Hi, I Just update the blueprint but still iāve some truble.
When I push the button The automatico recognize the āpressionā bug it do not apply the service.
Here some screenhot.
I have a problem with this blueprint and the new Rodret remote by IKEA (which I like a lot btw). I use @LewisSpring blueprint for styrbar 2001/2002 (selected v1 in the blueprint), and a light hook from the same repository.
Whenever I want to dim (increase or decrease brightness), the light doesnāt stop increasing or decreasing brightness until it has reached full brightness or no brightness at all.
(I had the same effect with the old Tradfri On/Off switch, btw.)
I have checked everything, however canāt find my problem. Anyone an idea?
Thanks alot for your help!
I was trying to integrate this blueprint and didnāt understand why it wasnāt working.
Skimming a little, I found the blueprints of @LewisSpring and @Isismeiro (I see that the user does not recognize me, maybe they have unsubscribed?)
By using one of these ācustomsā I have been able to control an LED strip without problems.
But I didnāt understand so many versions, so many different repositories,ā¦ until I read that the original (the one from @epmatt ) no longer supported.
So, since the EPMatt blueprint is not supported, and lsismeiro
It does not appear as active, I understand that the supported project is that of @LewisSpring
is this correct?
And of all the versions, am I only left with the main one?
thanks a lot
The truth is that it was a bit confusing to decide which repository to follow, among all the variants I have found.
Do I add 8eea618 specifically, or the main? (they seem to be the same)
And I just thought that the one in your repository was better, given that you are here and Isismeiro is not.
Hi,
Main and 8eea618 are the same. My link should have been pointing to main, apologies. Will update that.
@lsismeiro is here. Not sure why you are having trouble seeing his profile.
It is a collaborative effort between me and Luis to update the blueprint and put it somewhere central. - All of the latest versions will be put in Luisā repository.
It was beginning to get confusing in my repository as I was using it to update PR#411 only, whereas Luisā is a truer fork of EPMattās project.
Iām afraid I have overrated my knowledge of Home Assistant and programming.
My idea is to add the color WHITE in the āHue - Saturationā mode.
I am clear that the line to modify is this, but I canāt think of how to add the white mode in each rotation: hs_color: '{{ [((state_attr(light,"hs_color")[0] or 0) + 15) % 360, 100] }}'
The idea I had before discovering this blueprint was to use a list of colors: {% set colors = ["white", "yellow", "green", "blue", "red", "orange", "purple", "pink", "black", "grey", "brown"] %}
Iāll let you know if I can achieve it. I also appreciate ideas.