From 84ec6434e4af936ca2e6f786fbac460068ff8bc9 Mon Sep 17 00:00:00 2001 From: "Pawel Spychalski (DzikuVx)" Date: Tue, 15 May 2018 17:51:58 +0200 Subject: [PATCH] Additional pages --- crossbow/tx_oled.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/crossbow/tx_oled.cpp b/crossbow/tx_oled.cpp index 3d1a90a..cd4e930 100644 --- a/crossbow/tx_oled.cpp +++ b/crossbow/tx_oled.cpp @@ -97,6 +97,10 @@ void TxOled::renderPagePwr( _display.print("PWR"); //TODO content + _display.setCursor(0, 25); + _display.setTextSize(3); + _display.print(radioState->loraTxPower); + _display.print("dBm"); _display.display(); } @@ -130,7 +134,9 @@ void TxOled::renderPageMode( _display.setTextSize(2); _display.print("Mode"); - //TODO content + _display.setCursor(0, 25); + _display.setTextSize(3); + _display.print("Full"); _display.display(); }