diff options
Diffstat (limited to 'source/rtc.hpp')
-rw-r--r-- | source/rtc.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/rtc.hpp b/source/rtc.hpp index 7f64100..12dade9 100644 --- a/source/rtc.hpp +++ b/source/rtc.hpp @@ -1,10 +1,13 @@ #include <rtc/nrf_drv_rtc.h> +#include "sharp.hpp" class RTC { private: static nrf_drv_rtc_t rtc; static unsigned int rtcCount; + static char message[16]; + public: static void begin(void); @@ -16,6 +19,12 @@ public: rtcCount = t; } + static void showTime(Display& display); + + inline static void setMessage(const char *s) { + strncpy(message, s, 16); + } + private: static void handler(nrf_drv_rtc_int_type_t type); }; |