-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpovbutton.py
32 lines (26 loc) · 1.17 KB
/
povbutton.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
from wpilib import Joystick
from .button import Button
class POVButton(Button):
"""
A class used to bind command scheduling to joystick POV presses.
Can be composed with other buttons with the operators in Trigger.
@see Trigger
"""
def __init__(self, joystick: Joystick, angle: int, povNumber: int = 0) -> None:
"""
Creates a POVButton that commands can be bound to.
:param joystick: The joystick on which the button is located.
:param angle: The angle of the POV corresponding to a button press.
:param povNumber: The number of the POV on the joystick.
"""
if (
not isinstance(joystick, Joystick)
or not isinstance(angle, int)
or not isinstance(povNumber, int)
):
raise TypeError(
"POVButton.__init__(): incompatible constructor arguments. The following argument types are supported:\n"
"\t1. commands2.button.POVButton(joystick: Joystick, angle: int, povNumber: int)\n"
f"Invoked with: {joystick}, {angle}, {povNumber}"
)
super().__init__(lambda: joystick.getPOV(povNumber) == angle)