Get mobile cpu speed
import miso print miso.get_hal_attr(11) # 104000 for my 6600
12388 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
import miso print miso.get_hal_attr(11) # 104000 for my 6600
import e32, miso, thread running = 1 def lighton(): while running: miso.reset_inactivity_time() e32.ao_sleep(5) thread.start_new_thread(lighton, ()) # end by set running = 0
import e32 import miso import thread flag = 1 def _lighton(): while flag: miso.reset_inactivity_time() e32.ao_sleep(5) def lighton(): thread.start_new_thread(_lighton, ()) def lightoff(): global flag flag = 0
import miso miso.reset_inactivity_time()
def light_on(): import miso, e32 miso.reset_inactivity_time() e32.ao_sleep(10, light_on) # forever loop light_on() # always keep light on
import appuifw, miso, e32 # run-and-break type of app running = 1 def set_exit(): global running running = 0 appuifw.app.exit_key_handler= set_exit # main loop while running: miso.vibrate(500, 100) # vibrate for 500 millisec, at full speed e32.ao_sleep(10) # vibrate every 10 seconds