Basic data question

you could send a value of 600 as 2 bytes. but now you need a way to delimit those bytes from others being sent

another approach is to simply send the value as an ascii string with a recognizable line termination such as '\n' using readBytesUntil(), for example. the teensy then needs to translate the string to an integer using atoi(), for example