EMF_Camp_Badge/mass_storage/main.py

23 lines
713 B
Python
Raw Normal View History

2018-08-29 08:06:54 -04:00
"""Enables mass storage mode in a safe way"""
2018-09-03 09:59:37 -04:00
___title___ = "Mass Storage Enabler"
2018-08-29 08:06:54 -04:00
___license___ = "MIT"
___dependencies___ = ["dialogs", "ugfx_helper"]
___categories___ = ["EMF"]
___bootstrapped___ = True
import ugfx, tilda, ugfx_helper, dialogs, app, time
2018-08-29 08:06:54 -04:00
ugfx_helper.init()
ugfx.clear()
print("enabling USB storage...")
tilda.storage_enable_usb()
time.sleep(1)
2018-08-29 08:06:54 -04:00
print("DONE")
with dialogs.WaitingMessage(title="Mass Storage Enabled", text="You can now use the badge like a USB key.\nPlease safely eject afterwards. This app will close automatically."):
print("Waiting for USB mass storage to be unmounted...")
tilda.storage_disable_usb()
print("DONE")
app.restart_to_default()