Which software to interface to computer

truck56:
Howdy I am new to arduino. I have written my first sketch to read the analog 0 port and turn on several LED’s. I would like to know which programming software is the easiest way to send the info to the computer to print on the screen ( VB-6, C++,VB-2010. Etc.). Right now all I want to do, is print the values from analog in. I have Visual basic-6
Thanks for any help

Any language you choose that is "server side" is the correct decision, so if you are more of a Java guy or PHP programmer you can use either one to send and receive packets from or to the Arduino.

How it works:
The Arduino PCB(Printed Circuit Board) has a little chip on it called a TFID IC (Integrated Circuit) that makes your computer see the USB as a COM port. The COM port is generally found on older machines, the large COM ports have 25 pins and are known as DB25 ports.
When you use a GUI (Graphical User Interface) the program sends Packets of Data to the USB port, the Arduino listens for the packet and does so at extremely high speeds thanks to the Crystal, once the information is received by the Arduino AVR sketch takes over, if you want to receive data the GUI you wrote using the language of choice does whatever you have asked of it once receiving the data packet.

So it is entirely up to you, the real question here is what information are you trying to send to the computer? What are you trying to accomplish?

Cheers,
Rob
http://whatisacnc.com