I have device (electric meter) with unspecified protocol with RS-485. I have some documentation about what messages I can send to get some readings. Goal is to write some Java app to get readings via RS-485 <=> Ethernet converter. For example here is message should be sent via RS-485 to get current energy spent (written in documentation included with electric meter):
01 00 01 08 0 255
In short: How can I send this message to device using converter ?
Which Java lib shoud I use? Would be this message be different if I send it via Ethernet? How do I work with encapsulated Modbus messages in this case? Is there any simple ethernet terminal for Windows 10 to perfofm testing (something like this one for serial port "Serial Port Monitor"?
Thanks a lot for help.