Обновление библиотек

This commit is contained in:
gunner47
2019-12-05 10:06:48 +02:00
parent 3ce7db0d97
commit c551a70a5b
205 changed files with 3731 additions and 2176 deletions

View File

@@ -99,7 +99,7 @@ time_t compileTime()
{
const time_t FUDGE(10); //fudge factor to allow for upload time, etc. (seconds, YMMV)
const char *compDate = __DATE__, *compTime = __TIME__, *months = "JanFebMarAprMayJunJulAugSepOctNovDec";
char compMon[3], *m;
char compMon[4], *m;
strncpy(compMon, compDate, 3);
compMon[3] = '\0';

View File

@@ -85,7 +85,7 @@ time_t compileTime()
{
const time_t FUDGE(10); //fudge factor to allow for upload time, etc. (seconds, YMMV)
const char *compDate = __DATE__, *compTime = __TIME__, *months = "JanFebMarAprMayJunJulAugSepOctNovDec";
char compMon[3], *m;
char compMon[4], *m;
strncpy(compMon, compDate, 3);
compMon[3] = '\0';

View File

@@ -41,7 +41,7 @@ time_t compileTime()
{
const time_t FUDGE(10); // fudge factor to allow for compile time (seconds, YMMV)
const char *compDate = __DATE__, *compTime = __TIME__, *months = "JanFebMarAprMayJunJulAugSepOctNovDec";
char chMon[3], *m;
char chMon[4], *m;
tmElements_t tm;
strncpy(chMon, compDate, 3);

View File

@@ -88,7 +88,7 @@ time_t compileTime()
{
const time_t FUDGE(10); // fudge factor to allow for compile time (seconds, YMMV)
const char *compDate = __DATE__, *compTime = __TIME__, *months = "JanFebMarAprMayJunJulAugSepOctNovDec";
char chMon[3], *m;
char chMon[4], *m;
tmElements_t tm;
strncpy(chMon, compDate, 3);

View File

@@ -1,5 +1,5 @@
name=Timezone
version=1.2.2
version=1.2.3
author=Jack Christensen <jack.christensen@outlook.com>
maintainer=Jack Christensen <jack.christensen@outlook.com>
sentence=Arduino library to facilitate time zone conversions and automatic daylight saving (summer) time adjustments.