blob: eb8f53947c3201f7a840825c1b1a59c809f7600f [file] [log] [blame]
jerrym1815d882013-02-14 04:21:29 +00001// RobotBuilder Version: 0.0.2
2//
3// This file was generated by RobotBuilder. It contains sections of
4// code that are automatically generated and assigned by robotbuilder.
5// These sections will be updated in the future when you export to
6// C++ from RobotBuilder. Do not put any code or make any change in
7// the blocks indicating autogenerated code or it will be lost on an
8// update. Deleting the comments indicating the section will prevent
9// it from being updated in th future.
10#ifndef DRIVE_TRAIN_H
11#define DRIVE_TRAIN_H
12#include "Commands/Subsystem.h"
13#include "WPILib.h"
14/**
15 *
16 *
17 * @author ExampleAuthor
18 */
19class DriveTrain: public Subsystem {
20private:
21 // It's desirable that everything possible under private except
22 // for methods that implement subsystem capabilities
23public:
24 // BEGIN AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
25 Solenoid* leftShifter;
26 Solenoid* rightShifter;
27 SpeedController* leftMotors1and2;
28 SpeedController* leftMotor3;
29 SpeedController* rightMotors1and2;
30 SpeedController* rightMotor3;
31 RobotDrive* robotDrive;
32 Encoder* quadratureEncoderLeft;
33 Encoder* quadratureEncoderRight;
34 // END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=DECLARATIONS
35 DriveTrain();
36 void InitDefaultCommand();
37};
38#endif