Badger2040: Sleep after writing the book, to fix possible write delay when on battery

pull/313/head
Mike Bell 2022-03-25 16:52:52 +00:00
rodzic e0e34fef42
commit 72ff77aafa
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -1,4 +1,5 @@
import badger2040
import time
import gc
import badger_os
@ -13,7 +14,10 @@ except OSError:
# If the specified file doesn't exist,
# pre-populate with Wind In The Willows
import witw
open(text_file, "wb").write(witw.data())
with open(text_file, "wb") as f:
f.write(witw.data())
f.flush()
time.sleep(0.1)
del witw
except ImportError:
pass