mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-24 05:29:17 +01:00
14 lines
160 B
C
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
|