mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-31 18:18:27 +02:00
c6dc336c4a
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: NP v/d Spek <github_mail@lumensoft.nl> Co-authored-by: Clyde Stubbs <2366188+clydebarrow@users.noreply.github.com> Co-authored-by: Gustavo Ambrozio <gustavo@gustavo.eng.br>
36 lines
827 B
C++
36 lines
827 B
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 {
|
|
|
|
using namespace touchscreen;
|
|
|
|
class EKTF2232Touchscreen : public Touchscreen, public i2c::I2CDevice {
|
|
public:
|
|
void setup() 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_();
|
|
void update_touches() override;
|
|
|
|
InternalGPIOPin *interrupt_pin_;
|
|
GPIOPin *rts_pin_;
|
|
};
|
|
|
|
} // namespace ektf2232
|
|
} // namespace esphome
|