From 5e5f8581ea47237ae73884ed0d15e1d684c9baa2 Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 28 Jan 2025 15:47:46 +0200 Subject: [PATCH] Update draw_homescreen_simplified.cpp Is It fOrMaTtEd EnOuGh?? --- .../mono_96x16/draw_homescreen_simplified.cpp | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/source/Core/Threads/UI/drawing/mono_96x16/draw_homescreen_simplified.cpp b/source/Core/Threads/UI/drawing/mono_96x16/draw_homescreen_simplified.cpp index 25c8b5ea..ff991863 100644 --- a/source/Core/Threads/UI/drawing/mono_96x16/draw_homescreen_simplified.cpp +++ b/source/Core/Threads/UI/drawing/mono_96x16/draw_homescreen_simplified.cpp @@ -7,33 +7,33 @@ extern uint8_t disconnectedTipF[sizeof(disconnectedTip)]; void ui_draw_homescreen_simplified(TemperatureType_t tipTemp) { bool tipDisconnected = isTipDisconnected(); - bool displayTemp = (tipTemp > 55) && !tipDisconnected; bool isFlipped = OLED::getRotation(); bool isReverse = getSettingValue(SettingsOptions::ReverseButtonNavEnabled); // Flip and switch buttons accordingly OLED::drawArea(isFlipped ? 54 : 0, 0, 42, 16, isFlipped ? (isReverse ? buttonBF : buttonAF) : (isReverse ? buttonB : buttonA)); OLED::drawArea(isFlipped ? 12 : 42, 0, 42, 16, isFlipped ? (isReverse ? buttonAF : buttonBF) : (isReverse ? buttonA : buttonB)); - if (displayTemp || tipDisconnected) { - // draw temp over the start soldering button - // Location changes on screen rotation - // in right handed mode we want to draw over the first part - OLED::fillArea(isReverse ? (isFlipped ? 14 : 42) : (isFlipped ? 55 : 0), 0, 41, 16, 0); // clear the area - OLED::setCursor(isReverse ? (isFlipped ? 15 : 43) : (isFlipped ? 56 : 0), 0); - // If tip is connected draw the temp, otherwise - the notification - if (!tipDisconnected) { - // Draw-in the temp - if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (xTaskGetTickCount() % 1000 < 300))) { - ui_draw_tip_temperature(false, FontStyle::LARGE); // draw in the temp - } - } else { - // Draw-in the missing tip symbol - if (isReverse) { - OLED::drawArea(isFlipped ? 12 : 42, 0, 42, 16, isFlipped ? disconnectedTipF : disconnectedTip); - } else { - OLED::drawArea(isFlipped ? 54 : 0, 0, 42, 16, isFlipped ? disconnectedTipF : disconnectedTip); - } - } + if (((tipTemp > 55) && !tipDisconnected) || tipDisconnected) { + // draw temp over the start soldering button + // Location changes on screen rotation + // in right handed mode we want to draw over the first part + OLED::fillArea(isReverse ? (isFlipped ? 14 : 42) : (isFlipped ? 55 : 0), 0, 41, 16, 0); // clear the area + OLED::setCursor(isReverse ? (isFlipped ? 15 : 43) : (isFlipped ? 56 : 0), 0); + // If tip is connected draw the temp, otherwise - the notification + if (!tipDisconnected) { + // Draw-in the temp + if (!(getSettingValue(SettingsOptions::CoolingTempBlink) && (xTaskGetTickCount() % 1000 < 300))) { + ui_draw_tip_temperature(false, FontStyle::LARGE); // draw in the temp + } + + } else { + // Draw-in the missing tip symbol + if (isReverse) { + OLED::drawArea(isFlipped ? 12 : 42, 0, 42, 16, isFlipped ? disconnectedTipF : disconnectedTip); + } else { + OLED::drawArea(isFlipped ? 54 : 0, 0, 42, 16, isFlipped ? disconnectedTipF : disconnectedTip); + } + } } OLED::setCursor(isFlipped ? 0 : 84, 0); ui_draw_power_source_icon();