Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of rtc_func by
RTC8563.h
- Committer:
- KagerJ
- Date:
- 2015-04-23
- Revision:
- 2:ce174a86d215
File content as of revision 2:ce174a86d215:
// // @ Project : RTC8563 // @ File Name : RTC8563.h // @ Date : 06.04.2015 // @ Author : Franz Pucher // @ Copyright : pe@bulme.at // #include "mbed.h" #include "const.h" #if !defined(_RTC8563_H) #define _RTC8563_H class RTC8563 { public: RTC8563(); // delete void RTC8563(PinName sda, PinName scl); char rtc_read(char address); void rtc_write(char address, char value); void rtc_init(); void rtc_alarm(); protected: I2C i2c; }; #endif //_RTC8563_H