23 lines
547 B
C++
23 lines
547 B
C++
#ifndef DISPLAY_CONFIG_H
|
|
#define DISPLAY_CONFIG_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace display_config {
|
|
|
|
constexpr uint8_t kNextButtonPin = A4;
|
|
|
|
constexpr unsigned long kAutoAdvanceIntervalMs = 10000;
|
|
constexpr unsigned long kManualHoldIntervalMs = 60000;
|
|
constexpr unsigned long kButtonDebounceMs = 150;
|
|
constexpr unsigned long kDebugLogIntervalMs = 500;
|
|
|
|
constexpr uint8_t kDisplayColumns = 16;
|
|
constexpr uint8_t kDisplayRows = 8;
|
|
constexpr uint8_t kIndicatorRow = 7;
|
|
constexpr uint8_t kIndicatorSpacing = 2;
|
|
|
|
} // namespace display_config
|
|
|
|
#endif
|