From aecf3a6ad61036f7190f3b47e234056c2e029326 Mon Sep 17 00:00:00 2001 From: Geert Bevin Date: Tue, 17 May 2016 14:18:25 +0200 Subject: [PATCH] Turn off serial mode when starting up with low power mode forced enabled --- linnstrument-firmware.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linnstrument-firmware.ino b/linnstrument-firmware.ino index 5bf63061..ece22906 100644 --- a/linnstrument-firmware.ino +++ b/linnstrument-firmware.ino @@ -1073,8 +1073,9 @@ void setup() { // detect if low power mode is toggled by holding down the octave/transpose button at startup if (switchPressAtStartup(4)) { Device.operatingLowPower = true; - cellTouched(0, 4, touchedCell); + Device.serialMode = false; storeSettings(); + cellTouched(0, 4, touchedCell); } applyLowPowerMode();