1
+ # validated: 2024-01-20 DS 92149efa11fa button/CommandGenericHID.java
1
2
from typing import Optional
2
3
3
4
from wpilib .event import EventLoop
9
10
10
11
class CommandGenericHID :
11
12
"""
12
- A version of GenericHID with Trigger factories for command-based.
13
+ A version of :class:`wpilib.interfaces. GenericHID` with :class:`. Trigger` factories for command-based.
13
14
"""
14
15
15
16
def __init__ (self , port : int ):
@@ -31,7 +32,10 @@ def button(self, button: int, loop: Optional[EventLoop] = None) -> Trigger:
31
32
Constructs an event instance around this button's digital signal.
32
33
33
34
:param button: The button index
34
- :param loop: the event loop instance to attache the event to.
35
+ :param loop: the event loop instance to attach the event to, defaults
36
+ to :func:`commands2.CommandScheduler.getDefaultButtonLoop`
37
+
38
+ :returns: A trigger instance attached to the event loop
35
39
"""
36
40
if loop is None :
37
41
loop = CommandScheduler .getInstance ().getDefaultButtonLoop ()
@@ -48,8 +52,9 @@ def pov(
48
52
49
53
:param angle: POV angle in degrees, or -1 for the center / not pressed.
50
54
:param pov: index of the POV to read (starting at 0). Defaults to 0.
51
- :param loop: the event loop instance to attach the event to. Defaults to {@link
52
- CommandScheduler#getDefaultButtonLoop() the default command scheduler button loop}.
55
+ :param loop: the event loop instance to attach the event to, defaults
56
+ to :func:`commands2.CommandScheduler.getDefaultButtonLoop`
57
+
53
58
:returns: a Trigger instance based around this angle of a POV on the HID.
54
59
"""
55
60
if loop is None :
@@ -59,8 +64,7 @@ def pov(
59
64
def povUp (self ) -> Trigger :
60
65
"""
61
66
Constructs a Trigger instance based around the 0 degree angle (up) of the default (index 0) POV
62
- on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default command
63
- scheduler button loop}.
67
+ on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`
64
68
65
69
:returns: a Trigger instance based around the 0 degree angle of a POV on the HID.
66
70
"""
@@ -69,8 +73,7 @@ def povUp(self) -> Trigger:
69
73
def povUpRight (self ) -> Trigger :
70
74
"""
71
75
Constructs a Trigger instance based around the 45 degree angle (right up) of the default (index
72
- 0) POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default
73
- command scheduler button loop}.
76
+ 0) POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
74
77
75
78
:returns: a Trigger instance based around the 45 degree angle of a POV on the HID.
76
79
"""
@@ -79,8 +82,7 @@ def povUpRight(self) -> Trigger:
79
82
def povRight (self ) -> Trigger :
80
83
"""
81
84
Constructs a Trigger instance based around the 90 degree angle (right) of the default (index 0)
82
- POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default command
83
- scheduler button loop}.
85
+ POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
84
86
85
87
:returns: a Trigger instance based around the 90 degree angle of a POV on the HID.
86
88
"""
@@ -89,8 +91,7 @@ def povRight(self) -> Trigger:
89
91
def povDownRight (self ) -> Trigger :
90
92
"""
91
93
Constructs a Trigger instance based around the 135 degree angle (right down) of the default
92
- (index 0) POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the
93
- default command scheduler button loop}.
94
+ (index 0) POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
94
95
95
96
:returns: a Trigger instance based around the 135 degree angle of a POV on the HID.
96
97
"""
@@ -99,8 +100,7 @@ def povDownRight(self) -> Trigger:
99
100
def povDown (self ) -> Trigger :
100
101
"""
101
102
Constructs a Trigger instance based around the 180 degree angle (down) of the default (index 0)
102
- POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default command
103
- scheduler button loop}.
103
+ POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
104
104
105
105
:returns: a Trigger instance based around the 180 degree angle of a POV on the HID.
106
106
"""
@@ -109,8 +109,7 @@ def povDown(self) -> Trigger:
109
109
def povDownLeft (self ) -> Trigger :
110
110
"""
111
111
Constructs a Trigger instance based around the 225 degree angle (down left) of the default
112
- (index 0) POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the
113
- default command scheduler button loop}.
112
+ (index 0) POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
114
113
115
114
:returns: a Trigger instance based around the 225 degree angle of a POV on the HID.
116
115
"""
@@ -119,8 +118,7 @@ def povDownLeft(self) -> Trigger:
119
118
def povLeft (self ) -> Trigger :
120
119
"""
121
120
Constructs a Trigger instance based around the 270 degree angle (left) of the default (index 0)
122
- POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default command
123
- scheduler button loop}.
121
+ POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
124
122
125
123
:returns: a Trigger instance based around the 270 degree angle of a POV on the HID.
126
124
"""
@@ -129,8 +127,7 @@ def povLeft(self) -> Trigger:
129
127
def povUpLeft (self ) -> Trigger :
130
128
"""
131
129
Constructs a Trigger instance based around the 315 degree angle (left up) of the default (index
132
- 0) POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the default
133
- command scheduler button loop}.
130
+ 0) POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
134
131
135
132
:returns: a Trigger instance based around the 315 degree angle of a POV on the HID.
136
133
"""
@@ -139,8 +136,7 @@ def povUpLeft(self) -> Trigger:
139
136
def povCenter (self ) -> Trigger :
140
137
"""
141
138
Constructs a Trigger instance based around the center (not pressed) position of the default
142
- (index 0) POV on the HID, attached to {@link CommandScheduler#getDefaultButtonLoop() the
143
- default command scheduler button loop}.
139
+ (index 0) POV on the HID, attached to :func:`commands2.CommandScheduler.getDefaultButtonLoop`.
144
140
145
141
:returns: a Trigger instance based around the center position of a POV on the HID.
146
142
"""
@@ -150,14 +146,15 @@ def axisLessThan(
150
146
self , axis : int , threshold : float , loop : Optional [EventLoop ] = None
151
147
) -> Trigger :
152
148
"""
153
- Constructs a Trigger instance that is true when the axis value is less than {@code threshold} ,
149
+ Constructs a Trigger instance that is true when the axis value is less than `` threshold`` ,
154
150
attached to the given loop.
155
151
156
152
:param axis: The axis to read, starting at 0
157
153
:param threshold: The value below which this trigger should return true.
158
154
:param loop: the event loop instance to attach the trigger to
155
+
159
156
:returns: a Trigger instance that is true when the axis value is less than the provided
160
- threshold.
157
+ threshold.
161
158
"""
162
159
if loop is None :
163
160
loop = CommandScheduler .getInstance ().getDefaultButtonLoop ()
@@ -167,14 +164,15 @@ def axisGreaterThan(
167
164
self , axis : int , threshold : float , loop : Optional [EventLoop ] = None
168
165
) -> Trigger :
169
166
"""
170
- Constructs a Trigger instance that is true when the axis value is greater than {@code
171
- threshold} , attached to the given loop.
167
+ Constructs a Trigger instance that is true when the axis value is greater than
168
+ `` threshold`` , attached to the given loop.
172
169
173
170
:param axis: The axis to read, starting at 0
174
171
:param threshold: The value above which this trigger should return true.
175
172
:param loop: the event loop instance to attach the trigger to.
173
+
176
174
:returns: a Trigger instance that is true when the axis value is greater than the provided
177
- threshold.
175
+ threshold.
178
176
"""
179
177
if loop is None :
180
178
loop = CommandScheduler .getInstance ().getDefaultButtonLoop ()
0 commit comments