docs: Add justfile for build automation

This commit is contained in:
2026-02-19 23:10:55 -08:00
parent 66f09c3468
commit 6d51234f21
4 changed files with 183 additions and 5 deletions

View File

@@ -209,15 +209,15 @@ void DisplayDriverTFT::drawAlert(const ScreenState& st) {
void DisplayDriverTFT::drawDashboard(const ScreenState& st) {
_tft.fillScreen(TFT_BLACK);
// Header
// Header - using standard bitmap font for reliable positioning
_tft.fillRect(0, 0, DISPLAY_WIDTH, 30, 0x1A1A); // Dark gray header
setBodyFont();
_tft.setTextSize(1);
_tft.setTextColor(TFT_WHITE);
_tft.setCursor(5, 10);
_tft.setCursor(5, 20); // y=28 is baseline, text sits above this
_tft.print("KLUBHAUS");
// WiFi indicator
_tft.setCursor(DISPLAY_WIDTH - 60, 10);
_tft.setCursor(DISPLAY_WIDTH - 60, 20);
_tft.print(st.wifiSsid.length() > 0 ? "WiFi:ON" : "WiFi:OFF");
// Get tile layouts from library helper