diff options
Diffstat (limited to 'ds3231.h')
-rwxr-xr-x | ds3231.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,8 +1,13 @@ #include "conf.h"
+char dayOfWeek[7][4];
+
int BCD_2_DEC(int);
int DEC_2_BCD(int);
unsigned int Get_DayOfWeek(unsigned int, unsigned int, unsigned int);
+unsigned int Get_Days_In_Month(unsigned int, unsigned int);
+unsigned int Get_Is_Leap_Year(unsigned int);
+char* Get_WeekDay(unsigned int);
void Read_Alarms_Temp(void);
void Set_Date(void);
void Set_DayOfWeek(int);
|