2019-12-05 15:19:47 -05:00
|
|
|
#pragma once
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
2019-12-07 11:11:50 -05:00
|
|
|
#include <drivers/St7789.h>
|
|
|
|
#include <drivers/SpiMaster.h>
|
|
|
|
#include <Components/Gfx/Gfx.h>
|
|
|
|
#include <bits/unique_ptr.h>
|
|
|
|
|
|
|
|
extern const FONT_INFO lCD_70ptFontInfo;
|
2019-12-05 15:19:47 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
class DisplayApp {
|
|
|
|
public:
|
|
|
|
void Start();
|
2019-12-07 11:11:50 -05:00
|
|
|
|
2019-12-21 11:58:00 -05:00
|
|
|
void Minutes(uint8_t m);
|
|
|
|
void Hours(uint8_t h);
|
|
|
|
|
2019-12-05 15:19:47 -05:00
|
|
|
private:
|
|
|
|
TaskHandle_t taskHandle;
|
|
|
|
static void Process(void* instance);
|
2019-12-07 11:11:50 -05:00
|
|
|
void InitHw();
|
|
|
|
Pinetime::Drivers::SpiMaster spi;
|
|
|
|
std::unique_ptr<Drivers::St7789> lcd;
|
|
|
|
std::unique_ptr<Components::Gfx> gfx;
|
|
|
|
const FONT_INFO largeFont {lCD_70ptFontInfo.height, lCD_70ptFontInfo.startChar, lCD_70ptFontInfo.endChar, lCD_70ptFontInfo.spacePixels, lCD_70ptFontInfo.charInfo, lCD_70ptFontInfo.data};
|
2019-12-07 13:15:33 -05:00
|
|
|
void Refresh();
|
|
|
|
|
2019-12-21 11:58:00 -05:00
|
|
|
|
|
|
|
|
2019-12-07 13:15:33 -05:00
|
|
|
uint8_t seconds = 0;
|
|
|
|
uint8_t minutes = 0;
|
|
|
|
uint8_t hours = 0;
|
|
|
|
char currentChar[4];
|
2019-12-05 15:19:47 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|