Correct size of status response array

This commit is contained in:
Josh Stewart 2013-09-26 21:24:30 +10:00
parent 0561992da3
commit 127088b40c
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ void sendValues(int length)
response[21] = 0x00; //Idle
response[22] = currentStatus.advance;
Serial.write(response, (size_t)22);
Serial.write(response, (size_t)23);
Serial.flush();
return;
}