Thread: Compressor
View Single Post
  #1   Spotlight this post!  
Unread 15-01-2013, 18:14
NegaNexus NegaNexus is offline
Registered User
AKA: Thys Ballard
FRC #2130 (Alpha+)
Team Role: Programmer
 
Join Date: Oct 2012
Rookie Year: 2012
Location: Coeur d'Alene, Idaho
Posts: 16
NegaNexus is an unknown quantity at this point
Compressor

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;
			};
};
Reply With Quote