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 0b3eadf commit 0936ed7Copy full SHA for 0936ed7
src/components/i2c/drivers/WipperSnapper_I2C_Driver_Out_Sh1107.h
@@ -93,6 +93,7 @@ class WipperSnapper_I2C_Driver_Out_SH1107
93
// Clear the buffer
94
_display->clearDisplay();
95
_display->display();
96
+ _display->print(char('a'));
97
98
return true;
99
}
@@ -123,7 +124,8 @@ class WipperSnapper_I2C_Driver_Out_SH1107
123
124
void WriteMessageSH1107(const char *message) {
125
if (_display == nullptr)
126
return;
-
127
+ WS_DEBUG_PRINT("Message:");
128
+ WS_DEBUG_PRINTLN(message);
129
// Start with a fresh display buffer
130
// and settings
131
int16_t y_idx = 0;
0 commit comments