-->
Page 1 of 1

Can not transmit zero with Serial.write

PostPosted: Mon Nov 21, 2016 10:34 am
by Dhruv Acharya
Try
Code: Select allSerial.write((uint8_t) i);

Re: Can not transmit zero with Serial.write if using Serial.

PostPosted: Tue Nov 22, 2016 8:36 am
by Barnabybear
Hi, try:
Code: Select allSerial.write((uint8_t) i);

Re: Can not transmit zero with Serial.write if using Serial.

PostPosted: Tue Nov 22, 2016 8:52 am
by Dhruv Acharya
Barnabybear wrote:Hi, try:
Code: Select allSerial.write((uint8_t) i);


Thanks for the reply. This solved the problem