Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adafruit/RTClib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.14.2
Choose a base ref
...
head repository: adafruit/RTClib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Oct 28, 2021

  1. convert and refactor

    caternuson committed Oct 28, 2021
    Copy the full SHA
    237b0d4 View commit details
  2. dox

    caternuson committed Oct 28, 2021
    Copy the full SHA
    0d05d5b View commit details
  3. dox2

    caternuson committed Oct 28, 2021
    Copy the full SHA
    3dff7be View commit details

Commits on Oct 29, 2021

  1. Merge pull request #244 from caternuson/iss243_busio

    Convert to BusIO and refactor
    drak7 authored Oct 29, 2021
    Copy the full SHA
    27b5be2 View commit details
  2. Copy the full SHA
    3ae553e View commit details
  3. Ensure all files are properly terminated

    Since we use Unix text format, all lines, including the last one, should
    be terminated by ASCII LF.
    edgar-bonet committed Oct 29, 2021
    Copy the full SHA
    6ff0aac View commit details
  4. Merge pull request #245 from edgar-bonet/fix-pr244

    Fix register address and line terminators
    caternuson authored Oct 29, 2021
    Copy the full SHA
    3349ae1 View commit details

Commits on Nov 2, 2021

  1. misc fixes

    caternuson committed Nov 2, 2021
    Copy the full SHA
    313472d View commit details
  2. Merge pull request #246 from caternuson/misc_fixes

    Fix ESP8266 WDT resets and DS3231 century bit issue
    caternuson authored Nov 2, 2021
    Copy the full SHA
    c66b9ec View commit details

Commits on Nov 8, 2021

  1. Bump to 2.0.1

    evaherrada authored Nov 8, 2021
    Copy the full SHA
    6be8310 View commit details

Commits on Dec 4, 2021

  1. Copy the full SHA
    efc4eb7 View commit details

Commits on Dec 6, 2021

  1. Add one missing 'const'

    edgar-bonet committed Dec 6, 2021
    Copy the full SHA
    bc6139e View commit details

Commits on Dec 7, 2021

  1. Merge pull request #250 from edgar-bonet/more-const

    Improve const correctness
    drak7 authored Dec 7, 2021
    Copy the full SHA
    b4791eb View commit details

Commits on Dec 21, 2021

  1. Bump to 2.0.2

    evaherrada authored Dec 21, 2021
    Copy the full SHA
    6f73714 View commit details

Commits on Feb 9, 2022

  1. DS3231: Add support for fetching alarm values

    This commit introduces 4 new methods for DS3231 devices:
      - DateTime getAlarm1();
      - DateTime getAlarm2();
      - Ds3231Alarm1Mode getAlarm1Mode();
      - Ds3231Alarm2Mode getAlarm2Mode();
    
    The getAlarm methods assume that the alarms are stored
    using 24 hour format since this library doesn't support
    storing alarms in 12 hour format (DS3231 hardware supports
    this).
    
    Updated the DS3231_alarm example to fetch alarm1. Also
    improved the formatting of the serial logging.
    Justin Newitter committed Feb 9, 2022
    Copy the full SHA
    f5adeb7 View commit details

Commits on Feb 10, 2022

  1. Apply suggestions from code review

    Handle edge case where the result of calling getAlarm is used to set the alarm
    and the mode is set to "Day"
    
    Co-authored-by: Edgar Bonet <edgar-bonet@users.noreply.github.com>
    justinnewitter and edgar-bonet authored Feb 10, 2022
    Copy the full SHA
    2596468 View commit details

Commits on May 13, 2022

  1. Replace boolean type by bool

    The Arduino-specific `boolean' type is being phased out. Use the
    standard `bool' type instead.
    edgar-bonet committed May 13, 2022
    Copy the full SHA
    b693600 View commit details

Commits on May 14, 2022

  1. Merge pull request #259 from edgar-bonet/use-bool

    Replace `boolean` type by `bool`
    ladyada authored May 14, 2022
    Copy the full SHA
    49af244 View commit details

Commits on May 16, 2022

  1. Bump to 2.0.3

    evaherrada authored May 16, 2022
    Copy the full SHA
    223ca36 View commit details

Commits on Aug 4, 2022

  1. Merge pull request #257 from justinnewitter/get-alarm-values

    DS3231: Add support for fetching alarm values
    caternuson authored Aug 4, 2022
    Copy the full SHA
    ce95623 View commit details

Commits on Aug 8, 2022

  1. Bump to 2.1.0

    evaherrada authored Aug 8, 2022
    Copy the full SHA
    6c257da View commit details

