-
Notifications
You must be signed in to change notification settings - Fork 9
/
buttons.py
82 lines (67 loc) · 2.76 KB
/
buttons.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
from machine import Pin
import time
from constants import SCHEDULER_BUTTON_PRESS
from util import singleton
STATE_UNPRESSED = 1
STATE_PRESSED = 2
PINS = {
1: 2,
2: 17,
3: 15,
}
@singleton
class Buttons:
class Button:
class Callback:
def __init__(self, callback, min=0, max=-1):
self.callback = callback
self.min = min
self.max = max
def __init__(self, number):
self.pin = Pin(PINS[number], Pin.IN, Pin.PULL_UP)
self.number = number
self.state = STATE_UNPRESSED
self.callbacks = []
self.pressed: int
def add_callback(self, callback, min=0, max=-1):
callback_obj = self.Callback(callback, min, max)
self.callbacks.append(callback_obj)
return callback_obj
def remove_callback(self, callback, min=0, max=-1):
for callback in self.callbacks:
if callback.callback == callback and callback.min == min and callback.max == max:
self.callbacks.remove(callback)
break
def clear_callbacks(self):
self.callbacks = []
def __init__(self, scheduler):
self.buttons = [
self.Button(number) for number in (1, 2, 3)
]
scheduler.schedule(SCHEDULER_BUTTON_PRESS, 1, self.millis_callback)
def add_callback(self, number, callback, min=0, max=-1):
self.buttons[number - 1].add_callback(callback, min, max)
def remove_callback(self, number, callback, min=0, max=-1):
self.buttons[number - 1].remove_callback(callback, min, max)
def clear_callbacks(self, number):
self.buttons[number - 1].clear_callbacks()
def get_button(self, number):
return self.buttons[number - 1]
async def millis_callback(self):
for button in self.buttons:
if len(button.callbacks) > 0:
if button.state == STATE_UNPRESSED and button.pin.value() == 0:
button.state = STATE_PRESSED
button.pressed = time.ticks_ms()
elif button.state == STATE_PRESSED and button.pin.value() == 1:
button.state = STATE_UNPRESSED
tm = time.ticks_ms()
press_duration = time.ticks_diff(tm, button.pressed)
print("Button %d pressed for %dms" %
(button.number, press_duration))
for callback in button.callbacks:
if callback.min < press_duration and (
callback.max == -1 or press_duration <= callback.max):
await callback.callback()
break
button.pressed = int()