Class Compressor
- All Implemented Interfaces:
Sendable,AutoCloseable
public class Compressor extends Object implements Sendable, AutoCloseable
Solenoid object is created. For most cases,
a Compressor object does not need to be instantiated or used in a robot program. This class is
only required in cases where the robot program needs a more detailed status of the compressor or
to enable/disable closed loop control.
Note: you cannot operate the compressor directly from this class as doing so would circumvent the safety provided by using the pressure switch and closed loop control. You can only turn off closed loop control, thereby stopping the compressor from operating.
-
Constructor Summary
Constructors Constructor Description Compressor(int module, PneumaticsModuleType moduleType)Constructs a compressor for a specified module and type.Compressor(PneumaticsModuleType moduleType)Constructs a compressor for a default module and specified type. -
Method Summary
Modifier and Type Method Description voidclose()voiddisable()Disable the compressor.voidenableAnalog(double minPressure, double maxPressure)Enable compressor closed loop control using analog input.booleanenabled()Get the status of the compressor.voidenableDigital()Enable compressor closed loop control using digital input.voidenableHybrid(double minPressure, double maxPressure)Enable compressor closed loop control using hybrid input.doublegetAnalogVoltage()Query the analog input voltage (on channel 0) (if supported).CompressorConfigTypegetConfigType()Gets the current operating mode of the Compressor.doublegetCurrent()Get the current being used by the compressor.doublegetPressure()Query the analog sensor pressure (on channel 0) (if supported).booleangetPressureSwitchValue()Get the pressure switch value.voidinitSendable(SendableBuilder builder)Initializes thisSendableobject.voidstart()Deprecated, for removal: This API element is subject to removal in a future version.Use enableDigital() instead.voidstop()Deprecated, for removal: This API element is subject to removal in a future version.Use disable() instead.
-
Constructor Details
-
Compressor
Constructs a compressor for a specified module and type.- Parameters:
module- The module ID to use.moduleType- The module type to use.
-
Compressor
Constructs a compressor for a default module and specified type.- Parameters:
moduleType- The module type to use.
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable
-
start
Deprecated, for removal: This API element is subject to removal in a future version.Use enableDigital() instead.Start the compressor running in closed loop control mode.Use the method in cases where you would like to manually stop and start the compressor for applications such as conserving battery or making sure that the compressor motor doesn't start during critical operations.
-
stop
Deprecated, for removal: This API element is subject to removal in a future version.Use disable() instead.Stop the compressor from running in closed loop control mode.Use the method in cases where you would like to manually stop and start the compressor for applications such as conserving battery or making sure that the compressor motor doesn't start during critical operations.
-
enabled
Get the status of the compressor.- Returns:
- true if the compressor is on
-
getPressureSwitchValue
Get the pressure switch value.- Returns:
- true if the pressure is low
-
getCurrent
Get the current being used by the compressor.- Returns:
- current consumed by the compressor in amps
-
getAnalogVoltage
Query the analog input voltage (on channel 0) (if supported).- Returns:
- The analog input voltage, in volts
-
getPressure
Query the analog sensor pressure (on channel 0) (if supported). Note this is only for use with the REV Analog Pressure Sensor.- Returns:
- The analog sensor pressure, in PSI
-
disable
Disable the compressor. -
enableDigital
Enable compressor closed loop control using digital input. -
enableAnalog
Enable compressor closed loop control using analog input. Note this is only for use with the REV Analog Pressure Sensor.On CTRE PCM, this will enable digital control.
- Parameters:
minPressure- The minimum pressure in PSI to enable compressormaxPressure- The maximum pressure in PSI to disable compressor
-
enableHybrid
Enable compressor closed loop control using hybrid input. Note this is only for use with the REV Analog Pressure Sensor.On CTRE PCM, this will enable digital control.
- Parameters:
minPressure- The minimum pressure in PSI to enable compressormaxPressure- The maximum pressure in PSI to disable compressor
-
getConfigType
Gets the current operating mode of the Compressor.- Returns:
- true if compressor is operating on closed-loop mode
-
initSendable
Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Parameters:
builder- sendable builder
-