nikita teggi / Mbed 2 deprecated merged_code2_3rd_nov_2017

Dependencies:   SDFileSystem ds3231 eeprom_Nikita mbed testUniGraphic_150217

Fork of merged_code2_20sept_2017_4th_oct_2017 by nikita teggi

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers rtc.cpp Source File

rtc.cpp

00001 #include "mbed.h"
00002 #include <stdio.h> 
00003 #include "ds3231.h"
00004 #include "rtc.h"  
00005   
00006   
00007   
00008 time_t rtc_read()
00009 {
00010 
00011    Ds3231 rtc(PTC11, PTC10); 
00012    time_t epoch_time1;
00013    epoch_time1 = rtc.get_epoch();      
00014   
00015    return  epoch_time1;     // return the time
00016    
00017 }