Skip to content

Commit

Permalink
Fixes #51.
Browse files Browse the repository at this point in the history
  • Loading branch information
JChristensen committed May 25, 2018
1 parent 187a982 commit 96c38d6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=DS3232RTC
version=1.2.2
version=1.2.3
author=Jack Christensen <[email protected]>
maintainer=Jack Christensen <[email protected]>
sentence=Arduino Library for Maxim Integrated DS3232 and DS3231 Real-Time Clocks.
Expand Down
6 changes: 0 additions & 6 deletions src/DS3232RTC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
// to indicate whether I2C initialization should occur in the
// constructor; this parameter defaults to true if not given.

#if defined(ARDUINO) && ARDUINO >= 100
#include <Arduino.h>
#else
#include <WProgram.h>
#endif

// define release-independent I2C functions
#if defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)
#include <TinyWireM.h>
Expand Down
1 change: 1 addition & 0 deletions src/DS3232RTC.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#ifndef DS3232RTC_H_INCLUDED
#define DS3232RTC_H_INCLUDED

#include <Arduino.h>
#include <TimeLib.h> // https://github.com/PaulStoffregen/Time

// Alarm masks
Expand Down

0 comments on commit 96c38d6

Please sign in to comment.