1234567891011121314151617181920212223242526272829 |
- #include "control_module.h"
-
- ControlModule::ControlModule(){
- }
-
- ControlModule::ControlModule(float forwardSpeed, float rotateSpeed, float moveSideSpeed)
- {
- this->forwardSpeed = forwardSpeed;
- this->rotateSpeed = rotateSpeed;
- this->moveSideSpeed = moveSideSpeed;
- }
-
- ControlModule::~ControlModule()
- {
- }
-
- void ControlModule::moveForward(){
- for(int i = 0; motors; i++){
-
- }
- };
-
- void ControlModule::moveSide(){
-
- }
-
- void ControlModule::rotate(){
-
- }
|