CTRE Phoenix 6 C++ 25.3.2
|
Determines where to poll the forward limit switch. More...
#include <ctre/phoenix6/signals/SpnEnums.hpp>
Public Member Functions | |
constexpr | ForwardLimitSourceValue (int value) |
constexpr | ForwardLimitSourceValue () |
constexpr bool | operator== (ForwardLimitSourceValue data) const |
constexpr bool | operator== (int data) const |
constexpr bool | operator!= (ForwardLimitSourceValue data) const |
constexpr bool | operator!= (int data) const |
constexpr bool | operator< (ForwardLimitSourceValue data) const |
constexpr bool | operator< (int data) const |
std::string | ToString () const |
Gets the string representation of this enum. | |
std::string | Serialize () const |
![]() |
Public Attributes | |
int | value |
Static Public Attributes | |
static constexpr int | LimitSwitchPin = 0 |
Use the forward limit switch pin on the limit switch connector. | |
static constexpr int | RemoteTalonFX = 1 |
Use the forward limit switch attached to another Talon FX on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | RemoteCANifier = 2 |
Use the forward limit switch attached to another CANifier on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | RemoteCANcoder = 4 |
Use another CANcoder on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | RemoteCANrange = 6 |
Use another CANrange on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | RemoteCANdiS1 = 7 |
Use another CTR Electronics' CANdi™ on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | RemoteCANdiS2 = 8 |
Use another CTR Electronics' CANdi™ on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). | |
static constexpr int | Disabled = 3 |
Disable the forward limit switch. | |
Friends | |
std::ostream & | operator<< (std::ostream &os, ForwardLimitSourceValue data) |
Determines where to poll the forward limit switch.
This defaults to the forward limit switch pin on the limit switch connector.
Choose RemoteTalonFX to use the forward limit switch attached to another Talon FX on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
Choose RemoteCANifier to use the forward limit switch attached to another CANifier on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
Choose RemoteCANcoder to use another CANcoder on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID). The forward limit will assert when the CANcoder magnet strength changes from BAD (red) to ADEQUATE (orange) or GOOD (green).
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlinevirtual |
Implements ctre::phoenix6::ISerializable.
|
inline |
Gets the string representation of this enum.
|
friend |
|
staticconstexpr |
Disable the forward limit switch.
|
staticconstexpr |
Use the forward limit switch pin on the limit switch connector.
|
staticconstexpr |
Use another CANcoder on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
The forward limit will assert when the CANcoder magnet strength changes from BAD (red) to ADEQUATE (orange) or GOOD (green).
|
staticconstexpr |
Use another CTR Electronics' CANdi™ on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
The forward limit will assert when the CTR Electronics' CANdi™ Signal 1 Input (S1IN) pin matches the configured closed state.
|
staticconstexpr |
Use another CTR Electronics' CANdi™ on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
The forward limit will assert when the CTR Electronics' CANdi™ Signal 2 Input (S2IN) pin matches the configured closed state.
|
staticconstexpr |
Use the forward limit switch attached to another CANifier on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
|
staticconstexpr |
Use another CANrange on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
The forward limit will assert when the CANrange proximity detect is tripped.
|
staticconstexpr |
Use the forward limit switch attached to another Talon FX on the same CAN bus (this also requires setting ForwardLimitRemoteSensorID).
int ctre::phoenix6::signals::ForwardLimitSourceValue::value |