In short - don't ever try to send _data_ as ASCII codes 0..255 to computer. It is ok to communicate such way between closed (embedded) systems, but not for PC (software). Better send numeric ASCII strings using just ASCII symbols 48 to 57, delimited with newline, like this: 1234 2345 3456 4567
↧