Recalibrated power button duration, decreased long setting slightly. (#149)

Slight tuning, as I noticed sometimes inconsistent behavior (reported
>200ms of calibration value, I assume related to the Serial output).
This commit is contained in:
Jonas Diemer
2025-12-29 23:18:12 +11:00
committed by GitHub
parent e3b1f307e3
commit 414849e0ed
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ class CrossPointSettings {
// Get singleton instance
static CrossPointSettings& getInstance() { return instance; }
uint16_t getPowerButtonDuration() const { return shortPwrBtn ? 10 : 500; }
uint16_t getPowerButtonDuration() const { return shortPwrBtn ? 10 : 400; }
bool saveToFile() const;
bool loadFromFile();