Files
watchy/watchfaces/tetris-2.0/wta.h
T
2021-09-20 22:25:34 +02:00

16 lines
260 B
C++

#ifndef WTA_H
#define WTA_H
#include <Watchy.h>
#define WTA_URL "http://worldtimeapi.org/api/timezone/"
#define WTA_TIMEZONE "Etc/UTC"
#define WTA_UPDATE_INTERVAL 60 //minutes
class WatchySynced : public Watchy
{
public:
void readWorldTime();
};
#endif