From 56bf66c926dfcd022d55df27ea9034db77a34e50 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sat, 2 May 2020 20:11:59 -0700 Subject: [PATCH] allow even longer for busy networks --- meshtastic/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/test.py b/meshtastic/test.py index 5523f6a..daa9705 100644 --- a/meshtastic/test.py +++ b/meshtastic/test.py @@ -57,7 +57,7 @@ def testSend(fromInterface, toInterface): logging.info(f"Sending test packet from {fromNode} to {toNode}") fromInterface.sendText(f"Test {testNumber}", toNode) - time.sleep(15) + time.sleep(40) return (len(receivedPackets) >= 1)