23 lines
326 B
C
Raw Normal View History

2025-02-15 17:51:57 -05:00
#ifndef PANEL_H
#define PANEL_H
#include "panel_device.h"
class Panel {
public:
2025-02-15 18:26:26 -05:00
explicit Panel(IPanelDevice &device);
2025-02-15 17:51:57 -05:00
~Panel() = default;
IPanelDevice *device_;
2025-02-16 07:21:16 -05:00
esp_lcd_panel_io_handle_t esp_io_;
2025-02-15 17:51:57 -05:00
esp_lcd_panel_handle_t esp_panel_;
private:
2025-02-15 18:26:26 -05:00
esp_lcd_panel_dev_config_t esp_panel_config_;
2025-02-15 17:51:57 -05:00
};
#endif //PANEL_H