Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

void setup() {

Serial.begin(9600);
}

void loop()
{
while(Serial.available()){
Serial.write(Serial.read());
}
}

You might also like