2023-Robot
Robot code for 2023 FRC season by Argos, FRC team #1756
|
State of an individual button. More...
#include <xbox_controller.h>
Public Attributes | |
bool | pressed = false |
Transitioned from inactive to active. | |
bool | released = false |
Transitioned from active to inactive. | |
bool | debouncePress = false |
Transitioned from inactive to active after debounce applied. | |
bool | debounceRelease = false |
Transitioned from active to inactive after debounce applied. | |
bool | rawActive = false |
Raw button status. | |
bool | debounceActive = false |
Button status after debounce applied. | |
State of an individual button.
bool argos_lib::XboxController::UpdateStatus::debounceActive = false |
Button status after debounce applied.
bool argos_lib::XboxController::UpdateStatus::debouncePress = false |
Transitioned from inactive to active after debounce applied.
bool argos_lib::XboxController::UpdateStatus::debounceRelease = false |
Transitioned from active to inactive after debounce applied.
bool argos_lib::XboxController::UpdateStatus::pressed = false |
Transitioned from inactive to active.
bool argos_lib::XboxController::UpdateStatus::rawActive = false |
Raw button status.
bool argos_lib::XboxController::UpdateStatus::released = false |
Transitioned from active to inactive.