From 153d134f8847cf5d021b802185a2a63d7a09311b Mon Sep 17 00:00:00 2001 From: Robin Cerny Date: Tue, 20 Jan 2026 12:49:24 +0100 Subject: [PATCH] fixed the 'program to big' error by flashing the ESPUI website files to SPIFFS --- .../analog_system_monitor_arduino.ino | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/analog_system_monitor_arduino/analog_system_monitor_arduino.ino b/analog_system_monitor_arduino/analog_system_monitor_arduino.ino index 0c53e7d..fb38081 100644 --- a/analog_system_monitor_arduino/analog_system_monitor_arduino.ino +++ b/analog_system_monitor_arduino/analog_system_monitor_arduino.ino @@ -1,3 +1,12 @@ +// +// IMPORTANT: +// before flashing this the first time, +// upload the "prepareFilesystem.ino" example sketch from ESPUI +// without that critical files are missing +// +// This was done to reduce the PROGMEM footprint of this program +// + #include #include #include @@ -48,7 +57,7 @@ void setup() { uiInit(tabSettings, tabLighting, tabCalibration); ESPUI.sliderContinuous = true; // enables live slider updates - ESPUI.begin("Analog Monitor UI"); + ESPUI.beginLITTLEFS("Analog System Monitor UI"); } void loop() {