Add U8X8 carousel screens
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user