Time and TimeAlarms Libraries – Ask here for help or suggestions

I found the problem, the code on the website has a != where it should be a ==

The line:

if(timeStatus()!= timeNotSet)

Should read:

if(timeStatus() == timeNotSet)

Of course, reading it now, this makes way more sense.