vibrating_alarm_m5stickc.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. """
  2. tested on uiflow for stickc v1.8.1
  3. """
  4. import json
  5. # pylint: disable=import-error
  6. import esp32
  7. import m5ui
  8. import machine
  9. import micropython
  10. import utils
  11. import utime
  12. from m5stack import axp, btnA, btnB, lcd, rtc
  13. _LARGE_FONT = lcd.FONT_DejaVu40
  14. _SMALL_FONT = lcd.FONT_DejaVu18
  15. _DEFAULT_FONT_COLOR = lcd.WHITE
  16. _LEFT_PADDING = 8
  17. _ALARM_TIME_PATH = "alarm.json"
  18. _SCREEN_WIDTH, _SCREEN_HEIGHT = lcd.winsize()
  19. _AWAKE_SECONDS = 8
  20. def _handle_pending_events():
  21. # > [...] a millisecond sleep larger than 10ms will check for pending (soft)
  22. # > interrupts during the sleep. [...] The reason for the 10ms value is
  23. # > because the FreeRTOS tick is 10ms, [...]
  24. # https://github.com/micropython/micropython/issues/3493#issuecomment-352617624
  25. # https://github.com/micropython/micropython/commit/4ed586528047d3eced28a9f4af11dbbe64fa99bb
  26. utime.sleep_ms(11)
  27. def _get_current_daytime() -> int:
  28. # > [contradictory to] official micropython documentation, to set RTC,
  29. # > use particular tuple (year , month, day, week=0, hour, minute, second, timestamp=0)
  30. # https://community.m5stack.com/topic/3108/m5stack-core2-micropython-rtc-example
  31. hour, minute, seconds = rtc.now()[3:]
  32. return (hour * 60 + minute) * 60 + seconds
  33. class App:
  34. # pylint: disable=too-few-public-methods,too-many-instance-attributes
  35. def __init__(self) -> None:
  36. self._clock_text_box = None
  37. self._menu_position = 0
  38. self._wait_for_sleep_start_time_update = False
  39. self._sleep_start_time_seconds = 0.0
  40. self._alarm_hour = None
  41. self._alarm_minute = None
  42. self._alarm_hour_text_box = None
  43. self._alarm_minute_text_box = None
  44. self._alarm_timer = None
  45. self._battery_status_text_box = None
  46. @property
  47. def _alarm_daytime(self) -> int:
  48. return (self._alarm_hour * 60 + self._alarm_minute) * 60 # type: ignore
  49. def _load_alarm_time(self) -> None:
  50. with open(_ALARM_TIME_PATH, "r") as alarm_time_file:
  51. alarm_time = json.load(alarm_time_file)
  52. self._alarm_hour = alarm_time["hour"]
  53. self._alarm_minute = alarm_time["minute"]
  54. def _save_alarm_time(self) -> None:
  55. with open(_ALARM_TIME_PATH, "w") as alarm_time_file:
  56. json.dump(
  57. {"hour": self._alarm_hour, "minute": self._alarm_minute},
  58. alarm_time_file,
  59. )
  60. def _reschedule_sleep(self, interrupt: bool) -> None:
  61. if interrupt:
  62. self._wait_for_sleep_start_time_update = True
  63. micropython.schedule(self._reschedule_sleep, False)
  64. else:
  65. self._sleep_start_time_seconds = utime.time() + _AWAKE_SECONDS
  66. self._wait_for_sleep_start_time_update = False
  67. def _update_menu(self, event_arg: None) -> None:
  68. # pylint: disable=unused-argument; callback
  69. self._alarm_hour_text_box.setColor( # type: ignore
  70. lcd.GREEN
  71. if self._menu_position == 1
  72. else (lcd.RED if self._menu_position == 2 else _DEFAULT_FONT_COLOR)
  73. )
  74. self._alarm_minute_text_box.setColor( # type: ignore
  75. lcd.GREEN
  76. if self._menu_position == 3
  77. else (lcd.RED if self._menu_position == 4 else _DEFAULT_FONT_COLOR)
  78. )
  79. def _button_a_pressed(self) -> None:
  80. self._reschedule_sleep(interrupt=True)
  81. self._menu_position = (self._menu_position + 1) % 5
  82. # https://docs.micropython.org/en/latest/library/micropython.html#micropython.schedule
  83. micropython.schedule(self._update_menu, None)
  84. @staticmethod
  85. def _alert() -> None:
  86. print("ALARM")
  87. def _alarm(self, timer: machine.Timer) -> None:
  88. # pylint: disable=unused-argument; callback
  89. micropython.schedule(lambda n: self._alert(), None)
  90. micropython.schedule(lambda n: self._configure_alarm_timer(), None)
  91. def _configure_alarm_timer(self) -> None:
  92. seconds_until_alarm = (self._alarm_daytime - _get_current_daytime() - 1) % (
  93. 24 * 60 * 60
  94. ) + 1
  95. print("alarm in ", seconds_until_alarm / 60, " min")
  96. # TODO configure wake from sleep
  97. self._alarm_timer.init( # type: ignore
  98. period=seconds_until_alarm * 1000, # ms
  99. mode=machine.Timer.ONE_SHOT,
  100. callback=self._alarm,
  101. )
  102. def _update_alarm_time(self, event_arg: None) -> None:
  103. # pylint: disable=unused-argument; callback
  104. self._alarm_hour_text_box.setText( # type: ignore
  105. "{:02d}".format(self._alarm_hour) # type: ignore
  106. )
  107. self._alarm_minute_text_box.setText( # type: ignore
  108. "{:02d}".format(self._alarm_minute) # type: ignore
  109. )
  110. self._save_alarm_time()
  111. self._configure_alarm_timer()
  112. def _button_b_pressed(self) -> None:
  113. self._reschedule_sleep(interrupt=True)
  114. if self._menu_position == 1:
  115. self._alarm_hour += 1 # type: ignore
  116. elif self._menu_position == 2:
  117. self._alarm_hour -= 1 # type: ignore
  118. elif self._menu_position == 3:
  119. self._alarm_minute += 1 # type: ignore
  120. elif self._menu_position == 4:
  121. self._alarm_minute -= 1 # type: ignore
  122. self._alarm_hour %= 24 # type: ignore
  123. self._alarm_minute %= 60 # type: ignore
  124. micropython.schedule(self._update_alarm_time, None)
  125. @staticmethod
  126. def _format_time() -> str:
  127. return "{:02d}:{:02d}".format(*rtc.now()[3:5])
  128. def _setup_clock(self) -> None:
  129. # https://github.com/m5stack/UIFlow-Code/wiki/M5UI#textbox
  130. self._clock_text_box = m5ui.M5TextBox(
  131. _SCREEN_WIDTH - 1,
  132. _LEFT_PADDING,
  133. self._format_time(),
  134. _LARGE_FONT,
  135. _DEFAULT_FONT_COLOR,
  136. rotate=90,
  137. )
  138. machine.Timer(0).init(
  139. period=4000, # ms
  140. mode=machine.Timer.PERIODIC,
  141. callback=lambda t: self._clock_text_box.setText(self._format_time()), # type: ignore
  142. )
  143. def _setup_alarm(self) -> None:
  144. if not utils.exists(_ALARM_TIME_PATH):
  145. self._alarm_hour = self._alarm_minute = 0 # type: ignore
  146. self._save_alarm_time()
  147. else:
  148. self._load_alarm_time()
  149. self._alarm_hour_text_box = m5ui.M5TextBox(
  150. _SCREEN_WIDTH // 2,
  151. _LEFT_PADDING,
  152. "{:02d}".format(self._alarm_hour), # type: ignore
  153. _LARGE_FONT,
  154. _DEFAULT_FONT_COLOR,
  155. rotate=90,
  156. )
  157. m5ui.M5TextBox(
  158. _SCREEN_WIDTH // 2,
  159. _LEFT_PADDING + 53,
  160. ":",
  161. _LARGE_FONT,
  162. _DEFAULT_FONT_COLOR,
  163. rotate=90,
  164. )
  165. self._alarm_minute_text_box = m5ui.M5TextBox(
  166. _SCREEN_WIDTH // 2,
  167. _LEFT_PADDING + 66,
  168. "{:02d}".format(self._alarm_minute), # type: ignore
  169. _LARGE_FONT,
  170. _DEFAULT_FONT_COLOR,
  171. rotate=90,
  172. )
  173. # machine.Timer(1).init(...) breaks button handling
  174. self._alarm_timer = machine.Timer(2)
  175. self._configure_alarm_timer()
  176. def _update_battery_status_info(self) -> None:
  177. self._battery_status_text_box.setText( # type: ignore
  178. "{:.02f}V".format(axp.getBatVoltage())
  179. )
  180. def _setup_battery_status_info(self) -> None:
  181. self._battery_status_text_box = m5ui.M5TextBox(
  182. 12,
  183. _SCREEN_HEIGHT - 20,
  184. "",
  185. _SMALL_FONT,
  186. _DEFAULT_FONT_COLOR,
  187. rotate=0,
  188. )
  189. def run(self) -> None:
  190. m5ui.setScreenColor(0x000000) # clear screen
  191. self._setup_clock()
  192. self._setup_alarm()
  193. self._setup_battery_status_info()
  194. btnA.wasPressed(self._button_a_pressed)
  195. btnB.wasPressed(self._button_b_pressed)
  196. # not sure whether ext0 would be better
  197. esp32.wake_on_ext1([btnA.pin], esp32.WAKEUP_ALL_LOW)
  198. self._reschedule_sleep(interrupt=False)
  199. while True:
  200. self._update_battery_status_info()
  201. while utime.time() < self._sleep_start_time_seconds:
  202. utime.sleep(1) # seconds
  203. # TODO turn off display
  204. axp.setLcdBrightness(30)
  205. machine.lightsleep()
  206. # TODO turn on display
  207. axp.setLcdBrightness(100)
  208. print("wake reason:", machine.wake_reason())
  209. _handle_pending_events()
  210. while self._wait_for_sleep_start_time_update:
  211. _handle_pending_events()
  212. App().run()