Skip to content

Commit

Permalink
Issue #5
Browse files Browse the repository at this point in the history
Changes for ESP32
  • Loading branch information
SV-Zanshin authored and SV-Zanshin committed Jan 27, 2019
1 parent 685b42d commit 1eba21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Set/Set.ino
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void readCommand() { //
sscanf(inputBuffer,"%s %*s",workBuffer); // Parse the string for first word //
if (!strcmp(workBuffer,"SETDATE" )) command = SetDate; // Set command number when found //
else command = Unknown_Command; // Otherwise set to not found //
uint tokens,year,month,day,hour,minute,second; // Variables to hold parsed dt/tm //
unsigned int tokens,year,month,day,hour,minute,second; // Variables to hold parsed dt/tm //
switch (command) { // Action depending upon command //
/***********************************************************************************************************
** Set the device time and date **
Expand Down

0 comments on commit 1eba21c

Please sign in to comment.