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"""