I am required to talk back to the scale by making it PRINT programmatically.
The manual states that the print command is simply P ended with carriage return. I use the following code:
Byte[] bytes = {80, 13};
_sp.Write(bytes,0,bytes.Length);
But every other time I get ES code back from the scale which means error but it still prints. I just want to find out why even though it works, I am getting ES back.
Any ideas? Is the format of bytes[] correct?