Watchy/examples/WatchFaces/pipboy/WatchyPipBoy.h

24 lines
469 B
C
Raw Normal View History

2024-07-21 20:54:49 -04:00
#ifndef WATCHY_PIP_BOY_H
#define WATCHY_PIP_BOY_H
#include <Watchy.h>
#include "monofonto28pt7b.h"
#include "monofonto10pt7b.h"
#include "monofonto8pt7b.h"
#include "monofonto6pt7b.h"
#include "img.h"
#include "icons.h"
class WatchyPipBoy : public Watchy{
using Watchy::Watchy;
public:
void drawWatchFace();
void drawTime();
void drawDate();
void drawSteps();
void drawWeather();
void drawBattery();
};
#endif