You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _DS3231_h
|
|
#define _DS3231_h
|
|
|
|
#define DS3231_ADDRESS 0b1101000
|
|
|
|
#define REG_SECONDS 0x00 //Sekunden Register
|
|
|
|
|
|
|
|
|
|
void DS3231_init(void);
|
|
int DS3231_seconds(void);
|
|
|
|
#endif
|
|
|