We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c01ca commit 293cc35Copy full SHA for 293cc35
2 files changed
README.md
@@ -144,6 +144,10 @@ Thanks to these great people for supporting this project.
144
145
<!-- ** WORK IN PROGRESS ** -->
146
147
+### 2.5.4 (2025-03-23) ** WORK IN PROGRESS **
148
+
149
+- (foorschtbar) Battery screen on boot can now be disabled
150
151
### 2.5.3 (2024-10-09)
152
153
- (foorschtbar) Fixed ESP32 Battery Pin Definition
src/PixelIt.ino
@@ -1863,6 +1863,9 @@ String GetConfig()
1863
DynamicJsonBuffer jsonBuffer;
1864
JsonObject &root = jsonBuffer.parseObject(buf.get());
1865
1866
+ // add current vbat pin to show button on webinterface or not
1867
+ root["showBatteryBtn"] = VBAT_PIN > 0 ? true : false;
1868
1869
String json;
1870
root.printTo(json);
1871
0 commit comments