Sync 12 and 34 working
This commit is contained in:
@@ -45,4 +45,15 @@ void printField(const char name[], const float val, const uint8_t x, const uint8
|
||||
setCursor(x+16, y);
|
||||
Serial.print(val);
|
||||
Serial.flush();
|
||||
}
|
||||
|
||||
void printField(const char name[], const char *val, const uint8_t x, const uint8_t y) {
|
||||
if (firstRun) {
|
||||
setCursor(x,y);
|
||||
Serial.printf("%15s: %s\n", name, val);
|
||||
return;
|
||||
}
|
||||
setCursor(x+16, y);
|
||||
Serial.print(val);
|
||||
Serial.flush();
|
||||
}
|
||||
Reference in New Issue
Block a user