Difference between revisions of "TiLDA MK4/Code Structure"

From EMF Badge
Jump to navigation Jump to search
Line 2: Line 2:
  
 
main.py headers:
 
main.py headers:
 +
<pre>
 
""" <your description>
 
""" <your description>
 
"""
 
"""
<pre>
 
 
___name___        = "<your_app_name>"
 
___name___        = "<your_app_name>"
 
___license___      = "MIT"
 
___license___      = "MIT"

Revision as of 10:31, 1 September 2018

Headers

main.py headers:

""" <your description>
"""
___name___         = "<your_app_name>"
___license___      = "MIT"
___dependencies___ = ["wifi", "http", "ugfx_helper", "sleep"]
___categories___   = ["<see below>"]
___bootstrapped___ = True # Whether or not apps get downloaded on first install. Defaults to "False", mostly likely you won't have to use this at all.

Please use one of these categories:

  • System
  • Homescreens
  • Games
  • Sound
  • EMF
  • Villages
  • Phone
  • LEDs
  • Sensors
  • Demo
  • Other

Footer

Ensure your apps calls restart_to_default() when finished

main.py footer:

restart_to_default()