Fixes unused variable warning for serial flush

This commit is contained in:
David Madison 2018-10-18 16:09:08 -04:00
parent b3c05a61ec
commit 173470ff31
1 changed files with 1 additions and 1 deletions

View File

@ -250,6 +250,6 @@ void timeouts(){
void serialFlush(){
while(Serial.available() > 0) {
byte r = Serial.read();
Serial.read();
}
}