We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1666e commit 33e43d5Copy full SHA for 33e43d5
src/Wippersnapper_demo.ino.cpp
src/components/display/drivers/dispDrvBase.h
@@ -78,13 +78,13 @@ class dispDrvBase {
78
Whether to reset the display before initialization.
79
@return True if the display was initialized successfully, false otherwise.
80
*/
81
- virtual bool begin(thinkinkmode_t mode, bool reset = true);
+ virtual bool begin(thinkinkmode_t mode, bool reset = true) { return false; }
82
83
/*!
84
@brief Attempts to initialize a SPI TFT driver.
85
86
87
- virtual bool begin();
+ virtual bool begin() { return false; }
88
89
90
@brief Writes a message to the display.
0 commit comments