mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
16 lines
339 B
C++
16 lines
339 B
C++
|
|
#include "$classname.h"
|
||
|
|
#include "../Robotmap.h"
|
||
|
|
|
||
|
|
$classname::$classname() : Subsystem("ExampleSubsystem") {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void $classname::InitDefaultCommand() {
|
||
|
|
// Set the default command for a subsystem here.
|
||
|
|
//SetDefaultCommand(new MySpecialCommand());
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
// Put methods for controlling this subsystem
|
||
|
|
// here. Call these from Commands.
|