*/ class Mock_RTC_DS3231 : public RTC_Micros { public: void begin() { RTC_Micros::begin(DateTime(F(__DATE__), F(__TIME__))); } int8_t getAgingOffset() { return aging_offset; } void setAgingOffset(int8_t offset) { aging_offset = offset; adjustDrift(-aging_offset * 200);...
microcontroller directly. A DS3231 clock is used for timekeeping connected to an ATMega128a which controls everything else. At the start of each hour the clock plays a corresponding bird song by communicating with an mp3 module, and a remote control can also be used to play the songs on ...
A Digital Clock can be made easily by using PIC Microcontroller, DS1307 and a 16×2 LCD. I have already posted about Interfacing DS1307 RTC with PIC Microcontroller. The DS1307 RTC can work either in 24-hour mode or 12-hour mode with AM/PM indicator. It automatically adjusts for months...