Lab_interaccio/2009/tunel/tunel.pde

17 lines
154 B
Plaintext
Raw Permalink Normal View History

2025-02-25 21:21:58 +01:00
void setup()
{
Serial.begin(9600);
}
void loop()
{
while (Serial.available()>0)
{
Serial.print(Serial.read(),BYTE);
}
}