mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Also added some references/smart pointers to a couple places that seemed convenient to the user. I haven't updated the constructors for RobotDrive() related examples, pending the results of gerrit change https://usfirst.collab.net/gerrit/#/c/960/ A few things that we are noticing: --It might be nice if ReturnPIDInput() didn't have to be const; when people try to override it, they have to remember to put the const in and if they don't, then the compiler error isn't the most obvious (especially since this is a change). This would also apply to PIDGet() in the PIDSource interface. --SendableChooser still takes raw pointers. This could lead to an issue I had to debug briefly where you accidentally call GetSelected() on autoChooser and put the resulting raw pointer into a unique_ptr, which destroys the pointer when it goes out of scope. Specifically, I was testing the PacGoat example and I ended up with a situation where if auto mode was run once, it was fine, but if it was run twice, the selected command would have been destroyed by the unique_ptr. I believe that this just requires updating SendableChosser to take shared_ptr. --When the samples are compiled with -pedantic, it points out that START_ROBOT_CLASS macro expansion results in a redundant semicolon. Change-Id: Ib4c025a61263d0d2780d4253faa31713e15333a5
39 lines
978 B
C++
39 lines
978 B
C++
#include "WPILib.h"
|
|
|
|
/**
|
|
* This sample shows how to use the new CANTalon to just run a motor in a basic
|
|
* throttle mode, in the same manner as you might control a traditional PWM
|
|
* controlled motor.
|
|
*
|
|
*/
|
|
class Robot : public SampleRobot {
|
|
CANTalon m_motor;
|
|
|
|
Joystick m_stick;
|
|
|
|
// update every 0.01 seconds/10 milliseconds.
|
|
// The talon only receives control packets every 10ms.
|
|
double kUpdatePeriod = 0.010;
|
|
|
|
public:
|
|
Robot()
|
|
: m_motor(1), // Initialize the Talon as device 1. Use the roboRIO web
|
|
// interface to change the device number on the talons.
|
|
m_stick(0)
|
|
{}
|
|
|
|
/**
|
|
* Runs the motor from the output of a Joystick.
|
|
*/
|
|
void OperatorControl() {
|
|
while (IsOperatorControl() && IsEnabled()) {
|
|
// Takes a number from -1.0 (full reverse) to +1.0 (full forwards).
|
|
m_motor.Set(m_stick.GetY());
|
|
|
|
Wait(kUpdatePeriod); // Wait a bit so that the loop doesn't lock everything up.
|
|
}
|
|
}
|
|
};
|
|
|
|
START_ROBOT_CLASS(Robot)
|