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.
Dependencies: Hotboards_rtcc mbed
main.cpp
- Committer:
- Hotboards
- Date:
- 2016-02-10
- Revision:
- 2:374bbb14bb6a
- Parent:
- 1:d385e20a630f
File content as of revision 2:374bbb14bb6a:
/*
Hotboards_rtcc Library - setting time and date
Demonstrates the use a MCP7941x clock calendar. The Hotboards_rtcc
library works with this microchip real time clock
(http://www.hotboards.org).
This sketch set and arbitrary time and date, and then send through
serial port every five seconds
The circuit:
* VDD --> 3.3v
* GND --> GND
* SDA --> SDA
* SCL --> SCL
*/
#include "mbed.h"
#include "Hotboards_rtcc.h"
/* days of the week */
const char *week[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
/* months of the year */
const char *months[] = {"JAN","FEB","MAR","APR","MAY","JUN", "JUL", "AUG","SEPT","OCT","NOV","DEC"};
/*serial port init*/
Serial pc(USBTX,USBRX);
/*i2c instance delaration for use with the rtcc library*/
I2C device(PB_9, PB_8);
/*lets declare and rtcc instance */
Hotboards_rtcc rtcc(device);
int main()
{
/*i2c bus clock set to 100khz*/
device.frequency(100000);
/* init the rtcc, just enable the clock if not already enable */
rtcc.begin();
/* set the time (15:30:00) and date 1/MAR/2001 */
rtcc.adjust( DateTime( 2001, 2, 1, 15, 30, 0 ) );
while(1)
{
/* get the actual time and date */
DateTime time = rtcc.now( );
/* print to serial port */
printf( "Time- %d:%d:%d Date- %s/ %d/ %s/ %d\n",time.hour( ),time.minute( ),time.second( ),week[time.dayOfTheWeek( )],time.day( ),months[time.month( )],time.year());
/* repeat again every 5 seconds*/
wait( 5 );
}
}
Hotboards RTCC