summaryrefslogtreecommitdiff
path: root/src/DisplayApp/DisplayApp.h
blob: e89ff64fab6378aa10f9f61983923244bfbd71f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once
#include <FreeRTOS.h>
#include <task.h>
#include <drivers/St7789.h>
#include <drivers/SpiMaster.h>
#include <Components/Gfx/Gfx.h>
#include <bits/unique_ptr.h>

extern const FONT_INFO lCD_70ptFontInfo;

namespace Pinetime {
  namespace Applications {
    class DisplayApp {
      public:
        void Start();

        void Minutes(uint8_t m);
        void Hours(uint8_t h);

        void SetTime(uint8_t minutes, uint8_t hours);

      private:
        TaskHandle_t taskHandle;
        static void Process(void* instance);
        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};
        void Refresh();



        uint8_t seconds = 0;
        uint8_t minutes = 0;
        uint8_t hours = 0;
        char currentChar[4];
        uint32_t deltaSeconds = 0;
    };
  }
}