Example #1
0
 public Arduino(int ComPort, int baud)
 {
     IO = new Input_Output(ComPort, baud);
     IO.StartRead();
 }
Example #2
0
 //________ Constructs the Arduino and IO objects with the correct comport and Baud Rate_____
 public Arduino(int ComPort)
 {
     IO = new Input_Output(ComPort);
     IO.StartRead();
 }