From 9dffd4ee8dcd73dd8de188069e3b1b1717313cb6 Mon Sep 17 00:00:00 2001 From: Gilles Coppex Date: Thu, 26 Jun 2025 22:29:09 +0200 Subject: [PATCH] Fixed a millisec to sec conversion in a serial print --- examples/LoRaWAN/RadioLib_OTAA/RadioLib_OTAA.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/LoRaWAN/RadioLib_OTAA/RadioLib_OTAA.ino b/examples/LoRaWAN/RadioLib_OTAA/RadioLib_OTAA.ino index ac1c7eb..dbdb05d 100644 --- a/examples/LoRaWAN/RadioLib_OTAA/RadioLib_OTAA.ino +++ b/examples/LoRaWAN/RadioLib_OTAA/RadioLib_OTAA.ino @@ -323,7 +323,7 @@ void setup() Serial.print(F("Boots since unsuccessful join: ")); // Serial.println(bootCountSinceUnsuccessfulJoin); Serial.print(F("Retrying join in ")); - Serial.print(sleepForSeconds); + Serial.print(sleepForSeconds / 1000); Serial.println(F(" seconds")); delay(sleepForSeconds);