From 2c7fdbc3fea8f9b5c507b13ad76697cf047b3de2 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 9 Jul 2024 14:34:54 -0400 Subject: [PATCH] SH1106 fix for BT --- src/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.cpp b/src/display.cpp index bbf4fca..d971eea 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -102,7 +102,7 @@ void setup_display() { } } #else - if (!display.begin(0x3c, true)) { + if (!display.begin(0x3c, false)) { logger.log(logging::LoggerLevel::LOGGER_LEVEL_ERROR, "SH1106", "allocation failed!"); while (true) { }