aboutsummaryrefslogtreecommitdiffstats
path: root/source/rtc.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-03-14 14:44:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-03-14 14:44:18 -0400
commit352e0df7d800b033ce24ad1022461f5d1908da93 (patch)
tree3cf6adf03311668fe3ecbbb21c070668624fa10a /source/rtc.hpp
parent31e115f7e72532fbfd456709e95d440e3be46fa1 (diff)
cleanup, display screen abstraction
Diffstat (limited to 'source/rtc.hpp')
-rw-r--r--source/rtc.hpp9
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);
};