Commits on Aug 9, 2022

  1. Fix "unused variable" warnings in DS3231_alarm.ino

    These unused variables were triggering compiler warnings. As the ESP32
    toolchain promotes warnings to errors, this made the CI workflow fail.
    edgar-bonet committed Aug 9, 2022
    Copy the full SHA
    1739e2e View commit details
  2. Merge pull request #265 from edgar-bonet/fix-warning

    Fix CI failure due to unused variables
    caternuson authored Aug 9, 2022
    Copy the full SHA
    a944a78 View commit details
  3. Bump to 2.1.1

    evaherrada authored Aug 9, 2022
    Copy the full SHA
    5dde49b View commit details

Commits on May 12, 2023

  1. Update CI action versions

    evaherrada committed May 12, 2023
    Copy the full SHA
    33fb040 View commit details

Commits on Nov 14, 2023

  1. Bump version number to 2.1.3

    tyeth committed Nov 14, 2023
    Copy the full SHA
    7f9f5da View commit details

Commits on Nov 15, 2023

  1. Merge pull request #294 from tyeth/bump-version-2023-11-14-20-46-31

    Update version number to 2.1.3
    tyeth authored Nov 15, 2023
    Copy the full SHA
    7cc68ac View commit details

Commits on Mar 20, 2024

  1. Update README.md

    TheKitty authored Mar 20, 2024
    Copy the full SHA
    18154ba View commit details

Commits on Apr 9, 2024

  1. Copy the full SHA
    5298434 View commit details
6 changes: 3 additions & 3 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/setup-python@v1
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: adafruit/ci-arduino
path: ci
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ This is a fork of JeeLab's fantastic real time clock library for Arduino.

Works great with Adafruit RTC breakouts:

