2021-07-15 07:11:27 -04:00
|
|
|
#pragma once
|
|
|
|
#include "drivers/Cst816s.h"
|
|
|
|
#include "systemtask/SystemTask.h"
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Components {
|
|
|
|
class LittleVgl;
|
|
|
|
}
|
|
|
|
namespace Drivers {
|
|
|
|
class Cst816S;
|
|
|
|
}
|
|
|
|
namespace System {
|
|
|
|
class SystemTask;
|
|
|
|
}
|
|
|
|
namespace Controllers {
|
|
|
|
class TouchHandler {
|
|
|
|
public:
|
|
|
|
explicit TouchHandler(Drivers::Cst816S&, Components::LittleVgl&);
|
|
|
|
void CancelTap();
|
|
|
|
void Register(Pinetime::System::SystemTask* systemTask);
|
|
|
|
void Start();
|
|
|
|
void WakeUp();
|
2021-07-16 04:55:29 -04:00
|
|
|
|
|
|
|
bool IsTouching() const {
|
|
|
|
return info.touching;
|
|
|
|
}
|
2021-07-15 07:11:27 -04:00
|
|
|
uint8_t GetX() const {
|
2021-07-16 04:55:29 -04:00
|
|
|
return info.x;
|
2021-07-15 07:11:27 -04:00
|
|
|
}
|
|
|
|
uint8_t GetY() const {
|
2021-07-16 04:55:29 -04:00
|
|
|
return info.y;
|
2021-07-15 07:11:27 -04:00
|
|
|
}
|
|
|
|
Drivers::Cst816S::Gestures GestureGet();
|
|
|
|
private:
|
|
|
|
static void Process(void* instance);
|
|
|
|
void Work();
|
2021-07-16 04:55:29 -04:00
|
|
|
|
|
|
|
Pinetime::Drivers::Cst816S::TouchInfos info;
|
2021-07-15 07:11:27 -04:00
|
|
|
Pinetime::System::SystemTask* systemTask = nullptr;
|
|
|
|
TaskHandle_t taskHandle;
|
|
|
|
Pinetime::Drivers::Cst816S& touchPanel;
|
|
|
|
Pinetime::Components::LittleVgl& lvgl;
|
|
|
|
Pinetime::Drivers::Cst816S::Gestures gesture;
|
|
|
|
bool isCancelled = false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|