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