button

Dependencies:   BMI160 SDFileSystem USBDevice max32630fthr sd-driver

Fork of MPSMAX by Faizan Ahmad

RTClock.cpp

Committer:
FaizanAhmad
Date:
2018-05-08
Revision:
2:5767f3f6909f
Parent:
1:6b969a803e1b

File content as of revision 2:5767f3f6909f:

#include "RTClock.h"


void initRTC(){
    time_t seconds = time(NULL);
}

void setRTCTime(){

}


void loadNextMove(){

}

void printRTCTime(){
    time_t seconds = time(NULL);
    pc.printf("Time as seconds since January 1, 1970 = %d\n", seconds);
    pc.printf("Time as a basic string = %s", ctime(&seconds));
    char buffer[32];
    strftime(buffer, 32, "%I:%M %p\n", localtime(&seconds));
    pc.printf("Time as a custom formatted string = %s", buffer);

}