pokemon 2.0 skin

This commit is contained in:
Klemek
2021-11-19 21:32:31 +01:00
parent 7d75ef2834
commit ed9a25d056
13 changed files with 29081 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef WTA_H
#define WTA_H
#include <Watchy.h>
#define WTA_URL "http://worldtimeapi.org/api/timezone/"
#define WTA_TIMEZONE "Europe/Paris"
#define WTA_UPDATE_SHORT_INTERVAL 30 //minutes
#define WTA_UPDATE_LONG_INTERVAL 300 //minutes
#define WTA_UPDATE_TIMEOUT 10000 //ms
class WatchySynced : public Watchy
{
public:
void readWorldTime();
};
#endif