Dear sirs,
How is it possible to create a front end to an arduino sketch, in order to present a few analog values and control some buttons?
I know how to program in visual basic.net and would like to ask if there is an extension that I could add to vb in order to do the above.
If this can be done using another language, please refer to it.
Best Regards
You want a PC to send serial messages to the Arduino telling it to do something? Look into Processing.
If you include code in your VB program so it can open the COM port the Arduino is connected to it can send and receive data to/from the Arduino. How you write your VB program to generate that data is your business.
I wrote a demo program for communication with an Arduino using Python in this Thread. The general principles will be the same in any programming language.
...R