WPILib 2012
WPILibRoboticsLibraryforFRC
|
#include <Compressor.h>
Public Member Functions | |
Compressor (UINT32 pressureSwitchChannel, UINT32 compressorRelayChannel) | |
Compressor (UINT8 pressureSwitchModuleNumber, UINT32 pressureSwitchChannel, UINT8 compresssorRelayModuleNumber, UINT32 compressorRelayChannel) | |
~Compressor () | |
void | Start () |
void | Stop () |
bool | Enabled () |
UINT32 | GetPressureSwitchValue () |
void | SetRelayValue (Relay::Value relayValue) |
Compressor object. The Compressor object is designed to handle the operation of the compressor, pressure sensor and relay for a FIRST robot pneumatics system. The Compressor object starts a task which runs in the backround and periodically polls the pressure sensor and operates the relay that controls the compressor.
Compressor::Compressor | ( | UINT32 | pressureSwitchChannel, |
UINT32 | compressorRelayChannel | ||
) |
Compressor constructor. Given a relay channel and pressure switch channel (both in the default digital module), initialize the Compressor object.
You MUST start the compressor by calling the Start() method.
pressureSwitchChannel | The GPIO channel that the pressure switch is attached to. |
compressorRelayChannel | The relay channel that the compressor relay is attached to. |
Compressor::Compressor | ( | UINT8 | pressureSwitchModuleNumber, |
UINT32 | pressureSwitchChannel, | ||
UINT8 | compresssorRelayModuleNumber, | ||
UINT32 | compressorRelayChannel | ||
) |
Compressor constructor. Given a fully specified relay channel and pressure switch channel, initialize the Compressor object.
You MUST start the compressor by calling the Start() method.
pressureSwitchModuleNumber | The digital module that the pressure switch is attached to. |
pressureSwitchChannel | The GPIO channel that the pressure switch is attached to. |
compresssorRelayModuleNumber | The digital module that the compressor relay is attached to. |
compressorRelayChannel | The relay channel that the compressor relay is attached to. |
Compressor::~Compressor | ( | ) |
Delete the Compressor object. Delete the allocated resources for the compressor and kill the compressor task that is polling the pressure switch.
bool Compressor::Enabled | ( | ) |
Get the state of the enabled flag. Return the state of the enabled flag for the compressor and pressure switch combination.
UINT32 Compressor::GetPressureSwitchValue | ( | ) |
Get the pressure switch value. Read the pressure switch digital input.
void Compressor::SetRelayValue | ( | Relay::Value | relayValue | ) |
Operate the relay for the compressor. Change the value of the relay output that is connected to the compressor motor. This is only intended to be called by the internal polling thread.
void Compressor::Start | ( | ) |
Start the compressor. This method will allow the polling loop to actually operate the compressor. The is stopped by default and won't operate until starting it.
void Compressor::Stop | ( | ) |
Stop the compressor. This method will stop the compressor from turning on.