Sending Zwave raw commands from Flow

the raw z-wave command is fully raw though, not just configuration command class like the advanced settings input is, so we also need to define that it has to be configuration command class (0x70), and also want to set (0x04) a value to that command class:
hexadecimal command you need for value “1”:
0x70 0x04 0x03, 0x01, 0x01
but as there was a time that hex didn’t work (Homey Pro 2023 made it all 0’s for a reason, not sure if it was fixed yet), so here is also the decimal values:
112, 4, 3, 1, 1

1 Like