24 lines
448 B
C
24 lines
448 B
C
#ifndef PCF8563_H
|
|
#define PCF8563_H
|
|
|
|
#include "lib/i2c.h"
|
|
#include "lib/mystd.h"
|
|
|
|
#define PCF8563address (0x51)
|
|
|
|
typedef struct pcf8563_date {
|
|
uint8_t second;
|
|
uint8_t minute;
|
|
uint8_t hour;
|
|
uint8_t dayOfWeek;
|
|
uint8_t dayOfMonth;
|
|
uint8_t month;
|
|
uint16_t year;
|
|
|
|
} pcf8563_date;
|
|
|
|
t_error pcf8563_read_date(pcf8563_date* out);
|
|
t_error pcf8563_set_date(pcf8563_date date);
|
|
void print_date(pcf8563_date* date);
|
|
|
|
#endif /* PCF8563_H */
|