mixing data types in a printf call seems not to be ok
This commit is contained in:
parent
36b2da7802
commit
06d4ba73c0
1 changed files with 6 additions and 2 deletions
|
@ -93,8 +93,12 @@ void setup() {
|
|||
Serial.println("420");
|
||||
Serial.printf(".:: CanGrow firmware v%s build %s starting ::.\n", CanGrowVer, CanGrowBuild);
|
||||
|
||||
Serial.printf("II To format LittleFS, pull GPIO %s (PinWIPE) to LOW - NOW! (2 seconds left) ::", PinWIPE);
|
||||
Serial.println("");
|
||||
Serial.print("II To format LittleFS, pull GPIO ");
|
||||
Serial.print(PinWIPE);
|
||||
Serial.print(" (PinWIPE) to ");
|
||||
Serial.print(PinWIPE_default);
|
||||
Serial.println(" - NOW! (2 seconds left) II");
|
||||
|
||||
|
||||
// blink with the onboard LED on D4 (PinWIPE)
|
||||
for(byte i = 0; i <= 6 ; i++) {
|
||||
|
|
Loading…
Reference in a new issue