What\'s the best way to send float, double, and int16 over serial on Arduino?
float
double
int16
The Serial.print() only sends val
Serial.print()
Does size matter? If it does, you can encode each 32 bit group into 5 ASCII characters using ASCII85, see http://en.wikipedia.org/wiki/Ascii85.