diff options
author | Mark Powers <mark@marks.kitchen> | 2021-07-12 03:15:06 +0100 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2021-07-12 03:15:06 +0100 |
commit | c72abd79e4dbfd9b533d75bb00fea1ded9975d95 (patch) | |
tree | 6056796286af31ea09d41faf9d6b57308e450ec4 /dial.py | |
parent | 1edb32ec29ca3c1bf4d1a53215ecb2544aa04a6e (diff) |
Add config, weather event, and demo timer event demoing hang up event
Diffstat (limited to 'dial.py')
-rw-r--r-- | dial.py | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -2,7 +2,6 @@ from datetime import datetime, timedelta import time import RPi.GPIO as GPIO import threading - import events BUTTON_GPIO = 25 @@ -10,10 +9,9 @@ REST_TIME = 0.3 # seconds DIAL_RESET_TIME = 5 # seconds class DialThread(threading.Thread): - def __init__(self, queue, pressed): + def __init__(self, queue): threading.Thread.__init__(self, args=(), kwargs=None) self.queue = queue - self.pressed = pressed self.daemon = True GPIO.setmode(GPIO.BCM) @@ -44,20 +42,23 @@ class DialThread(threading.Thread): time.sleep(0.01) def dial_over(self, rest_start): + # After REST_TIME seconds, assume the rotary dial stopped spinning return datetime.now() - rest_start > timedelta(seconds=REST_TIME) class DialManager: - def __init__(self): + def __init__(self, phone_held, phone_hung_up): self.sequence = [] self.update = datetime.now() - self._load_sequences() + self._load_sequences(phone_held, phone_hung_up) - def _load_sequences(self): + def _load_sequences(self, phone_held, phone_hung_up): self.sequences = { - 0: events.OperatorEvent(self), - 4: {1: {1: events.DirectoryEvent(self)}}, - 7: events.FortuneEvent(self), + 0: events.OperatorEvent(self, phone_held, phone_hung_up), + 1: events.WeatherEvent(self, phone_held, phone_hung_up), + 2: events.TimerEvent(self, phone_held, phone_hung_up), + 4: {1: {1: events.DirectoryEvent(self, phone_held, phone_hung_up)}}, + 7: events.FortuneEvent(self, phone_held, phone_hung_up), } print(self.sequences) |