- [DS3231 Precision RTC](https://www.adafruit.com/product/3013)
- [DS3231 Precision RTC](https://www.adafruit.com/product/3013) (breakout) and [Stemma QT version](https://www.adafruit.com/product/5188)
- [PCF8523 RTC](https://www.adafruit.com/product/3295)
- [DS1307 RTC](https://www.adafruit.com/product/3296)

@@ -44,7 +44,7 @@ STM32F2 | | | X |
Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!

# Dependencies
* [TinyWireM](https://github.com/adafruit/TinyWireM)
* [Adafruit BusIO](https://github.com/adafruit/Adafruit_BusIO)

# Contributing

53 changes: 37 additions & 16 deletions examples/DS3231_alarm/DS3231_alarm.ino
Original file line number Diff line number Diff line change
@@ -21,42 +21,42 @@ void setup() {
if(!rtc.begin()) {
Serial.println("Couldn't find RTC!");
Serial.flush();
abort();
while (1) delay(10);
}

if(rtc.lostPower()) {
// this will adjust to the date and time at compilation
rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
}

//we don't need the 32K Pin, so disable it
rtc.disable32K();

// Making it so, that the alarm will trigger an interrupt
pinMode(CLOCK_INTERRUPT_PIN, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(CLOCK_INTERRUPT_PIN), onAlarm, FALLING);

// set alarm 1, 2 flag to false (so alarm 1, 2 didn't happen so far)
// if not done, this easily leads to problems, as both register aren't reset on reboot/recompile
rtc.clearAlarm(1);
rtc.clearAlarm(2);

// stop oscillating signals at SQW Pin
// otherwise setAlarm1 will fail
rtc.writeSqwPinMode(DS3231_OFF);

// turn off alarm 2 (in case it isn't off already)
// again, this isn't done at reboot, so a previously set alarm could easily go overlooked
rtc.disableAlarm(2);

// schedule an alarm 10 seconds in the future
if(!rtc.setAlarm1(
rtc.now() + TimeSpan(10),
DS3231_A1_Second // this mode triggers the alarm when the seconds match. See Doxygen for other options
)) {
Serial.println("Error, alarm wasn't set!");
}else {
Serial.println("Alarm will happen in 10 seconds!");
Serial.println("Alarm will happen in 10 seconds!");
}
}

@@ -65,25 +65,46 @@ void loop() {
char date[10] = "hh:mm:ss";
rtc.now().toString(date);
Serial.print(date);

// the stored alarm value + mode
DateTime alarm1 = rtc.getAlarm1();
Ds3231Alarm1Mode alarm1mode = rtc.getAlarm1Mode();
char alarm1Date[12] = "DD hh:mm:ss";
alarm1.toString(alarm1Date);
Serial.print(" [Alarm1: ");
Serial.print(alarm1Date);
Serial.print(", Mode: ");
switch (alarm1mode) {
case DS3231_A1_PerSecond: Serial.print("PerSecond"); break;
case DS3231_A1_Second: Serial.print("Second"); break;
case DS3231_A1_Minute: Serial.print("Minute"); break;
case DS3231_A1_Hour: Serial.print("Hour"); break;
case DS3231_A1_Date: Serial.print("Date"); break;
case DS3231_A1_Day: Serial.print("Day"); break;
}

// the value at SQW-Pin (because of pullup 1 means no alarm)
Serial.print(" SQW: ");
Serial.print("] SQW: ");
Serial.print(digitalRead(CLOCK_INTERRUPT_PIN));
// whether a alarm happened happened
Serial.print(" Alarm1: ");

// whether a alarm fired
Serial.print(" Fired: ");
Serial.print(rtc.alarmFired(1));

// Serial.print(" Alarm2: ");
// Serial.println(rtc.alarmFired(2));
// control register values (see https://datasheets.maximintegrated.com/en/ds/DS3231.pdf page 13)
// Serial.print(" Control: 0b");
// Serial.println(read_i2c_register(DS3231_ADDRESS, DS3231_CONTROL), BIN);

// resetting SQW and alarm 1 flag
// using setAlarm1, the next alarm could now be configurated
if(rtc.alarmFired(1)) {
if (rtc.alarmFired(1)) {
rtc.clearAlarm(1);
Serial.println("Alarm cleared");
Serial.print(" - Alarm cleared");
}

Serial.println();

delay(2000);
}

2 changes: 1 addition & 1 deletion examples/ds1307/ds1307.ino
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (! rtc.isrunning()) {
2 changes: 1 addition & 1 deletion examples/ds1307SqwPin/ds1307SqwPin.ino
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

print_mode();
2 changes: 1 addition & 1 deletion examples/ds1307nvram/ds1307nvram.ino
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

// Print old RAM contents on startup.
2 changes: 1 addition & 1 deletion examples/ds3231/ds3231.ino
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (rtc.lostPower()) {
2 changes: 1 addition & 1 deletion examples/interrupts1Hz/interrupts1Hz.ino
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ void setup() {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}
if (!rtc.initialized() || rtc.lostPower()) {
rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
4 changes: 2 additions & 2 deletions examples/pcf8523/pcf8523.ino
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (! rtc.initialized() || rtc.lostPower()) {
@@ -44,7 +44,7 @@ void setup () {
// to be restarted by clearing the STOP bit. Let's do this to ensure
// the RTC is running.
rtc.start();

// The PCF8523 can be calibrated for:
// - Aging adjustment
// - Temperature compensation
2 changes: 1 addition & 1 deletion examples/pcf8523Countdown/pcf8523Countdown.ino
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

pinMode(LED_BUILTIN, OUTPUT);
2 changes: 1 addition & 1 deletion examples/pcf8563/pcf8563.ino
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (rtc.lostPower()) {
14 changes: 7 additions & 7 deletions examples/pcf8563_interrupt/pcf8563_interrupt.ino
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ RTC_PCF8563 rtc;
char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};

// use D2 for INT0; attach to CLKOUT pin on RTC
const uint8_t INT_PIN = 2;
const uint8_t INT_PIN = 2;

// flag to update serial; set in interrupt callback
volatile uint8_t tick_tock = 1;
@@ -23,7 +23,7 @@ void setup () {
while (!Serial); // wait for serial port to connect. Needed for native USB
#endif


pinMode(INT_PIN, INPUT); // set up interrupt pin
digitalWrite(INT_PIN, HIGH); // turn on pullup resistors
// attach interrupt to set_tick_tock callback on rising edge of INT0
@@ -32,7 +32,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (rtc.lostPower()) {
@@ -51,7 +51,7 @@ void setup () {
}



// When time needs to be re-set on a previously configured device, the
// following line sets the RTC to the date & time this sketch was compiled
// rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
@@ -63,7 +63,7 @@ void setup () {
// to be restarted by clearing the STOP bit. Let's do this to ensure
// the RTC is running.
rtc.start();

// turn on 1Hz clock out, used as INT0 for serial update every second
rtc.writeSqwPinMode(PCF8563_SquareWave1Hz);
}
@@ -72,7 +72,7 @@ void loop () {

// check if time display should be output
if(tick_tock) {

DateTime now = rtc.now();

char time_format[] = "hh:mm:ss AP";
@@ -81,7 +81,7 @@ void loop () {
Serial.println(now.toString(time_format));
Serial.println(now.toString(date_format));
Serial.println();

tick_tock = 0;

}
2 changes: 1 addition & 1 deletion examples/timestamp/timestamp.ino
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (! rtc.isrunning()) {
2 changes: 1 addition & 1 deletion examples/toString/toString.ino
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ void setup () {
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
Serial.flush();
abort();
while (1) delay(10);
}

if (! rtc.isrunning()) {
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=RTClib
version=1.14.2
version=2.1.4
author=Adafruit
maintainer=Adafruit <info@adafruit.com>
sentence=A fork of Jeelab's fantastic RTC library
paragraph=Works with DS1307, DS3231, PCF8523, PCF8563 on multiple architectures
category=Timing
url=https://github.com/adafruit/RTClib
architectures=*
depends=TinyWireM
depends=Adafruit BusIO
Loading