From 7327828136d461b3a4c3c23a169f40ce10d7dc5c Mon Sep 17 00:00:00 2001 From: gabriel becker Date: Wed, 7 Sep 2022 22:48:31 -0300 Subject: [PATCH] Make alarm sleep. --- src/alarm.py | 32 +++++++++++++++++++++++++++----- src/parameters.py | 3 +++ 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/alarm.py b/src/alarm.py index 3f7166f..b585077 100644 --- a/src/alarm.py +++ b/src/alarm.py @@ -1,8 +1,9 @@ import time -from machine import Pin +from machine import Pin, Timer import buzzer from display import Display import constants +import parameters SATURATED_MESSAGE = """Filtro saturado.""" @@ -10,21 +11,28 @@ HOLE_MESSAGE = """Filtro ou linha \nfurado.""" class Alarm: reset_btnn = Pin(constants.RESET_BUTTON_PIN, mode=Pin.IN) + led = Pin(constants.ALARM_LED_PIN, mode=Pin.OUT) + interrupt_timer = None + @staticmethod def trigger_saturated_alarm(): Display.print(SATURATED_MESSAGE) - buzzer.sing_alarm() - while Alarm.reset_button_not_pressed(): - time.sleep(0.05) - Alarm.stop_alarm() + Alarm.blink_led_and_wait_for_reset() @staticmethod def trigger_hole_alarm(): Display.print(HOLE_MESSAGE) + Alarm.blink_led_and_wait_for_reset() + + @staticmethod + def blink_led_and_wait_for_reset(): buzzer.sing_alarm() + Alarm.led.on() while Alarm.reset_button_not_pressed(): time.sleep(0.05) Alarm.stop_alarm() + Alarm.led.off() + Alarm.sleep_alarm() @staticmethod def stop_alarm(): @@ -35,3 +43,17 @@ class Alarm: def reset_button_not_pressed(): was_not_pressed = Alarm.reset_btnn.value() < 1 return was_not_pressed + + @staticmethod + def sleep_alarm(): + interrupt_timer = Timer( + period=int(parameters.ALARM_PAUSE_PERIOD * 1e3), + mode=Timer.ONE_SHOT, + callback=Alarm.__wake_up_alarm + ) + Alarm.interrupt_timer = interrupt_timer + + @staticmethod + def __wake_up_alarm(*args, **kargs): + Alarm.interrupt_timer.deinit() + Alarm.blink_led_and_wait_for_reset() diff --git a/src/parameters.py b/src/parameters.py index 00e7b6d..7ef8196 100644 --- a/src/parameters.py +++ b/src/parameters.py @@ -15,3 +15,6 @@ ANNOYING_BUZZER_ENABLED = False """How many samples of pressure should be used in smoother.""" PRESSURE_SMOOTH_LENGTH = 25 + +"""Period in seconds to wait when alarm reset button is presset until it starts again.""" +ALARM_PAUSE_PERIOD = 5