From 362c9628eaddb4eca49e07b181d196bebae20536 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 20 Oct 2016 11:26:36 +0200 Subject: [PATCH] Return to Idle display from CW transmission --- OLED.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/OLED.cpp b/OLED.cpp index 1ec2c44..4e67d93 100644 --- a/OLED.cpp +++ b/OLED.cpp @@ -245,6 +245,12 @@ void COLED::writeCWInt() void COLED::clearCWInt() { + display.setCursor(0,display.height()/2); + display.setTextSize(3); + display.print("Idle"); + display.setTextSize(1); + display.display(); + display.startscrollright(0x02,0x0f); } void COLED::close()