Had a bit of a time figuring out how to send command (ie PWR01) in raw format. Finally put a function node between the MQTT in node and the EISCP out node containing the following:
msg.raw = msg.payload;
msg.payload = msg.raw;
return msg;
Only issue is the most current Onkyo Integrat Serial Communication Protocol I can find is 1.38 from April 2017 which is still about 95% accurate for my needs.
Thank you for your "contrib"
Had a bit of a time figuring out how to send command (ie PWR01) in raw format. Finally put a function node between the MQTT in node and the EISCP out node containing the following:
msg.raw = msg.payload;
msg.payload = msg.raw;
return msg;
Only issue is the most current Onkyo Integrat Serial Communication Protocol I can find is 1.38 from April 2017 which is still about 95% accurate for my needs.
Thank you for your "contrib"