blob: eb8f53947c3201f7a840825c1b1a59c809f7600f [file] [log] [blame]
// RobotBuilder Version: 0.0.2
//
// This file was generated by RobotBuilder. It contains sections of
// code that are automatically generated and assigned by robotbuilder.
// These sections will be updated in the future when you export to
// C++ from RobotBuilder. Do not put any code or make any change in
// the blocks indicating autogenerated code or it will be lost on an
// update. Deleting the comments indicating the section will prevent
// it from being updated in th future.
#ifndef DRIVE_TRAIN_H
#define DRIVE_TRAIN_H
#include "Commands/Subsystem.h"
#include "WPILib.h"
/**
*
*
* @author ExampleAuthor
*/
class DriveTrain: public Subsystem {
private:
// It's desirable that everything possible under private except
// for methods that implement subsystem capabilities
public:
// BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
Solenoid* leftShifter;
Solenoid* rightShifter;
SpeedController* leftMotors1and2;
SpeedController* leftMotor3;
SpeedController* rightMotors1and2;
SpeedController* rightMotor3;
RobotDrive* robotDrive;
Encoder* quadratureEncoderLeft;
Encoder* quadratureEncoderRight;
// END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
DriveTrain();
void InitDefaultCommand();
};
#endif