PaulStoffregen / Time

Time library for Arduino
http://playground.arduino.cc/code/time
1.24k stars 665 forks source link

Shortcut in breakTime when referring to same day #94

Open jamesmyatt opened 6 years ago

jamesmyatt commented 6 years ago

Converting days since 1970 to weekday, day, month, year is expensive, but can use internal cache of time elements to skip this calculation when the day hasn't changed.

This also fixes a bug in void setTime(int hr,int min,int sec,int dy, int mnth, int yr) that the cacheTime and Wday element weren't updated.