mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
22 lines
303 B
C++
22 lines
303 B
C++
|
|
#ifndef $classname_H
|
|
#define $classname_H
|
|
|
|
#include "Commands/PIDSubsystem.h"
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author ExampleAuthor
|
|
*/
|
|
class $classname: public PIDSubsystem {
|
|
public:
|
|
$classname();
|
|
double ReturnPIDInput();
|
|
void UsePIDOutput(double output);
|
|
void InitDefaultCommand();
|
|
};
|
|
|
|
#endif
|