Skip to content

Commit

Permalink
Merge pull request #121 from edgar-bonet/doxygen-intro
Browse files Browse the repository at this point in the history
Make the Doxygen documentation more accessible
  • Loading branch information
drak7 authored Sep 17, 2019
2 parents 997dd0a + 096df58 commit 75b3a16
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

This is a fork of JeeLab's fantastic real time clock library for Arduino.

For details on using this library with an RTC module like the DS1307, PCF8523, or DS3231, see the guide at: https://learn.adafruit.com/ds1307-real-time-clock-breakout-board-kit/overview
For a tutorial on using this library with an RTC module like the DS1307, PCF8523, or DS3231, see the guide at: https://learn.adafruit.com/ds1307-real-time-clock-breakout-board-kit/overview

For the detailed API documentation, see https://adafruit.github.io/RTClib/html/index.html

Works great with Adafruit RTC breakouts:

Expand Down
17 changes: 17 additions & 0 deletions RTClib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
@section classes Available classes
This library provides the following classes:
- Classes for manipulating dates, times and durations:
- DateTime represents a specific point in time; this is the data
type used for setting and reading the supported RTCs
- TimeSpan represents the length of a time interval
- Interfacing specific RTC chips:
- RTC_DS1307
- RTC_DS3231
- RTC_PCF8523
- RTC emulated in software; do not expect much accuracy out of these:
- RTC_Millis is based on `millis()`
- RTC_Micros is based on `micros()`; its drift rate can be tuned by
the user
@section license License
Original library by JeeLabs http://news.jeelabs.org/code/, released to the public domain.
Expand Down

0 comments on commit 75b3a16

Please sign in to comment.