![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Updated with option to return from BP screen to main screen, resolved screen navigation issues
Dependencies: SDFileSystem TFTLCD_8bit ds3231 program mbed
Fork of poc_dis_5 by
rtc.cpp@4:6bd81bb1790d, 2017-03-01 (annotated)
- Committer:
- nikitateggi
- Date:
- Wed Mar 01 18:49:33 2017 +0000
- Revision:
- 4:6bd81bb1790d
- Parent:
- 1:8316c23ec6b9
POC code with eeprom
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nikitateggi | 1:8316c23ec6b9 | 1 | #include "mbed.h" |
nikitateggi | 1:8316c23ec6b9 | 2 | #include <stdio.h> |
nikitateggi | 1:8316c23ec6b9 | 3 | #include "ds3231.h" |
nikitateggi | 1:8316c23ec6b9 | 4 | #include "rtc.h" |
nikitateggi | 1:8316c23ec6b9 | 5 | |
nikitateggi | 1:8316c23ec6b9 | 6 | |
nikitateggi | 1:8316c23ec6b9 | 7 | |
nikitateggi | 1:8316c23ec6b9 | 8 | time_t rtc_read() |
nikitateggi | 1:8316c23ec6b9 | 9 | { |
nikitateggi | 1:8316c23ec6b9 | 10 | |
nikitateggi | 1:8316c23ec6b9 | 11 | Ds3231 rtc(PTC11, PTC10); |
nikitateggi | 4:6bd81bb1790d | 12 | time_t epoch_time1; |
nikitateggi | 1:8316c23ec6b9 | 13 | epoch_time1 = rtc.get_epoch(); |
nikitateggi | 4:6bd81bb1790d | 14 | |
nikitateggi | 4:6bd81bb1790d | 15 | return epoch_time1; // return the time |
nikitateggi | 1:8316c23ec6b9 | 16 | |
nikitateggi | 4:6bd81bb1790d | 17 | } |