Introduction: DS3231 OLED Alarm Clock With 2-button Menu Setting and Temperature Display

UPDATE: V1.3 of clock packages uploaded with bug fix and enhancements. See below for details,

Video at:: http://youtu.be/ikNw1iLE9vg

Alarm demo video: http://youtu.be/jlZBCuQeswA

This is an OLED alarm clock I built using an Arduino Micro, a tiny OLED 128x64 display using the SSD1306 controller and I2C interface, and a precision DS3231-based real-time clock module with rechargeable battery backup. It features a menu system for setting the RTC (no serial port or USB required)

Two versions are shown - the basic digital/analog clock and a version with "Pusheen" graphics and animation.

It uses the Adafruit graphics libraries and DS3231 library, included in the distribution.

Code for both, including needed libraries, may be downloaded directly from the link below in Step 4.

v1.3

I fixed a problem with the v1.2 code that would cause compilation errors for any non-ATmega32U4 Arduino. I had added a compact "note" function to generate a frequency on Pin 10 if the "speaker" alarm output option was selected. The function I included uses the timer structures for ATmega32U4. In v1.3, I added a non-ATmega32U4 version of the "note" function and added conditional compilation directives to automatically compile the correct version. I also compile the "note" function only if the "speaker" output is selected, saving memory if any other output option is selected. I tested the code with all board types in the IDE and received no compilation errors.


v1.2

I fixed a bug that would cause the alarm to timeout after less than the full 60 seconds if the previous alarm was silenced with a button press.

The status of alarm enable/disable is now stored in EEPROM and will survive a power failure. Previously, the alarm was always enabled after a power failure.

If the clock is left in setting mode, it will return to the normal display after 30 seconds without a button press.

I moved the alarm enable/disable indicator from the analog clock to between the time and temperature.

When the alarm sounds, the entire display now flashes in inverse/normal video at 5 Hz until the alarm is silenced. Previously, an asterisk flashed within the analog clock.

There is an optional feature to dim the display between 10 PM and 5 AM. Uncomment this line at the beginning of the program to enable this feature.

//#define dimming

The behavior of the alarm output at Pin 10 of the Arduino can be selected by uncommenting ONE of the following lines at the beginning of the code:

The first option is the default and supplies an intermittent (5 Hz) voltage on pin 10 when the alarm is triggered.

//#define beeper //Uncomment if 5 volt continuous tone beeper or buzzer is connected to pin 10 (5 Hz output)

The second option supplies an intermittent (5 Hz) 1580 Hz tone on pin 10 when the alarm is triggered. Pin 10 should be connected to the + terminal of the speaker through a 0.5 to 1.0 microfarad capacitor and possibly a 150 ohm resistor. The capacitor blocks DC voltage from the speaker to preserve the magnet in the speaker from damage. Piezo speakers may be connected directly to Pin 10. Use the resistor for low-impedance (< 150 ohm) speakers.

//#define speaker //Uncomment if speaker is connected to pin 10 through 1 microfarad capacitor and 100 ohm resistor in series (1480 Hz at 5 Hz output)

The final option provides a steady +5 volts on Pin 10 as long as the alarm is active. The voltage drops to zero when the alarm is silent.

//#define voltage //Uncomment if pin 10 is connected to alarm device requiring steady output while alarm is activated

Step 1: Connect the DS3231 Module and 128x64 OLED Module to the Arduino

  • Connect ground connection from Arduino to the DS3231 RTC module and OLED display.
  • Connect +5v from the Arduino to the +5v connections on the DS3231 RTC module and OLED display.
  • Connect the pin assigned to the SCL function on your Arduino to the SCL pins on both the DS3231 module and the OLED display.
  • Connect the pin assigned to the SDA function on your Arduino to the SDA pins on both the DS3231 module and the OLED display.
  • Connect one side of two SPST normally open push buttons to an Arduino ground connection.
  • Connect the other side of one push button to pin 8 of the Arduino. This is the time/date/alarm set mode select button.
  • Connect the other side of the other push button to pin 9 of the Arduino. This is the time/date/alarm set change button.
  • Connect the black wire on a piezo 5 volt buzzer/beeper to the Arduino ground connection. Connect the red wire from the piezo buzzer/beeper to pin 10 of the Arduino. Be sure to use a piezo beeper (NOT a piezo speaker) that generates its own tone when 5 volts is applied. If you use a piezo speaker instead of a piezo beeper, it will only click rapidly when the alarm is triggered. A unit that sounds continuously when power is applied is best, as the code generates a 5Hz interrupted voltage source to pin 10 on its own. NEW!!! Speaker and continuous alarm output now supported. See Step 1 for details on how to enable.
  • Download either the regular or "Pusheen" version of the clock code from here or the link in the introduction.
  • Install the Arduino libraries in the software distribution .zip file.
  • Compile and download the code to your Arduino. The clock and display will start to run. NEW!!! Optional night display dimming supported. See Step 1 for details on how to enable.
  • Set the clock and alarm per the instructions in the next step.

