123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- #if ARDUINO >= 100
- #include <Arduino.h>
- #else
- #include <WProgram.h>
- #endif
- #include "Time.h"
- static tmElements_t tm;
- static time_t cacheTime;
- static uint32_t syncInterval = 300;
- void refreshCache(time_t t) {
- if (t != cacheTime) {
- breakTime(t, tm);
- cacheTime = t;
- }
- }
- int hour() {
- return hour(now());
- }
- int hour(time_t t) {
- refreshCache(t);
- return tm.Hour;
- }
- int hourFormat12() {
- return hourFormat12(now());
- }
- int hourFormat12(time_t t) {
- refreshCache(t);
- if( tm.Hour == 0 )
- return 12;
- else if( tm.Hour > 12)
- return tm.Hour - 12 ;
- else
- return tm.Hour ;
- }
- uint8_t isAM() {
- return !isPM(now());
- }
- uint8_t isAM(time_t t) {
- return !isPM(t);
- }
- uint8_t isPM() {
- return isPM(now());
- }
- uint8_t isPM(time_t t) {
- return (hour(t) >= 12);
- }
- int minute() {
- return minute(now());
- }
- int minute(time_t t) {
- refreshCache(t);
- return tm.Minute;
- }
- int second() {
- return second(now());
- }
- int second(time_t t) {
- refreshCache(t);
- return tm.Second;
- }
- int day(){
- return(day(now()));
- }
- int day(time_t t) {
- refreshCache(t);
- return tm.Day;
- }
- int weekday() {
- return weekday(now());
- }
- int weekday(time_t t) {
- refreshCache(t);
- return tm.Wday;
- }
-
- int month(){
- return month(now());
- }
- int month(time_t t) {
- refreshCache(t);
- return tm.Month;
- }
- int year() {
- return year(now());
- }
- int year(time_t t) {
- refreshCache(t);
- return tmYearToCalendar(tm.Year);
- }
-
- #define LEAP_YEAR(Y) ( ((1970+Y)>0) && !((1970+Y)%4) && ( ((1970+Y)%100) || !((1970+Y)%400) ) )
- static const uint8_t monthDays[]={31,28,31,30,31,30,31,31,30,31,30,31};
-
- void breakTime(time_t timeInput, tmElements_t &tm){
- uint8_t year;
- uint8_t month, monthLength;
- uint32_t time;
- unsigned long days;
- time = (uint32_t)timeInput;
- tm.Second = time % 60;
- time /= 60;
- tm.Minute = time % 60;
- time /= 60;
- tm.Hour = time % 24;
- time /= 24;
- tm.Wday = ((time + 4) % 7) + 1;
-
- year = 0;
- days = 0;
- while((unsigned)(days += (LEAP_YEAR(year) ? 366 : 365)) <= time) {
- year++;
- }
- tm.Year = year;
-
- days -= LEAP_YEAR(year) ? 366 : 365;
- time -= days;
-
- days=0;
- month=0;
- monthLength=0;
- for (month=0; month<12; month++) {
- if (month==1) {
- if (LEAP_YEAR(year)) {
- monthLength=29;
- } else {
- monthLength=28;
- }
- } else {
- monthLength = monthDays[month];
- }
-
- if (time >= monthLength) {
- time -= monthLength;
- } else {
- break;
- }
- }
- tm.Month = month + 1;
- tm.Day = time + 1;
- }
- time_t makeTime(tmElements_t &tm){
-
- int i;
- uint32_t seconds;
-
- seconds= tm.Year*(SECS_PER_DAY * 365);
- for (i = 0; i < tm.Year; i++) {
- if (LEAP_YEAR(i)) {
- seconds += SECS_PER_DAY;
- }
- }
-
-
- for (i = 1; i < tm.Month; i++) {
- if ( (i == 2) && LEAP_YEAR(tm.Year)) {
- seconds += SECS_PER_DAY * 29;
- } else {
- seconds += SECS_PER_DAY * monthDays[i-1];
- }
- }
- seconds+= (tm.Day-1) * SECS_PER_DAY;
- seconds+= tm.Hour * SECS_PER_HOUR;
- seconds+= tm.Minute * SECS_PER_MIN;
- seconds+= tm.Second;
- return (time_t)seconds;
- }
-
- static uint32_t sysTime = 0;
- static uint32_t prevMillis = 0;
- static uint32_t nextSyncTime = 0;
- static timeStatus_t Status = timeNotSet;
- getExternalTime getTimePtr;
- #ifdef TIME_DRIFT_INFO
- time_t sysUnsyncedTime = 0;
- #endif
- time_t now() {
-
- while (millis() - prevMillis >= 1000) {
-
- sysTime++;
- prevMillis += 1000;
- #ifdef TIME_DRIFT_INFO
- sysUnsyncedTime++;
- #endif
- }
- if (nextSyncTime <= sysTime) {
- if (getTimePtr != 0) {
- time_t t = getTimePtr();
- if (t != 0) {
- setTime(t);
- } else {
- nextSyncTime = sysTime + syncInterval;
- Status = (Status == timeNotSet) ? timeNotSet : timeNeedsSync;
- }
- }
- }
- return (time_t)sysTime;
- }
- void setTime(time_t t) {
- #ifdef TIME_DRIFT_INFO
- if(sysUnsyncedTime == 0)
- sysUnsyncedTime = t;
- #endif
- sysTime = (uint32_t)t;
- nextSyncTime = (uint32_t)t + syncInterval;
- Status = timeSet;
- prevMillis = millis();
- }
- void setTime(int hr,int min,int sec,int dy, int mnth, int yr){
-
-
- if( yr > 99)
- yr = yr - 1970;
- else
- yr += 30;
- tm.Year = yr;
- tm.Month = mnth;
- tm.Day = dy;
- tm.Hour = hr;
- tm.Minute = min;
- tm.Second = sec;
- setTime(makeTime(tm));
- }
- void adjustTime(long adjustment) {
- sysTime += adjustment;
- }
- timeStatus_t timeStatus() {
- now();
- return Status;
- }
- void setSyncProvider( getExternalTime getTimeFunction){
- getTimePtr = getTimeFunction;
- nextSyncTime = sysTime;
- now();
- }
- void setSyncInterval(time_t interval){
- syncInterval = (uint32_t)interval;
- nextSyncTime = sysTime + syncInterval;
- }
|