display useless things
This commit is contained in:
13
libs/mare/CMakeLists.txt
Normal file
13
libs/mare/CMakeLists.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
# Find all source files in a single current directory
|
||||
# Save the name to DIR_Config_SRCS
|
||||
aux_source_directory(. DIR_Config_SRCS)
|
||||
|
||||
|
||||
include_directories(../epaper/Config)
|
||||
include_directories(../epaper/e-Paper)
|
||||
include_directories(../epaper/Fonts)
|
||||
|
||||
# Generate the link library
|
||||
add_library(Mare ${DIR_Config_SRCS})
|
||||
target_link_libraries(Mare PUBLIC Config ePaper pico_stdlib hardware_spi)
|
||||
12
libs/mare/mare.cpp
Normal file
12
libs/mare/mare.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
/*******************************************
|
||||
* Most Awesome Renderer Ever
|
||||
*******************************************/
|
||||
#include "mare.h"
|
||||
|
||||
namespace Render {
|
||||
|
||||
Mare::Mare(){
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
22
libs/mare/mare.h
Normal file
22
libs/mare/mare.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*******************************************
|
||||
* Most Awesome Renderer Ever
|
||||
*******************************************/
|
||||
|
||||
#include <DEV_Config.h>
|
||||
#include <EPD_2in9b_V3.h>
|
||||
#include <fonts.h>
|
||||
|
||||
namespace Render{
|
||||
|
||||
class Mare {
|
||||
public:
|
||||
Mare();
|
||||
virtual ~Mare();
|
||||
|
||||
public:
|
||||
void render();
|
||||
|
||||
private:
|
||||
int _var;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user