remove all PS3 things and begin with ControllPad
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
*/
|
||||
#include "manualControl.h"
|
||||
|
||||
ManualControl::ManualControl(MoveControl *moveControl, Ps3Controller *gamepad) {
|
||||
ManualControl::ManualControl(MoveControl *moveControl, const ControllPadInput *input) {
|
||||
this->moveControl = moveControl;
|
||||
this->gamepad = gamepad;
|
||||
this->input = input;
|
||||
this->moveControl->setDrivingStatus(DrivingStatus::drive);
|
||||
}
|
||||
|
||||
@@ -31,8 +31,8 @@ void ManualControl::loop() {
|
||||
}
|
||||
|
||||
void ManualControl::runManualControl() {
|
||||
int8_t x = this->gamepad->data.analog.stick.lx;
|
||||
int8_t y = this->gamepad->data.analog.stick.ly;
|
||||
int8_t x = this->input->x;
|
||||
int8_t y = this->input->y;
|
||||
|
||||
double value_per_step = this->max_speed * 2 / 256;
|
||||
this->moveControl->setSpeed((y * -1) * value_per_step);
|
||||
|
||||
Reference in New Issue
Block a user