From bc1ab86f1e2da3e2ead3e77f8f3992c2a8ee8493 Mon Sep 17 00:00:00 2001 From: StevenCellist Date: Tue, 27 Feb 2024 00:21:42 +0100 Subject: [PATCH] [LoRaWAN] Fix example output --- .../LoRaWAN_End_Device_Reference.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/LoRaWAN/LoRaWAN_End_Device_Reference/LoRaWAN_End_Device_Reference.ino b/examples/LoRaWAN/LoRaWAN_End_Device_Reference/LoRaWAN_End_Device_Reference.ino index 2a908f28..207dd356 100644 --- a/examples/LoRaWAN/LoRaWAN_End_Device_Reference/LoRaWAN_End_Device_Reference.ino +++ b/examples/LoRaWAN/LoRaWAN_End_Device_Reference/LoRaWAN_End_Device_Reference.ino @@ -271,7 +271,7 @@ void loop() { if(node.getMacDeviceTimeAns(&networkTime, &fracSecond, true) == RADIOLIB_ERR_NONE) { Serial.print(F("[LoRaWAN] DeviceTime Unix:\t")); Serial.println(networkTime); - Serial.print(F("[LoRaWAN] LinkCheck second:\t1/")); + Serial.print(F("[LoRaWAN] DeviceTime second:\t1/")); Serial.println(fracSecond); }