led_clock-old/lib/rtc_ds1307.h

31 lines
1.1 KiB
C

/* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/** @file rtc_ds1307.h
* @author King Kévin <kingkevin@cuvoodoo.info>
* @date 2016
* @brief this library handles communication with the I2C RTC IC Maxim DS1307
* peripherals used: I2C @ref rtc_ds1307_i2c
*/
#pragma once
/** @brief setup communication with RTC IC
* configure the I2C port defined in the sources
*/
void rtc_setup(void);
/** @brief read seconds (0-59) from RTC IC
* @return the number of seconds of the current time
*/
uint8_t rtc_read_seconds(void);