Files
watchy/watchfaces/pokemon-2.0/Watchy_Pokemon.h
T
2024-03-11 20:54:01 +01:00

28 lines
513 B
C++

#ifndef WATCHY_POKEMON_H
#define WATCHY_POKEMON_H
#include <Watchy.h>
#include "FreeMonoBold10pt7b.h"
#include "FreeMonoBold7pt7b.h"
#include "wta.h"
#define FR
#ifdef FR
#include "pokemon_fr.h"
#else
#include "pokemon.h"
#endif
class WatchyPokemon : public WatchySynced
{
using WatchySynced::WatchySynced;
public:
void drawWatchFace();
double randomDay(uint32_t d);
double randomHour(uint32_t d);
double randomMinute(uint32_t d);
};
#endif