From 8ca4011cb0e991c4816f4e4ec2dd086bdadc9024 Mon Sep 17 00:00:00 2001 From: Ash-4 <81280775+Ash-4@users.noreply.github.com> Date: Fri, 20 Aug 2021 23:58:13 -0500 Subject: [PATCH] Update CommandStation-EX.ino Update LCD row number for Ready and Free RAM. --- CommandStation-EX.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CommandStation-EX.ino b/CommandStation-EX.ino index c8a3aed..5628943 100644 --- a/CommandStation-EX.ino +++ b/CommandStation-EX.ino @@ -101,7 +101,7 @@ void setup() LCN::init(LCN_SERIAL); #endif - LCD(1,F("Ready")); + LCD(3,F("Ready")); } void loop() @@ -140,6 +140,6 @@ void loop() if (freeNow < ramLowWatermark) { ramLowWatermark = freeNow; - LCD(2,F("Free RAM=%5db"), ramLowWatermark); + LCD(3,F("Free RAM=%5db"), ramLowWatermark); } }