Hi All,
I've made small project SCADA using IP Modem. Now i can connect the IP modem with the my node-red server, and there is no problem. But when I connect with more than 1 IP Modem, for example I want to read 2 IP Modem (port : 1111 & port 2222) with different machine register modbus.
With this connection my SCADA it's works with some noise because I'm using Reply TCP node
[{"id":"11f11255.c2726e","type":"inject","z":"a21129dc.613098","name":"","topic":"","payload":"","payloadType":"date","repeat":"60","crontab":"","once":true,"onceDelay":0.1,"x":160,"y":140,"wires":[["b48c62b3.79539","9764ebba.5ae878","3db9fc7c.5ea234"]]},{"id":"b48c62b3.79539","type":"function","z":"a21129dc.613098","name":"VSD Address from 3200 qty:10","func":"msg.payload = Buffer.from('01030C80000AC775', 'hex'); //address for equest Modbus\nreturn msg;","outputs":1,"noerr":0,"x":420,"y":100,"wires":[["b0a5bdef.65ca68"]]},{"id":"9764ebba.5ae878","type":"function","z":"a21129dc.613098","name":"active command 8442 qty:1","func":"msg.payload = Buffer.from('010320FA0001AFFB', 'hex'); //address for equest Modbus\nreturn msg;","outputs":1,"noerr":0,"x":430,"y":150,"wires":[["b0a5bdef.65ca68"]]},{"id":"3db9fc7c.5ea234","type":"function","z":"a21129dc.613098","name":"Zenith 0 qty:3","func":"msg.payload = Buffer.from('02030000000305F8', 'hex'); //address for equest Modbus\nreturn msg;","outputs":1,"noerr":0,"x":420,"y":210,"wires":[["b0a5bdef.65ca68"]]},{"id":"6314901e.a285f","type":"tcp in","z":"a21129dc.613098","name":"","server":"server","host":"103.253.113.56","port":"9283","datamode":"stream","datatype":"buffer","newline":"","topic":"","base64":false,"x":200,"y":290,"wires":[["1f3d71d.9bb828e","117abb72.930935"]]},{"id":"117abb72.930935","type":"debug","z":"a21129dc.613098","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":570,"y":270,"wires":[]},{"id":"b0a5bdef.65ca68","type":"tcp out","z":"a21129dc.613098","host":"","port":"","beserver":"reply","base64":false,"end":false,"name":"","x":710,"y":180,"wires":[]}]
My questions is, "how to create single communication TCP Request for each port without one reply TCP. "
Regards,
Rizky