From 36c5fc8d3c7381a0d9d642db2b15f5bab43ad47f Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Sat, 12 Feb 2022 21:16:11 -0800 Subject: [PATCH] increase sleep for win11 --- meshtastic/stream_interface.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshtastic/stream_interface.py b/meshtastic/stream_interface.py index 335ef5ad..ec0670d6 100644 --- a/meshtastic/stream_interface.py +++ b/meshtastic/stream_interface.py @@ -89,7 +89,8 @@ def _writeBytes(self, b): self.stream.write(b) self.stream.flush() # we sleep here to give the TBeam a chance to work - time.sleep(0.1) + # also win11 might need a bit more time, too + time.sleep(1.0) def _readBytes(self, length): """Read an array of bytes from our stream"""