EMF_Camp_Badge/phone/main.py

22 lines
424 B
Python
Raw Normal View History

"""Phone app for baic calling functions
"""
___name___ = "Phone"
___license___ = "MIT"
2018-08-28 18:35:49 -04:00
___dependencies___ = ["app", "dialogs", "sim800", "ugfx_helper"]
___categories___ = ["System"]
___bootstrapped___ = True
from app import *
from dialogs import *
2018-08-28 18:35:49 -04:00
import ugfx
import ugfx_helper
2018-08-28 18:28:58 -04:00
import sim800
ugfx_helper.init()
ugfx.clear()
notocall = prompt_text("Number to call:")
if (notocall):
sim800.call(notocall)