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

This commit is contained in:
Mike Bell 2022-03-25 16:52:52 +00:00
parent e0e34fef42
commit 72ff77aafa
1 changed files with 5 additions and 1 deletions

View File

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