mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
13 lines
157 B
Arduino
13 lines
157 B
Arduino
void setup() {
|
|
Serial.begin(115200);
|
|
}
|
|
|
|
void loop() {
|
|
while (true) {
|
|
int in = Serial.read();
|
|
if (in != -1) {
|
|
Serial.write(in);
|
|
}
|
|
}
|
|
}
|