mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
17 lines
268 B
C++
17 lines
268 B
C++
#ifndef CALIBRATE_H
|
|
#define CALIBRATE_H
|
|
|
|
#include "Commands/Command.h"
|
|
#include "WPILib.h"
|
|
|
|
class Calibrate: public Command{
|
|
public:
|
|
Calibrate();
|
|
void Initialize();
|
|
void Execute();
|
|
bool IsFinished();
|
|
void End();
|
|
void Interrupted();
|
|
};
|
|
#endif
|