Concept Flow - Serial.read() for receiving data
Start
Check if Serial data available?
No→Wait
Yes
Call Serial.read()
Store/read byte
Use byte (e.g., print or process)
Loop back to check again
The program waits for data on the serial port, reads one byte at a time using Serial.read(), then processes it before checking for more data.
