You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a WSProxy button inside a multi action and another outside of it on the same page. I want to send setImage to the button outside of my multi action button when pressing the multi action button. Any possible way to do this using node-red?
The text was updated successfully, but these errors were encountered:
What it fixes for you is it caches the StreamDeck keys with their associated contexts.
A StreamDeck context is basically a reference generated by StreamDeck so it knows what device and key we're talking to
That way you're not limited to the context you know (sent by the current event) and you can use sd-output so send an event to any key, as long as node-red knows about it (i.e. it sent at least one event in the past, either while starting, or because the key has been pushed at some point).
I insist, because this is important : if you try to update your "outside" key but your StreamDeck initialized before node-red started or you never pushed that key, the node-red environment won't know how to address it.
So I recommend that during your test, you just push that key so node-red learns its context.
My test is, the function below :
const d = new Date()
msg = {"title": d.getSeconds().toString()}
return msg;
I have a WSProxy button inside a multi action and another outside of it on the same page. I want to send setImage to the button outside of my multi action button when pressing the multi action button. Any possible way to do this using node-red?
The text was updated successfully, but these errors were encountered: