From d97c4babefaec9b0deedbd697ab789e59a45d9fc Mon Sep 17 00:00:00 2001 From: Sara Damiano Date: Fri, 25 Jan 2019 15:19:33 -0500 Subject: [PATCH] Longer lookup wait --- src/TinyGsmClientXBee.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TinyGsmClientXBee.h b/src/TinyGsmClientXBee.h index 1e21cc1..ce3b52d 100644 --- a/src/TinyGsmClientXBee.h +++ b/src/TinyGsmClientXBee.h @@ -730,7 +730,7 @@ protected: strIP = stream.readStringUntil('\r'); // read result strIP.trim(); if (!strIP.endsWith(GF("ERROR"))) gotIP = true; - delay(250); // short wait before trying again + delay(2500); // wait a bit before trying again } if (gotIP) { // No reason to continue if we don't know the IP address IPAddress ip = TinyGsmIpFromString(strIP);