Completely switch over to _rtc variable

* Doing this will make it easier to shuffle the logic in WatchyRTC to
  these other subclasses of AbstractRTC
* I think we may even want to collapse WatchyRTC completely into
  AbstractRTC, as the two resemble each other pretty close. We will
  see what sort of design we end up with in the meantime
pull/120/head
Andre LaFleur 2021-12-18 11:55:15 -07:00
parent 793ff8e61f
commit 22cfe5d384
2 changed files with 1 additions and 4 deletions

View File

@ -1,7 +1,6 @@
#include "WatchyRTC.h"
WatchyRTC::WatchyRTC()
: rtc_ds(false) {}
WatchyRTC::WatchyRTC() {}
// TODO: We can probably put all of this logic into AbstractRTC as a class
// function. It would simplify this class even more, which would be nice

View File

@ -46,8 +46,6 @@ public:
class WatchyRTC {
public:
DS3232RTC rtc_ds;
Rtc_Pcf8563 rtc_pcf;
uint8_t rtcType;
public:
WatchyRTC();