mirror of
https://github.com/esphome/esphome.git
synced 2025-01-14 00:23:18 +01:00
ef832becf1
Co-authored-by: Oxan van Leeuwen <oxan@oxanvanleeuwen.nl>
45 lines
1 KiB
C++
45 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "esphome/components/i2c/i2c.h"
|
|
#include "esphome/components/touchscreen/touchscreen.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/hal.h"
|
|
|
|
namespace esphome {
|
|
namespace ektf2232 {
|
|
|
|
struct EKTF2232TouchscreenStore {
|
|
volatile bool touch;
|
|
ISRInternalGPIOPin pin;
|
|
|
|
static void gpio_intr(EKTF2232TouchscreenStore *store);
|
|
};
|
|
|
|
using namespace touchscreen;
|
|
|
|
class EKTF2232Touchscreen : public Touchscreen, public Component, public i2c::I2CDevice {
|
|
public:
|
|
void setup() override;
|
|
void loop() override;
|
|
void dump_config() override;
|
|
|
|
void set_interrupt_pin(InternalGPIOPin *pin) { this->interrupt_pin_ = pin; }
|
|
void set_rts_pin(GPIOPin *pin) { this->rts_pin_ = pin; }
|
|
|
|
void set_power_state(bool enable);
|
|
bool get_power_state();
|
|
|
|
protected:
|
|
void hard_reset_();
|
|
bool soft_reset_();
|
|
|
|
InternalGPIOPin *interrupt_pin_;
|
|
GPIOPin *rts_pin_;
|
|
EKTF2232TouchscreenStore store_;
|
|
uint16_t x_resolution_;
|
|
uint16_t y_resolution_;
|
|
};
|
|
|
|
} // namespace ektf2232
|
|
} // namespace esphome
|