Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
universam1 committed Jun 5, 2021
1 parent 394a2b1 commit 9872c32
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pio/lib/Globals/Globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
extern Ticker flasher;

// defines go here
#define FIRMWAREVERSION "6.5.1"
#define FIRMWAREVERSION "6.6.0"

#define API_FHEM true
#define API_UBIDOTS true
Expand Down
1 change: 0 additions & 1 deletion pio/lib/Sender/Sender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ bool SenderClass::RTCSyncToNTP()
struct tm timeinfo;
gmtime_r(&now, &timeinfo);
CONSOLELN(""); CONSOLE(F("Current time set to: ")); CONSOLELN(asctime(&timeinfo));
_doc["time"] = time(nullptr);
if (now > TIMECHECK){
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion pio/src/iSpindel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ bool uploadData(uint8_t service)
else if (service == DTiSPINDELde)
{
CONSOLELN(F("\ncalling iSPINDELde"));
return sender.sendTCP("ispindle.de", 9501);
return sender.sendTCP("ispindle.de", 9501).length() > 0;
}
else if (service == DTTCP)
{
Expand Down

0 comments on commit 9872c32

Please sign in to comment.