forked from xiaozhi/xiaozhi-esp32
move all hardware init to boards
This commit is contained in:
16
main/display/no_display.h
Normal file
16
main/display/no_display.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef _NO_DISPLAY_H_
|
||||
#define _NO_DISPLAY_H_
|
||||
|
||||
#include "display.h"
|
||||
|
||||
class NoDisplay : public Display {
|
||||
private:
|
||||
virtual void Lock() override;
|
||||
virtual void Unlock() override;
|
||||
|
||||
public:
|
||||
NoDisplay();
|
||||
~NoDisplay();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user