mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-13 08:25:05 +01:00
c30047c5f6
To add support for RTC to all scripts for this project.
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
|