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 1f0da2d commit a5a3f8eCopy full SHA for a5a3f8e
src/SparkFun_Qwiic_OLED.h
@@ -167,9 +167,12 @@ class QwiicOLEDBaseClass : public Print { // NOTE: implementing Arduino Print
167
//
168
// When called, the system and OLED are reset back to an initial state
169
170
+ // Parameter Description
171
+ // --------- -----------------------------
172
+ // retval true on success, false on failure
173
- void reset(void){
- _device.reset();
174
+ bool reset(void){
175
+ return _device.reset();
176
}
177
178
///////////////////////////////////////////////////////////////////////
0 commit comments