Skip to content

Commit

Permalink
whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lefty01 committed Apr 27, 2023
1 parent 5aec61d commit df1a969
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/ESP32_TTGO_FTMS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void logText(const char *text)
// Serial consol
DEBUG_PRINTF(text);
#warning todo cs:putback gfxlogtext
#ifndef NO_DISPLAY
#ifndef NO_DISPLAY
gfxLogText(text);
#endif
}
Expand All @@ -85,7 +85,7 @@ void logText(std::string text)
logText(text.c_str());
}

void initLittleFS()
void initLittleFS()
{
logText("initLittleFS...");

Expand Down Expand Up @@ -214,7 +214,7 @@ static void showInfo()
logText(intoText.c_str());
}

void setup()
void setup()
{
// initial min treadmill speed
kmph = 0.5;
Expand Down Expand Up @@ -256,8 +256,8 @@ void setup()
#endif
}

void loop()
{
void loop()
{
loopHandleHardware();
loopHandleButton();
loopHandleGfx();
Expand Down Expand Up @@ -315,6 +315,6 @@ void loop()
gfxUpdateDisplay(false);
#endif
notifyClientsWebSockets();
updateBLEdata(); //Send FTMS mased in calulated globals kmph, incline, gradeDeg, elevationGain
updateBLEdata(); //Send FTMS mased in calulated globals kmph, incline, gradeDeg, elevationGain
}
}

0 comments on commit df1a969

Please sign in to comment.