/* #include SoftwareSerial mySerial(0,1); // RX PA1 12, TX PA0 13 (flipped) */ void setup() { Serial.begin(9600); // Set the data speed } void loop() { Serial.println("Notice me"); // Print "Notice me" in the serial monitor delay(1000); // Wait a second }