From 7cb14f41cd3bbb99ac4d588a920211752e764b04 Mon Sep 17 00:00:00 2001 From: BigTire Date: Fri, 16 Dec 2022 21:33:57 +0100 Subject: [PATCH] Removed poor signal quality icon when bluetooth disconnected. --- projectEEG/projectEEG/projectEEG.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projectEEG/projectEEG/projectEEG.ino b/projectEEG/projectEEG/projectEEG.ino index 7a71de9..59194c8 100644 --- a/projectEEG/projectEEG/projectEEG.ino +++ b/projectEEG/projectEEG/projectEEG.ino @@ -361,10 +361,10 @@ void drawBluetoothLoading() { void drawBluetoothFailed() { M5.lcd.fillRect(0, 65, 320, 110, (COLORS[COLOR_MODE] - 1) % 2); if (wasConnected) { - // TODO SMAZAT SIGNAL + M5.lcd.fillRect(0, 0, 150, 55, (COLORS[COLOR_MODE] - 1) % 2); + M5.lcd.fillRect(0, 185, 320, 240, (COLORS[COLOR_MODE] - 1) % 2); M5.lcd.fillRect(0, 185, 320, 240, (COLORS[COLOR_MODE] - 1) % 2); M5.Lcd.drawString("Bluetooth: disconnected", 20, 110, 4); - M5.lcd.fillRect(0, 185, 320, 240, (COLORS[COLOR_MODE] - 1) % 2); } else { M5.Lcd.drawString("connecting failed", 50, 110, 4); }