what is the question?
you code simply echoes the byte it receives back to the sender
void loop() {
if (Serial.available() > 0)
Serial.write (Serial.read());
}
all data is bits: graphics, letters (ascii), integers.
a byte is 8-bits
what is the question?
you code simply echoes the byte it receives back to the sender
void loop() {
if (Serial.available() > 0)
Serial.write (Serial.read());
}
all data is bits: graphics, letters (ascii), integers.
a byte is 8-bits