//Code to test the hello.ftdi.44 board with serial communication and a potentiometer. #include SoftwareSerial mySerial(0,1); int pot_data = 0; int pot_pin = A3; void setup() { mySerial.begin(9600); } void loop() { pot_data = analogRead(pot_pin); mySerial.println(pot_data); delay(100); }