vibrating_alarm_m5stickc.py 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. """
  2. tested on uiflow for stickc v1.8.1
  3. """
  4. # pylint: disable=import-error
  5. import json
  6. import m5ui
  7. import machine
  8. import micropython
  9. import utils
  10. from m5stack import axp, btnA, btnB, lcd
  11. FONT = lcd.FONT_DejaVu40
  12. DEFAULT_FONT_COLOR = lcd.WHITE
  13. ALARM_TIME_PATH = "alarm.json"
  14. SCREEN_WIDTH, SCREEN_HEIGHT = lcd.winsize()
  15. m5ui.setScreenColor(0x000000) # clear screen
  16. print("battery:", axp.getBatVoltage(), "V")
  17. # > [contradictory to] official micropython documentation,
  18. # > to set RTC, use particular tuple (year , month, day, week=0, hour, minute, second, timestamp=0)
  19. # https://community.m5stack.com/topic/3108/m5stack-core2-micropython-rtc-example
  20. rtc = machine.RTC()
  21. # https://github.com/m5stack/UIFlow-Code/wiki/M5UI#textbox
  22. clock_text_box = m5ui.M5TextBox(
  23. SCREEN_WIDTH - 1, 0, "HH:MM", FONT, DEFAULT_FONT_COLOR, rotate=90
  24. )
  25. clock_update_timer = machine.Timer(0)
  26. clock_update_timer.init(
  27. period=10000, # ms
  28. mode=machine.Timer.PERIODIC,
  29. callback=lambda t: clock_text_box.setText(
  30. "{:02d}:{:02d}".format(*rtc.datetime()[4:6])
  31. ),
  32. )
  33. if not utils.exists(ALARM_TIME_PATH):
  34. with open(ALARM_TIME_PATH, "w") as alarm_time_file:
  35. json.dump({"hour": 0, "minute": 0}, alarm_time_file)
  36. with open(ALARM_TIME_PATH, "r") as alarm_time_file:
  37. alarm_time = json.load(alarm_time_file)
  38. alarm_hour_text_box = m5ui.M5TextBox(
  39. SCREEN_WIDTH // 2,
  40. 0,
  41. "{:02d}".format(alarm_time["hour"]),
  42. FONT,
  43. DEFAULT_FONT_COLOR,
  44. rotate=90,
  45. )
  46. m5ui.M5TextBox(SCREEN_WIDTH // 2, 53, ":", FONT, DEFAULT_FONT_COLOR, rotate=90)
  47. alarm_minute_text_box = m5ui.M5TextBox(
  48. SCREEN_WIDTH // 2,
  49. 66,
  50. "{:02d}".format(alarm_time["minute"]),
  51. FONT,
  52. DEFAULT_FONT_COLOR,
  53. rotate=90,
  54. )
  55. menu_position = 0 # pylint: disable=invalid-name
  56. def update_menu(event_arg: None):
  57. # pylint: disable=unused-argument; callback
  58. alarm_hour_text_box.setColor(
  59. lcd.GREEN if menu_position == 1 else DEFAULT_FONT_COLOR
  60. )
  61. alarm_minute_text_box.setColor(
  62. lcd.GREEN if menu_position == 2 else DEFAULT_FONT_COLOR
  63. )
  64. def button_a_pressed():
  65. global menu_position # pylint: disable=global-statement,invalid-name
  66. menu_position = (menu_position + 1) % 3
  67. # https://docs.micropython.org/en/latest/library/micropython.html#micropython.schedule
  68. micropython.schedule(update_menu, menu_position)
  69. def button_b_pressed():
  70. global menu_position # pylint: disable=global-statement,invalid-name
  71. if menu_position == 1:
  72. alarm_time["hour"] += 1
  73. alarm_hour_text_box.setText("{:02d}".format(alarm_time["hour"]))
  74. elif menu_position == 2:
  75. alarm_time["minute"] += 1
  76. alarm_minute_text_box.setText("{:02d}".format(alarm_time["minute"]))
  77. # TODO persist alarm time
  78. # micropython.schedule(update_menu, menu_position)
  79. btnA.wasPressed(button_a_pressed)
  80. btnB.wasPressed(button_b_pressed)
  81. # TODO https://docs.micropython.org/en/latest/library/machine.WDT.html#machine-wdt
  82. # TODO https://docs.micropython.org/en/latest/esp8266/tutorial/powerctrl.html#deep-sleep-mode