External Controllers
Last updated
Last updated
Controllers such as Xbox or Playstation controllers are big parts of FRC robotics and robotics in general. Controllers are important in FRC because competitions always have a player-controlled section, during this section, you switch to teleoperated mode and a player controls the robot most likely through a controller. Other than just specifically FRC robotics, controllers are useful due to their various forms of inputs allowing users to control robots with ease. To get access to these controllers' various benefits, we will use the WPILIB XboxController
object.
XboxController
ObjectSimilar to Spark motors objects refer to motors on the Romi. The XboxController
object refers to the controller that is connected to the computer.
Parameters:
Integer(int) -> Its ID
A controller's ID (called port in VS code) allows the code to differentiate connected controllers from one another just like the IDs of Spark
motors and Encoders
. Here is an example of an XboxController
object:
There are 2 ways to connect an external controller to your computer to use in our project.
Using Bluetooth
Using a cord
After your controller is connected, you have to make sure the program can detect it in the simulation. To do this, simulate the code to open up the simulation interface. Then, if the controller is properly connected, a device should pop up in the Connected Devices tab on the left side of the window. drag that controller to the Controller Readings tab to the left of the Connected Devices tab. This should make one of the unassigned spots on the Connected Devices change to the controller's name and show various readings below it such as joystick values.
XboxController
ObjectThere are a multitude of methods in the XboxController
class, some more important than others. Here is a link that has the list of all the methods in the class:
For the Romi though, you will only need to know 4 basic methods:
Now that you know about the XboxController
class, create a new XboxController
object in the RomiDrivetrain
class as well as a new method called goWithController
.
Conditions:
Here is the answer code (the XboxController
object is named controller). I also highly suggest testing your code by adding it to the Robot class in the teleopPeriodic()
method.
ArcadeStyleeMoveRobot()
MethodMake another method in the RomiDrivetrain class called goWithController1()
. This method will act the same as the goWithController()
method, but instead of using 2 joysticks, only use 1 joystick.