Step 2: Set Your Clock

  • Press the mode set button , then release. The cursor will flash on the day-of-week field. Press and hold the set button to advance the day-of week to the next day at a 5Hz rate, or do a short press to advance to the next setting. Note: the RTC will use whatever day-of-week you set. It will not automatically calculate the day-of-week for the date and year.
  • Press and release the mode set button to advance the cursor to the month field. Press and hold the set button to scroll through the months quickly, or do a short press to advance to the next setting.
  • Press and release the mode set button to advance the cursor to the date field. Press and hold the set button to scroll through the dates quickly, or do a short press to advance to the next setting. Note that the clock chip knows the correct number of days in each month. However, you can set an illegal date for months with less than 31 days, like "February 30". If you do, the clock will advance the date at midnight until the 31st is reached, then roll over to the first. Thereafter, the date will roll over to 1 at the correct date for the set month. Just don't set an illegal date and all will be well!
  • Press and release the mode set button to advance the cursor to the year field. Press and hold the set button to scroll through the years quickly, or do a short press to advance to the next setting. Valid ranges are 2000 to 2099. The RTC keeps track of leap years automatically. When you first power up the clock, the date will be January 1, 1900. Just advance the year to the correct value as normal.
  • Press and release the mode set button to advance the cursor to the hour field. Press and hold the set button to scroll through the hours quickly, or do a short press to advance to the next setting. The clock uses only the 12--hour mode with AM/PM indications.
  • Press and release the mode set button to advance the cursor to the minutes field. Press and hold the set button to scroll through the minutes quickly, or do a short press to advance to the next setting.
  • Press and release the mode set button to advance the cursor to the seconds field. Press the button momentarily to reset the seconds to zero, or hold the button to freeze the seconds at zero and release to synchronize with an external time source.
  • Press and release the mode set button to advance to the alarm setting screen. Press and hold the set button to scroll through the alarm hours setting quickly, or do a short press to advance to the next setting.
  • Press and release the mode set button to advance to the alarm minutes setting field.Press and hold the set button to scroll through the alarm minutes setting quickly, or do a short press to advance to the next setting.

  • Press and release the mode set button to advance to the alarm enable/disable field. Press and hold the set button to toggle repeatedly between alarm on and off settings, or do a short press to advance to the alternate setting. Note that when the alarm is on, an asterisk appears between the time and temperature. When the alarm is triggered, the entire display flashes in inverse video. The piezo buzzer will also beep at a 5 Hz rate (default option). The alarm will time out after 60 seconds if not manually silenced. A short press of the set button silences the alarm, leaving it on for the next day. In the event of a power failure, the alarm enable flag state is stored in EEPROM and restored on power-up. If an alarm has occurred during the power failure and the alarm was enabled, the alarm will sound immediately when power is restored. The alarm will sound, even if the clock is left in the setting modes.

  • Press and release the mode set button to return to normal mode. The display will automatically exit setting mode 30 seconds after the last button press.

Step 3: Technical Details

The software enables a very accurate 1Hz PPS signal on the "SQW" pin of the DS3231 module.

The DS3231 module uses the temperature sensor to compensate for clock drift, keeping time accurate to 1 or 2 minutes/year.

The temperature is normally checked and updated by the RTC once every 64 seconds. However, the software forces a temperature reading and oscillator adjustment as often as 5 times/second. This results in better accuracy and faster updating of the temperature display.

The on-board battery is not a disposable Lithium, but a rechargeable Lithium Ion unit. When connected to power, the RTC module charges the battery. A fully charged battery will maintain the time setting for up to one year without applying additional power.

You can "freeze" the display at any point by pressing and holding the mode set button. When the button is released, updating will resume. Clock accuracy is not affected.

The clock module contains a 32K EEPROM chip that can be used for data storage. It has an independent I2C address. It is not used for this project.

The code should work with the Sparkfun Chronodot module.

Step 4:

Code and library downloads, in .zip archive.....

Make it Glow!

Participated in the
Make it Glow!