String Texto = String(Serial.read())
will just read the first char that's available...
Better way, drop String and use strings. See Robin2's Serial Input Basics tutorial.[/code]
String Texto = String(Serial.read())
will just read the first char that's available...
Better way, drop String and use strings. See Robin2's Serial Input Basics tutorial.[/code]