mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Added nicer Java interface for Talon SRX -- throttle mode works.
Change-Id: Ia6f4997b4836826f56a3dd4c8f7f29a0bf62d94c
This commit is contained in:
@@ -65,6 +65,13 @@ public class CANTalonTest extends AbstractComsSetup {
|
||||
// Turn Talon off.
|
||||
talon.Set(0.0);
|
||||
assertTrue(true);
|
||||
|
||||
Timer.delay(2);
|
||||
CANTalon tal = new CANTalon(0);
|
||||
tal.enableControl();
|
||||
tal.set(0.5);
|
||||
Timer.delay(1.0);
|
||||
tal.disable();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user