The plugin seems to be hanging in pioneer-avr.js here:
data = await this.s.sendMessage(command);
I added log output below and I can see data being returned be the avr.
?RGB00 returns --> RGB000PHONO
socket.on('data', (d) => {
let data = d
.toString()
.replace('\n', '')
.replace('\r', '');
resolve(data);
console.log(data) //output to log here
socket.end();
});
The plugin seems to be hanging in pioneer-avr.js here:
data = await this.s.sendMessage(command);
I added log output below and I can see data being returned be the avr.
?RGB00 returns --> RGB000PHONO
I also captured the content of this.s: