From c4d9fe3a3753f27945f2f7c1a73d27a8f758cec4 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sat, 28 Sep 2019 10:29:49 +0200 Subject: [PATCH] [SX127x] Fixed units in example --- examples/SX127x/SX127x_Receive/SX127x_Receive.ino | 2 +- .../SX127x_Receive_Interrupt/SX127x_Receive_Interrupt.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/SX127x/SX127x_Receive/SX127x_Receive.ino b/examples/SX127x/SX127x_Receive/SX127x_Receive.ino index 9aed5e3a..c3c3392e 100644 --- a/examples/SX127x/SX127x_Receive/SX127x_Receive.ino +++ b/examples/SX127x/SX127x_Receive/SX127x_Receive.ino @@ -88,7 +88,7 @@ void loop() { // of the last received packet Serial.print(F("[SX1278] SNR:\t\t\t")); Serial.print(lora.getSNR()); - Serial.println(F(" dBm")); + Serial.println(F(" dB")); // print frequency error // of the last received packet diff --git a/examples/SX127x/SX127x_Receive_Interrupt/SX127x_Receive_Interrupt.ino b/examples/SX127x/SX127x_Receive_Interrupt/SX127x_Receive_Interrupt.ino index 10c74b09..3fd250da 100644 --- a/examples/SX127x/SX127x_Receive_Interrupt/SX127x_Receive_Interrupt.ino +++ b/examples/SX127x/SX127x_Receive_Interrupt/SX127x_Receive_Interrupt.ino @@ -135,7 +135,7 @@ void loop() { // print SNR (Signal-to-Noise Ratio) Serial.print(F("[SX1278] SNR:\t\t")); Serial.print(lora.getSNR()); - Serial.println(F(" dBm")); + Serial.println(F(" dB")); // print frequency error Serial.print(F("[SX1278] Frequency error:\t"));