diff --git a/main/displays/statusdisplay.cpp b/main/displays/statusdisplay.cpp index 3fc9360..4467b2c 100644 --- a/main/displays/statusdisplay.cpp +++ b/main/displays/statusdisplay.cpp @@ -103,7 +103,7 @@ void StatusDisplay::redraw() tft.fillRect(0, tft.height()-6, tft.width(), 6, TFT_BLACK); } } - +#ifdef FEATURE_LEDSTRIP { static bool blink_fill_with_black; if (configs.ledstrip.enableVisualizeBlink.value && (espchrono::utc_clock::now().time_since_epoch() % 750ms < 375ms) && (blinkAnimation > 0)) @@ -121,6 +121,7 @@ void StatusDisplay::redraw() tft.fillRect(0, 0, tft.width(), 6, TFT_BLACK); } } +#endif tft.setTextFont(2); m_labelRawGas.redraw(raw_gas ? std::to_string(*raw_gas) : "?");