forked from robotpy/robotpy-commands-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request robotpy#33 from lospugs/pidcommand
Adds PIDCommand to the Commands2 framework. robotpy/robotpy-commands-…
- Loading branch information
Showing
2 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
from typing import TYPE_CHECKING | ||
|
||
from util import * # type: ignore | ||
import wpimath.controller as controller | ||
import commands2 | ||
|
||
if TYPE_CHECKING: | ||
from .util import * | ||
|
||
import pytest | ||
|
||
|
||
def test_pidCommandSupplier(scheduler: commands2.CommandScheduler): | ||
with ManualSimTime() as sim: | ||
output_float = OOFloat(0.0) | ||
measurement_source = OOFloat(5.0) | ||
setpoint_source = OOFloat(2.0) | ||
pid_controller = controller.PIDController(0.1, 0.01, 0.001) | ||
system = commands2.Subsystem() | ||
pidCommand = commands2.PIDCommand( | ||
pid_controller, | ||
measurement_source, | ||
setpoint_source, | ||
output_float.set, | ||
system, | ||
) | ||
start_spying_on(pidCommand) | ||
scheduler.schedule(pidCommand) | ||
scheduler.run() | ||
sim.step(1) | ||
scheduler.run() | ||
|
||
assert scheduler.isScheduled(pidCommand) | ||
|
||
assert not pidCommand._controller.atSetpoint() | ||
|
||
# Tell the pid command we're at our setpoint through the controller | ||
measurement_source.set(setpoint_source()) | ||
|
||
sim.step(2) | ||
|
||
scheduler.run() | ||
|
||
# Should be measuring error of 0 now | ||
assert pidCommand._controller.atSetpoint() | ||
|
||
|
||
def test_pidCommandScalar(scheduler: commands2.CommandScheduler): | ||
with ManualSimTime() as sim: | ||
output_float = OOFloat(0.0) | ||
measurement_source = OOFloat(5.0) | ||
setpoint_source = 2.0 | ||
pid_controller = controller.PIDController(0.1, 0.01, 0.001) | ||
system = commands2.Subsystem() | ||
pidCommand = commands2.PIDCommand( | ||
pid_controller, | ||
measurement_source, | ||
setpoint_source, | ||
output_float.set, | ||
system, | ||
) | ||
start_spying_on(pidCommand) | ||
scheduler.schedule(pidCommand) | ||
scheduler.run() | ||
sim.step(1) | ||
scheduler.run() | ||
|
||
assert scheduler.isScheduled(pidCommand) | ||
|
||
assert not pidCommand._controller.atSetpoint() | ||
|
||
# Tell the pid command we're at our setpoint through the controller | ||
measurement_source.set(setpoint_source) | ||
|
||
sim.step(2) | ||
|
||
scheduler.run() | ||
|
||
# Should be measuring error of 0 now | ||
assert pidCommand._controller.atSetpoint() | ||
|
||
|
||
def test_withTimeout(scheduler: commands2.CommandScheduler): | ||
with ManualSimTime() as sim: | ||
output_float = OOFloat(0.0) | ||
measurement_source = OOFloat(5.0) | ||
setpoint_source = OOFloat(2.0) | ||
pid_controller = controller.PIDController(0.1, 0.01, 0.001) | ||
system = commands2.Subsystem() | ||
command1 = commands2.PIDCommand( | ||
pid_controller, | ||
measurement_source, | ||
setpoint_source, | ||
output_float.set, | ||
system, | ||
) | ||
start_spying_on(command1) | ||
|
||
timeout = command1.withTimeout(2) | ||
|
||
scheduler.schedule(timeout) | ||
scheduler.run() | ||
|
||
verify(command1).initialize() | ||
verify(command1).execute() | ||
assert not scheduler.isScheduled(command1) | ||
assert scheduler.isScheduled(timeout) | ||
|
||
sim.step(3) | ||
scheduler.run() | ||
|
||
verify(command1).end(True) | ||
verify(command1, never()).end(False) | ||
assert not scheduler.isScheduled(timeout) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters