sketch_feb05a.ino: In function 'void setup()':
sketch_feb05a:6: error: 'tm_Elements_t' was not declared in this scope
sketch_feb05a:6: error: expected `;' before 'test'
tm_Elements_t exists in the Time class but it will not find it even though it's imported. "Not declared."
On the other hand, if I use time_t, it does find it:
#include <Time.h>
void setup()
{
time_t test;
}
void loop() {}
I need a time structure for my purposes though, that has hours, minutes, seconds, days months and years. Maybe I should just create one myself instead of trying to use the structure in the time class?