diff --git a/DateStrings.cpp b/DateStrings.cpp index 489bb15..3eccff3 100644 --- a/DateStrings.cpp +++ b/DateStrings.cpp @@ -5,7 +5,7 @@ * * No memory is consumed in the sketch if your code does not call any of the string methods * You can change the text of the strings, make sure the short strings are each exactly 3 characters - * the long strings can be any length up to the constant dt_MAX_STRING_LEN defined in Time.h + * the long strings can be any length up to the constant dt_MAX_STRING_LEN defined in TimeLib.h * */ @@ -20,7 +20,7 @@ #define strcpy_P(dest, src) strcpy((dest), (src)) #endif #include // for strcpy_P or strcpy -#include "Time.h" +#include "TimeLib.h" // the short strings for each day or month must be exactly dt_SHORT_STR_LEN #define dt_SHORT_STR_LEN 3 // the length of short strings diff --git a/Time.cpp b/Time.cpp index b12baec..5ca1327 100644 --- a/Time.cpp +++ b/Time.cpp @@ -33,7 +33,7 @@ #include #endif -#include "Time.h" +#include "TimeLib.h" static tmElements_t tm; // a cache of time elements static time_t cacheTime; // the time the cache was updated