From 8d5ffb7262ec657f5c42bb5e7bbf414f982b8549 Mon Sep 17 00:00:00 2001 From: lewis Date: Sat, 3 Sep 2022 16:44:32 +0800 Subject: [PATCH] i2cScan probe adds another ssd1306 subclass new to output logs correctly --- src/detect/i2cScan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect/i2cScan.h b/src/detect/i2cScan.h index ca7b40a14..c1c6f8f87 100644 --- a/src/detect/i2cScan.h +++ b/src/detect/i2cScan.h @@ -45,7 +45,7 @@ uint8_t oled_probe(byte addr) if (r == 0x08 || r == 0x00) { o_probe = 2; // SH1106 - } else if ( r == 0x03 || r == 0x06 || r == 0x07) { + } else if ( r == 0x03 || r == 0x04 || r == 0x06 || r == 0x07) { o_probe = 1; // SSD1306 } c++;