From 12ddad6f8a78fc1f74653c96ba006f8624cd88f0 Mon Sep 17 00:00:00 2001 From: Sara Damiano Date: Wed, 30 Jan 2019 16:41:12 -0500 Subject: [PATCH] Added debug print --- src/TinyGsmClientXBee.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TinyGsmClientXBee.h b/src/TinyGsmClientXBee.h index c72d233..483d312 100644 --- a/src/TinyGsmClientXBee.h +++ b/src/TinyGsmClientXBee.h @@ -419,6 +419,7 @@ public: // This uses the board's hardware reset pin to force it to reset void pinReset() { if (resetPin >= 0) { + DBG("### Forcing a modem reset!\r\n"); digitalWrite(resetPin, LOW); delay(1); digitalWrite(resetPin, HIGH);