cartreader/Cart_Reader/RTC.h
majorpbx c30047c5f6 RTC.h
To add support for RTC to all scripts for this project.
2021-10-02 01:16:58 -04:00

14 lines
160 B
C

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