//Code to test the atmega328P board with serial communication. #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("Funciona!"); //delay(100); }