feat(boards): add device detection and text scrolling support

This commit is contained in:
2026-02-19 21:46:33 -08:00
parent 913373ca72
commit 66f09c3468
12 changed files with 290 additions and 11 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "IDisplayDriver.h"
#include "Style.h"
#include <Arduino.h>
@@ -54,4 +55,8 @@ private:
ScreenID _lastScreen = ScreenID::BOOT;
BootStage _lastBootStage = BootStage::SPLASH;
bool _needsRedraw = true;
// Text scrollers for scrolling elements
TextScroller _headerScroller;
TextScroller _wifiScroller;
};