23 lines
385 B
C
23 lines
385 B
C
#ifndef MCP7940_ADI
|
|
|
|
#define MCP7940_ADI
|
|
|
|
// #include "TimeLib.h"
|
|
#include "Time.h"
|
|
/*
|
|
typedef struct {
|
|
uint8_t Second;
|
|
uint8_t Minute;
|
|
uint8_t Hour;
|
|
uint8_t Wday; // day of week, sunday is day 1
|
|
uint8_t Day;
|
|
uint8_t Month;
|
|
uint8_t Year; // offset from 1970;
|
|
} tmElements_t, TimeElements, *tmElementsPtr_t;
|
|
*/
|
|
tmElements_t dt;
|
|
|
|
// String datetimestr = "";
|
|
|
|
#endif
|