From 6abb4e3b3040201be78d58e1c8580248c2fb60f6 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Fri, 23 Jan 2026 23:10:04 +0100 Subject: [PATCH] fix build --- lib/hal/HalGPIO.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/hal/HalGPIO.h b/lib/hal/HalGPIO.h index dc8c0044..fc8b2cb6 100644 --- a/lib/hal/HalGPIO.h +++ b/lib/hal/HalGPIO.h @@ -55,14 +55,4 @@ class HalGPIO { static constexpr uint8_t BTN_UP = 4; static constexpr uint8_t BTN_DOWN = 5; static constexpr uint8_t BTN_POWER = 6; - - private: - // emulation state - uint8_t currentState; - uint8_t lastState; - uint8_t pressedEvents; - uint8_t releasedEvents; - unsigned long lastDebounceTime; - unsigned long buttonPressStart; - unsigned long buttonPressFinish; };