i have a multiroom audio nuvo 6G with a serial port. The serial port is connected with a tcp/ip serial converter. i like to send ascii commands f.e. ‘*Z1ON\r\n’ to this converter by clicking on a button in the loveleace UI. i succeeded in this by using shell command in the configuration.yaml
shell_command:
nuvo_z3off: echo -e “*Z3OFF\r\n”|nc 192.168.1.79 10000
nuvo_z3on: echo -e “*Z3ON\r\n”|nc 192.168.1.79 10000
when sending this command, nuvo system always answers:
#Z3,ON,SRC1,VOL67,DND0,LOCK0\r\n
i like to capture this response and show the volume in the loveleace UI
Any idea’s on resolving this issue…?