@@ -140,9 +140,9 @@ with the press of a button. It is intended for use with subsystems that contain
140140Subsystems that contain motors to be health checked are annotated with `@HealthCheck ` and optionally, annotations that
141141define the health check in more detail. There are three possible ways to configure a talon for testing:
142142
143- * `@Timed ` - runs the motor at the specified output for the specified amount of time.
144- * `@Position ` - runs the motor at the specified output until the specified amount of encoder ticks have occurred.
145- * `@Follower ` - the motor is configured to follow another Talon and therefor is not commanded, only measured.
143+ - `@Timed ` - runs the motor at the specified output for the specified amount of time.
144+ - `@Position ` - runs the motor at the specified output until the specified amount of encoder ticks have occurred.
145+ - `@Follower ` - the motor is configured to follow another Talon and therefor is not commanded, only measured.
146146
147147This subsystem has some examples of Talons being tested in various ways.
148148
@@ -178,15 +178,18 @@ public class ExampleSubsystem extends SubsystemBase {
178178
179179 @BeforeHealthCheck
180180 private boolean beforeHealthCheck () {
181- // perform any set-up such as positioning subsystems on the robot to allow clear running, or override Talon configurations
182- // temporarily while testing. Called periodically by the robot loop while running, return true when finished.
181+ // perform any set-up such as positioning subsystems on the robot to
182+ // allow clear running, or override Talon configurations temporarily
183+ // while testing. Called periodically by the robot loop while running,
184+ // return true when finished.
183185 return true ;
184186 }
185187
186188 @AfterHealthCheck
187189 private boolean afterHealthCheck () {
188- // perform any tear-down such as position subsystems, or resetting Talon configurations.
189- // Called periodically by the robot loop while running, return true when finished.
190+ // perform any tear-down such as position subsystems, or resetting
191+ // Talon configurations. Called periodically by the robot loop while
192+ // running, return true when finished.
190193 return true ;
191194 }
192195
@@ -241,19 +244,6 @@ df. head(3)
241244```
242245
243246< div>
244- < style scoped>
245- .dataframe tbody tr th: only- of- type {
246- vertical- align: middle;
247- }
248-
249- .dataframe tbody tr th {
250- vertical- align: top;
251- }
252-
253- .dataframe thead th {
254- text- align: right;
255- }
256- < / style>
257247< table border= " 1" class= " dataframe" >
258248 < thead>
259249 < tr style= " text-align: right;" >
@@ -333,5 +323,3 @@ df. head(3)
333323 < / tbody>
334324< / table>
335325< / div>
336-
337-
0 commit comments