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 SenseSemi

Committer:
suhasini
Date:
Thu Mar 30 11:34:04 2017 +0000
Revision:
5:a3ea7c82b7e1
Parent:
4:6bd81bb1790d
PID updation possible, Proper screen navigation enabled, Return functionality from BP to main screen-done, date-time format modified, BP data not saved into SD card

Who changed what in which revision?

UserRevisionLine numberNew 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 }