#pragma once //#include #ifdef IS_BW #include #endif #ifdef IS_3C #include #endif #include #include "structs.h" #pragma once #include //template class GxGFX_Type> //extern GxEPD2_3C displays[7]; extern char blocks[8]; extern char currentBlocks[8]; extern String blockNr; #ifndef OTA_NAME #define OTA_NAME "btclock" #endif extern int FG_COLOR; extern int BG_COLOR; extern const int RST_PIN; extern unsigned int currentScreen; extern Preferences preferences; extern String epdContent[7]; extern bool timerRunning; extern uint timerSeconds; extern uint32_t moment; const int SCREEN_BLOCK_HEIGHT = 0; const int SCREEN_MSCW_TIME = 1; const int SCREEN_BTC_TICKER = 2; const int SCREEN_TIME = 3; const int screens[4] = { SCREEN_BLOCK_HEIGHT, SCREEN_MSCW_TIME, SCREEN_BTC_TICKER, SCREEN_TIME }; const uint screenAmount = sizeof(screens) / sizeof(uint);