mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-11 07:25:07 +01:00
18 lines
210 B
C
18 lines
210 B
C
#include "options.h"
|
|
#ifdef RTC_installed
|
|
|
|
// RTC Library
|
|
#ifndef _RTC_H
|
|
#define _RTC_H
|
|
|
|
#include "RTClib.h"
|
|
|
|
void RTCStart();
|
|
|
|
void dateTime(uint16_t* date, uint16_t* time);
|
|
|
|
String RTCStamp();
|
|
|
|
#endif
|
|
#endif
|