This is the library to manage the time format

Dependents:   Trisula_Data_Logger

RTC_Reader.h

Committer:
DimasFN
Date:
2018-11-26
Revision:
0:bbb72ffa5684

File content as of revision 0:bbb72ffa5684:

#ifndef _RTC_READER_H_
#define _RTC_READER_H_
#include "iostream"
#include "string"

namespace RTC_READER_DS3231{
    class RTC_
    {
          public:
              void Read_RTC_Data();
          public:
              int RTC_hour;
              int RTC_minute;
              int RTC_second;
              int RTC_dayOfWeek;
              int RTC_date;
              int RTC_month;
              int RTC_year;
    };
}

#endif