/////////////////////////////////
// Generated with a lot of love//
// with TUNIOT FOR ESP32 //
// Website: Easycoding.tn //
/////////////////////////////////
void setup()
{
Serial.begin(9600);
Serial.begin(9600);
Serial.println("TUNIOT CODIGO EN SCRATCH");
}
void loop()
{
if (Serial.available() > 0) {
Serial.println("Recibido");
Serial.print("texto recibido : ");
Serial.println(Serial.readString());
Serial.flush();
}
}