I am trying to compile and upload one of the example WiFly projects to my Arduino. One of the example's functions is has return-type 'time_t', but the compiler doesn't recognize that. I have tried including both <ctime>
and <time.h>
.
This is my first time really using C++, So how do I import 'time_t' on my Arduino?
Apparently you'll need to do two things to use time_t
on your Arduino.
<Time.h>
(note the capital T)