-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Send manually constructed commands using Out node (or new node) #105
Comments
Thanks Andrey. I can add the payload in json format, but how do I add the rest of the command? e.g. command, cluster, endpoint, etc. Using the Fade Off command as an example:
I'm assuming the endpoint is the device, but I'm not sure. |
Ability to set multiple parameters at once directly in the UI would be nice. Simple example : setting |
The command you want is called MoveToLevelWithOnOff. You can't send more than one ZigBee command at a time (to my knowledge) but there are a tonne of commands designed to do more than one thing. Are you using standalone Z2M or are you using Z2M as a Home Assistant add-on? In the Z2M UI, you have to know the correct command to send but from the developer tab in HA (and other places), you don't have to know the commands because you can just select the parameters you want and let Z2M/HA figure it out. |
Thanks. I ended up using {"brightness":255,"state":"ON"} which works. My point is that it should be straightforward to do so from the UI (directly in the dropdown). |
I'd like that too. Have you got a feature request or issue posted somewhere that I can follow? |
Can you please add the ability to construct commands and payloads manually in an Out node? Currently, we can only select from preset command options in a dropdown list.
Context: I used a Zigbee sniffer to see what commands my Philips Hue bridge was sending before I moved to Zigbee2MQTT, and now I'd like to use Node Red to send the commands that Zigbee2MQTT can only send from the dev console.
Commands like these:
0x0006
0x40
(off with effect){ "effected": 0, "effectvariant": 0 }
0x0008
0x02
(write attributes)0x4000
(startup level) =0xff
(previous)* Z2M can send 2x other startup commands without dev console, but not this one)
Something like the zigbee2mqtt dev console in a node. Using the Fade Off example:
0x0006
which I pulled from the Hue packet.0x40
which I also pulled from the Hue packet.The text was updated successfully, but these errors were encountered: