From e57326aeef0071d9936cc6471a32fbc37348877a Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 12 Jun 2018 21:14:33 +0100 Subject: [PATCH] Clear the POCSAG screen properly. --- Nextion.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Nextion.cpp b/Nextion.cpp index 5d637ae..059574e 100644 --- a/Nextion.cpp +++ b/Nextion.cpp @@ -719,8 +719,9 @@ void CNextion::writePOCSAGInt(uint32_t ric, const std::string& message) void CNextion::clearPOCSAGInt() { - sendCommand("t1.txt=\"MMDVM IDLE\""); + sendCommand("t0.txt=\"Waiting\""); sendCommandAction(134U); + sendCommand("t1.txt=\"\""); } void CNextion::writeCWInt()