mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
19 lines
442 B
C++
19 lines
442 B
C++
|
#include "StopCompressing.h"
|
||
|
#include <cmath>
|
||
|
#include "../../DentRobot.h"
|
||
|
StopCompressing::StopCompressing() : Command("StopCompressing"){
|
||
|
Requires(DentRobot::airCompressor);
|
||
|
}
|
||
|
void StopCompressing::Initialize(){
|
||
|
}
|
||
|
void StopCompressing::Execute(){
|
||
|
DentRobot::airCompressor->StopCreatingCompressedAir();
|
||
|
}
|
||
|
bool StopCompressing::IsFinished(){
|
||
|
return false;
|
||
|
}
|
||
|
void StopCompressing::End(){
|
||
|
}
|
||
|
void StopCompressing::Interrupted(){
|
||
|
}
|