Merge pull request #266 from mkinney/increase_sleep_for_win11

increase sleep for win11
This commit is contained in:
mkinney
2022-02-12 21:18:53 -08:00
committed by GitHub

View File

@@ -89,7 +89,8 @@ class StreamInterface(MeshInterface):
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"""