26 lines
167 B
C++
26 lines
167 B
C++
void setup() {
|
|
|
|
Serial.begin(2400);
|
|
}
|
|
|
|
void loop() {
|
|
if (Serial.available())
|
|
{
|
|
int inByte = Serial.read();
|
|
Serial.write(inByte);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|