To add support for RTC to all scripts for this project.
This commit is contained in:
majorpbx 2021-10-02 01:16:58 -04:00 committed by GitHub
parent cc1668a2e3
commit c30047c5f6

13
Cart_Reader/RTC.h Normal file
View File

@ -0,0 +1,13 @@
// RTC Library
#ifndef _RTC_H
#define _RTC_H
#include "RTClib.h"
void RTCStart();
void dateTime(uint16_t* date, uint16_t* time);
String RTCStamp();
#endif