Quote:
|
Originally Posted by andro
Is using C# a possiblity for this project? Serial port access in C# is really simple.
|
With the right library, it's easy in any language:
SerialPort port = new SerialPort("COM1", 9600);
port.Open();
port.Write("Hello World");
port.Close();
port = Serial(0, 9600)
port.write("Hello World")
port.close()