I have a device. When I connect it to my PC Using a serial port, I can see data on hyper terminal.
I know what to send from the meter to get on the hyper terminal as:
TX = Voltage_Phase_A while the serial port communication is stable!
Now, here is my question.
I do not want to use any terminal. I would like to have my own version of terminal. Just a simple window that grabs the data out of my device and show it on PC.
So, what language you would think that is straightforward and easy to use and what IDE I should use to make such GUI? Is this project east to do? Any examples that I can have?
You can write a separate c++ app that listens to that serial port in a loop. Writing a serial listener in c++ is not that straight forward, you also can do it in c#: Here is a sample app that does this in c#:
http://www.codeproject.com/Articles/75770/Basic-serial-port-listening-application