//Code to test the hello.ftdi.44 board #include SoftwareSerial mySerial(0,1); void setup() { mySerial.begin(9600); } void loop() { mySerial.println("It works!"); }