add: image
This commit is contained in:
23
frame/src/display/EPD_7in5_V2.hpp
Normal file
23
frame/src/display/EPD_7in5_V2.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "IDisplay.hpp"
|
||||
|
||||
namespace frame::display
|
||||
{
|
||||
|
||||
class EPD_7in5_V2 : public IDisplay
|
||||
{
|
||||
public:
|
||||
EPD_7in5_V2();
|
||||
~EPD_7in5_V2();
|
||||
|
||||
bool Init() override;
|
||||
|
||||
void Clear(Color color) override;
|
||||
|
||||
void Display(Image const& image) override;
|
||||
|
||||
void Sleep() override;
|
||||
};
|
||||
|
||||
} // namespace frame::display
|
||||
Reference in New Issue
Block a user