Skip to content

Commit

Permalink
fixed compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
irekzielinski committed Jul 28, 2016
1 parent c34db9b commit 6ce2463
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions PowerMaxEsp8266/PowerMaxEsp8266.ino
Original file line number Diff line number Diff line change
Expand Up @@ -608,4 +608,10 @@ int os_cfg_getPacketTimeout()
{
return PACKET_TIMEOUT_DEFINED;
}

//see PowerMaxAlarm::setDateTime for details of the parameters, if your OS does not have a RTC clock, simply return false
bool os_getLocalTime(unsigned char& year, unsigned char& month, unsigned char& day, unsigned char& hour, unsigned char& minutes, unsigned char& seconds)
{
return false; //IZIZTODO
}
//////End of OS specific part of PM library/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

0 comments on commit 6ce2463

Please sign in to comment.