From 5952106e93fd94dd0499e7f7b109c1685ed1b491 Mon Sep 17 00:00:00 2001 From: StevenCellist <47155822+StevenCellist@users.noreply.github.com> Date: Sat, 4 Jan 2025 15:05:36 +0100 Subject: [PATCH] [LoRaWAN] Update reference example --- examples/LoRaWAN/LoRaWAN_Reference/LoRaWAN_Reference.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/LoRaWAN/LoRaWAN_Reference/LoRaWAN_Reference.ino b/examples/LoRaWAN/LoRaWAN_Reference/LoRaWAN_Reference.ino index 28b29467..98a3e312 100644 --- a/examples/LoRaWAN/LoRaWAN_Reference/LoRaWAN_Reference.ino +++ b/examples/LoRaWAN/LoRaWAN_Reference/LoRaWAN_Reference.ino @@ -68,8 +68,8 @@ void setup() { // Manages uplink intervals to the TTN Fair Use Policy node.setDutyCycle(true, 1250); - // Enable the dwell time limits - 400ms is the limit for the US - node.setDwellTime(true, 400); + // Update dwell time limits - 400ms is the limit for the US + node.setDwellTime(400); Serial.println(F("Ready!\n")); }