Skip to content

Commit de6bda2

Browse files
committed
feat(board): remove print outs
1 parent 22265e7 commit de6bda2

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

variants/sensebox_eye/APOTA.bin

-144 Bytes
Binary file not shown.

variants/sensebox_eye/APOTA.ino

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,13 @@ void setBootPartitionToOTA0() {
101101
}
102102

103103
void setupDisplay() {
104-
Serial.println("checking display connection...");
105104
Wire.begin(PIN_QWIIC_SDA,PIN_QWIIC_SCL);
106105
displayEnabled = Wire.requestFrom(0x3D, 1); // Check if the display is connected
107106
if (displayEnabled) {
108-
delay(1000);
109-
Serial.println("Display found!");
110107
display.begin(SSD1306_SWITCHCAPVCC, 0x3D);
111108
display.display();
112109
delay(100);
113110
display.clearDisplay();
114-
} else {
115-
while(true) {
116-
Serial.println("Display not found!");
117-
delay(1000);
118-
}
119111
}
120112
}
121113

0 commit comments

Comments
 (0)