Time RTC clock UNIXTIME

hi,
I recplaced by HW RTC by Blnyk Time RTC according to the examples and it works.
The Blynk current local time is accessable by members of e.g. local.hour() without requesting sending a poll by Blynk.sendInternal(…
Question:
1.) How can I get “unixtime” without sending

Blynk.sendInternal("rtc", "sync"); 

2.) What ar the available members of “local.”

Thanks

I assume that you have these lines in your code?…

#include <ezTime.h>
Timezone local;

If so then the local you’re referring to is an alias for the Timezone object in the ezTime.h library. The documentation for this is here…

Pete.

1 Like

solved, tnx