You are on page 1of 1

gString x;

void setup() {

Serial.begin(9600);

// put your setup code here, to run once:

void loop() {

// put your main code here, to run repeatedly:

if (Serial.available()!=0)

x= Serial.readString ();

Serial.print ("He recibido= ");

Serial.println (x);

}if ()

You might also like