|
@ -694,3 +694,9 @@ int32_t XYRobotCtrlModule::xymotor_enable(int32_t varenable) { |
|
|
int32_t XYRobotCtrlModule::xymotor_move_by(int32_t dx, int32_t dy, int32_t motor_velocity) { return move_by(dx, dy, motor_velocity, nullptr); } |
|
|
int32_t XYRobotCtrlModule::xymotor_move_by(int32_t dx, int32_t dy, int32_t motor_velocity) { return move_by(dx, dy, motor_velocity, nullptr); } |
|
|
int32_t XYRobotCtrlModule::xymotor_move_to(int32_t x, int32_t y, int32_t motor_velocity) { return move_to(x, y, motor_velocity, nullptr); } |
|
|
int32_t XYRobotCtrlModule::xymotor_move_to(int32_t x, int32_t y, int32_t motor_velocity) { return move_to(x, y, motor_velocity, nullptr); } |
|
|
int32_t XYRobotCtrlModule::xymotor_move_to_zero() { return move_to_zero(nullptr); } |
|
|
int32_t XYRobotCtrlModule::xymotor_move_to_zero() { return move_to_zero(nullptr); } |
|
|
|
|
|
|
|
|
|
|
|
int32_t XYRobotCtrlModule::xymotor_move_to_zero_and_calculated_shift() { return move_to_zero_with_calibrate(0, 0, nullptr); } |
|
|
|
|
|
int32_t XYRobotCtrlModule::xymotor_read_pos(int32_t* x, int32_t* y) { |
|
|
|
|
|
getnowpos(*x, *y); |
|
|
|
|
|
return 0; |
|
|
|
|
|
} |