You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
905 B
23 lines
905 B
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#include <functional>
|
|
|
|
#include "apibasic/basic.hpp"
|
|
|
|
namespace iflytop {
|
|
using namespace std;
|
|
class ZIXYMotor {
|
|
public:
|
|
virtual ~ZIXYMotor() {}
|
|
virtual int32_t xymotor_enable(int32_t enable) = 0;
|
|
virtual int32_t xymotor_move_by(int32_t dx, int32_t dy, int32_t motor_velocity) = 0;
|
|
virtual int32_t xymotor_move_to(int32_t x, int32_t y, int32_t motor_velocity) = 0;
|
|
virtual int32_t xymotor_move_to_zero() = 0;
|
|
virtual int32_t xymotor_read_pos(int32_t *x, int32_t *y) = 0;
|
|
virtual int32_t xymotor_set_pos(int32_t x, int32_t y) = 0;
|
|
|
|
virtual int32_t xymotor_read_inio(int32_t ioindex, int32_t *val) = 0;
|
|
virtual int32_t xymotor_read_inio_index_in_stm32(int32_t ioindex, int32_t *val) = 0;
|
|
};
|
|
} // namespace iflytop
|