Hello, I am from the TeraViks #3145. As of right now, we're stuck. We are stuck on programming the compressor to work. Please help us with any information you have on this predicament. Thanks! Sample:
Code:
#include "WPILib.h"
class RobotDemo : public SimpleRobot {
Compressor *compressorPointer;
public:
RobotDemo() {
compressorPointer = new Compressor(4, 2);
compressorPointer->Start();
}
~RobotDemo() {
delete compressorPointer;
};
};