So I've gotten my Ch5 angular project to upload and show up on the TSW1060.
I'm trying to detect if the touchpanel is Online with the system... reserved join 18494.
But all i ever get is false, even though the processor says it's online.
I've got this in the constructor off my app.component.ts:
CrComLib.subscribeState('b', '18494', (value:any) =>{
console.log("Received from join 18494",value);
this.ControlSystemOnline = value;
}
and this on the HTML
ControlSystemOnline={{ControlSystemOnline}}
Any suggestions??