vibrating_alarm_m5stickc.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. """
  2. tested on uiflow for stickc v1.8.1
  3. """
  4. # pylint: disable=import-error
  5. import m5ui
  6. import machine
  7. import micropython
  8. from m5stack import axp, btnA, lcd
  9. FONT = lcd.FONT_DejaVu40
  10. DEFAULT_FONT_COLOR = lcd.WHITE
  11. print("battery:", axp.getBatVoltage(), "V")
  12. m5ui.setScreenColor(0x000000) # clear screen
  13. screen_width, screen_height = lcd.winsize()
  14. # https://github.com/m5stack/UIFlow-Code/wiki/M5UI#textbox
  15. clock_text_box = m5ui.M5TextBox(
  16. screen_width - 1, 0, "HH:MM", FONT, DEFAULT_FONT_COLOR, rotate=90
  17. )
  18. alarm_hour_text_box = m5ui.M5TextBox(
  19. screen_width // 2, 0, "00", FONT, DEFAULT_FONT_COLOR, rotate=90
  20. )
  21. m5ui.M5TextBox(screen_width // 2, 53, ":", FONT, DEFAULT_FONT_COLOR, rotate=90)
  22. alarm_minute_text_box = m5ui.M5TextBox(
  23. screen_width // 2, 66, "00", FONT, DEFAULT_FONT_COLOR, rotate=90
  24. )
  25. # > [contradictory to] official micropython documentation,
  26. # > to set RTC, use particular tuple (year , month, day, week=0, hour, minute, second, timestamp=0)
  27. # https://community.m5stack.com/topic/3108/m5stack-core2-micropython-rtc-example
  28. rtc = machine.RTC()
  29. clock_update_timer = machine.Timer(0)
  30. clock_update_timer.init(
  31. period=10000, # ms
  32. mode=machine.Timer.PERIODIC,
  33. callback=lambda t: clock_text_box.setText(
  34. "{:02d}:{:02d}".format(*rtc.datetime()[4:6])
  35. ),
  36. )
  37. menu_position = 0 # pylint: disable=invalid-name
  38. def update_menu(event_arg: None):
  39. # pylint: disable=unused-argument; callback
  40. alarm_hour_text_box.setColor(
  41. lcd.GREEN if menu_position == 1 else DEFAULT_FONT_COLOR
  42. )
  43. alarm_minute_text_box.setColor(
  44. lcd.GREEN if menu_position == 2 else DEFAULT_FONT_COLOR
  45. )
  46. def button_a_pressed():
  47. global menu_position # pylint: disable=global-statement,invalid-name
  48. menu_position = (menu_position + 1) % 3
  49. # https://docs.micropython.org/en/latest/library/micropython.html#micropython.schedule
  50. micropython.schedule(update_menu, menu_position)
  51. btnA.wasPressed(button_a_pressed)
  52. # TODO https://docs.micropython.org/en/latest/library/machine.WDT.html#machine-wdt
  53. # TODO https://docs.micropython.org/en/latest/esp8266/tutorial/powerctrl.html#deep-sleep-mode