XboxControllerSim
- class wpilib.simulation.XboxControllerSim(*args, **kwargs)
Bases:
GenericHIDSimClass to control a simulated Xbox controller.
Overloaded function.
__init__(self: wpilib.simulation._simulation.XboxControllerSim, joystick: wpilib._wpilib.XboxController) -> None
Constructs from a XboxController object.
- Parameters:
joystick – controller to simulate
__init__(self: wpilib.simulation._simulation.XboxControllerSim, port: typing.SupportsInt) -> None
Constructs from a joystick port number.
- Parameters:
port – port number
- setAButton(value: bool) None
Change the value of the A button on the controller.
- Parameters:
value – the new value
- setBButton(value: bool) None
Change the value of the B button on the controller.
- Parameters:
value – the new value
- setBackButton(value: bool) None
Change the value of the back button on the controller.
- Parameters:
value – the new value
- setLeftBumperButton(value: bool) None
Change the value of the left bumper button on the controller.
- Parameters:
value – the new value
- setLeftStickButton(value: bool) None
Change the value of the left stick button on the controller.
- Parameters:
value – the new value
- setLeftTriggerAxis(value: SupportsFloat) None
Change the value of the left trigger axis on the controller.
- Parameters:
value – the new value
- setLeftX(value: SupportsFloat) None
Change the left X value of the controller’s joystick.
- Parameters:
value – the new value
- setLeftY(value: SupportsFloat) None
Change the left Y value of the controller’s joystick.
- Parameters:
value – the new value
- setRightBumperButton(value: bool) None
Change the value of the right bumper button on the controller.
- Parameters:
value – the new value
- setRightStickButton(value: bool) None
Change the value of the right stick button on the controller.
- Parameters:
value – the new value
- setRightTriggerAxis(value: SupportsFloat) None
Change the value of the right trigger axis on the controller.
- Parameters:
value – the new value
- setRightX(value: SupportsFloat) None
Change the right X value of the controller’s joystick.
- Parameters:
value – the new value
- setRightY(value: SupportsFloat) None
Change the right Y value of the controller’s joystick.
- Parameters:
value – the new value
- setStartButton(value: bool) None
Change the value of the start button on the controller.
- Parameters:
value – the new value
- setXButton(value: bool) None
Change the value of the X button on the controller.
- Parameters:
value – the new value
- setYButton(value: bool) None
Change the value of the Y button on the controller.
- Parameters:
value – the new value