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>
|
2019-12-26 12:33:40 -05:00
|
|
|
#include <queue.h>
|
2019-12-27 10:05:35 -05:00
|
|
|
#include <Components/Battery/BatteryController.h>
|
2019-12-27 11:05:49 -05:00
|
|
|
#include <Components/Ble/BleController.h>
|
2019-12-28 08:34:50 -05:00
|
|
|
#include <Components/DateTime/DateTimeController.h>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include "Fonts/lcdfont14.h"
|
2020-01-03 10:32:31 -05:00
|
|
|
#include "../drivers/Cst816s.h"
|
2020-01-11 11:14:12 -05:00
|
|
|
#include <date/date.h>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include <DisplayApp/Screens/Clock.h>
|
|
|
|
#include <DisplayApp/Screens/Message.h>
|
2019-12-07 11:11:50 -05:00
|
|
|
|
|
|
|
extern const FONT_INFO lCD_70ptFontInfo;
|
2019-12-05 15:19:47 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
class DisplayApp {
|
|
|
|
public:
|
2019-12-26 12:33:40 -05:00
|
|
|
enum class States {Idle, Running};
|
2020-01-03 10:32:31 -05:00
|
|
|
enum class Messages : uint8_t {GoToSleep, GoToRunning, UpdateDateTime, UpdateBleConnection, UpdateBatteryLevel, TouchEvent} ;
|
2019-12-28 08:34:50 -05:00
|
|
|
DisplayApp(Controllers::Battery &batteryController,
|
|
|
|
Controllers::Ble &bleController,
|
|
|
|
Controllers::DateTime& dateTimeController);
|
2019-12-05 15:19:47 -05:00
|
|
|
void Start();
|
2019-12-26 12:33:40 -05:00
|
|
|
void PushMessage(Messages msg);
|
|
|
|
|
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-27 09:12:09 -05:00
|
|
|
const FONT_INFO smallFont {lCD_14ptFontInfo.height, lCD_14ptFontInfo.startChar, lCD_14ptFontInfo.endChar, lCD_14ptFontInfo.spacePixels, lCD_14ptFontInfo.charInfo, lCD_14ptFontInfo.data};
|
2019-12-07 13:15:33 -05:00
|
|
|
void Refresh();
|
|
|
|
|
2019-12-26 12:33:40 -05:00
|
|
|
States state = States::Running;
|
|
|
|
void RunningState();
|
|
|
|
void IdleState();
|
|
|
|
QueueHandle_t msgQueue;
|
|
|
|
|
|
|
|
static constexpr uint8_t queueSize = 10;
|
|
|
|
static constexpr uint8_t itemSize = 1;
|
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
Pinetime::Controllers::Battery &batteryController;
|
2019-12-27 11:05:49 -05:00
|
|
|
Pinetime::Controllers::Ble &bleController;
|
2019-12-28 08:34:50 -05:00
|
|
|
Pinetime::Controllers::DateTime& dateTimeController;
|
2019-12-27 10:05:35 -05:00
|
|
|
|
2020-01-03 10:32:31 -05:00
|
|
|
Pinetime::Drivers::Cst816S touchPanel;
|
|
|
|
void OnTouchEvent();
|
2020-01-18 12:17:52 -05:00
|
|
|
|
|
|
|
Screens::Clock clockScreen;
|
|
|
|
Screens::Screen* currentScreen = nullptr;
|
|
|
|
// Screens::Message messageScreen;
|
|
|
|
// bool screenState = false;
|
2020-01-18 14:53:32 -05:00
|
|
|
static constexpr uint8_t pinSpiSck = 2;
|
|
|
|
static constexpr uint8_t pinSpiMosi = 3;
|
|
|
|
static constexpr uint8_t pinSpiMiso = 4;
|
|
|
|
static constexpr uint8_t pinSpiCsn = 25;
|
|
|
|
static constexpr uint8_t pinLcdDataCommand = 18;
|
|
|
|
static constexpr uint8_t pinLcdBacklight1 = 14;
|
|
|
|
static constexpr uint8_t pinLcdBacklight2 = 22;
|
|
|
|
static constexpr uint8_t pinLcdBacklight3 = 23;
|
2019-12-05 15:19:47 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|