volatile char str[8];
volatile char* days_of_week[] = {"SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY"};
#include "suryaa.h"
#include <avr/interrupt.h>
void setup()
{
pin_configure_pullup();
init_lcd();
sei();
display_welcome_message();
display_clock_features();
display_btn_details();
display_loading_message();
//use these three function,if u want to change date,day,time,manually
//rtc_set_day(6);//0-monday to 6-sunday
//rtc_set_date(9,8,99);//date,month,year
// rtc_configure_time_24hr(1,15,35);//hour;minutes;seconds
}
void loop()
{
auto_display_time_day_date();
}