#pragma once // STL #include // Defs class CWatchFace; class CWatchyExpanded { public: CWatchyExpanded(); void AddWatchFace(CWatchFace* pFace); void Init(); private: void displayBusyCallback(const void*); void UpdateScreen(); std::vector m_faces; std::int8_t m_face = 0; GxEPD2_BW m_display; tmElements_t m_currentTime; };