Extracted debounceRead to seperate file
All checks were successful
Build Code / build (push) Successful in 1m17s

This commit is contained in:
2025-10-22 15:09:11 +02:00
parent 2292e2f736
commit 1fdea9afb4
4 changed files with 52 additions and 46 deletions

View File

@@ -1,16 +1,18 @@
#pragma once
const int DEBOUNCE_DELAY = 50;
const int USER_STEPS = 2;
const int STAFF_STEPS = 16;
const int POT_CS = 10;
const int POT_UD = 9;
const int LED_HIGH = 11; // Green
const int LED_MED = 12; // Red
const int LED_LOW = 13; // Green
const int LED_HIGH = 11; // Green
const int LED_MED = 12; // Red
const int LED_LOW = 13; // Green
const int BTN_STAFF_UP = 2;
const int BTN_STAFF_UP = 2;
const int BTN_STAFF_DWN = 4;
const int REMOTE_A = 17;