-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_damiao.cpp
64 lines (55 loc) · 2.45 KB
/
test_damiao.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "damiao.h"
#include "unistd.h"
#include <cmath>
damiao::Motor M1(damiao::DMH3510,0x01, 0x00);
damiao::Motor M2(damiao::DM4310,0x02, 0x00);
std::shared_ptr<SerialPort> serial;
damiao::Motor_Control dm(serial);
int main(int argc, char *argv[])
{
serial = std::make_shared<SerialPort>("/dev/ttyACM0", B921600);
dm = damiao::Motor_Control(serial);
dm.addMotor(&M1);
// dm.addMotor(&M2);
dm.disable(M1);
// dm.disable(M2);
sleep(1);
if(dm.switchControlMode(M1,damiao::VEL_MODE))
std::cout << "Switch to VEL_MODE Success" << std::endl;
// if(dm.switchControlMode(M1, damiao::MIT_MODE))
// std::cout << "Switch to MIT Success" << std::endl;
// if(dm.switchControlMode(M2, damiao::POS_VEL_MODE))
// std::cout << "Switch to POS_VEL_MODE Success" << std::endl;
// std::cout<<"motor1 PMAX:"<<dm.read_motor_param(M1, damiao::PMAX)<<std::endl;
// std::cout<<"motor2 UV_Value:"<<dm.read_motor_param(M1, damiao::UV_Value)<<std::endl;
// std::cout<<"motor2 PMAX:"<<dm.read_motor_param(M2, damiao::PMAX)<<std::endl;
// std::cout<<"motor2 UV_Value:"<<dm.read_motor_param(M2, damiao::UV_Value)<<std::endl;
// if(dm.change_motor_param(M1, damiao::UV_Value, 12.6f))
// std::cout << "Change UV_Value Success" << std::endl;
// std::cout<<"motor1 UV_Value:"<<dm.read_motor_param(M1, damiao::UV_Value)<<std::endl;
// if(dm.change_motor_param(M2, damiao::UV_Value, 12.6f))
// std::cout << "Change UV_Value Success" << std::endl;
// std::cout<<"motor2 UV_Value:"<<dm.read_motor_param(M2, damiao::UV_Value)<<std::endl;
// if(dm.change_motor_param(M1,damiao::CTRL_MODE,1))
// std::cout << "Change CTRL_MODE Success" << std::endl;
// std::cout<<"motor1 CTRL_MODE:"<<dm.read_motor_param(M1, damiao::CTRL_MODE)<<std::endl;
dm.save_motor_param(M1);
// dm.save_motor_param(M2);
// dm.enable(M1);
// dm.enable(M2);
sleep(1);
while(1)
{
float q = sin(std::chrono::system_clock::now().time_since_epoch().count() / 1e9);
// dm.control_mit(M1, 30, 0.3, q*10, 0, 0);
// dm.control_vel(M1, q*100);
// dm.control_pos_vel(M2, q*10,10);
dm.refresh_motor_status(M1);
dm.refresh_motor_status(M2);
std::cout<<"motor1--- POS:"<<M1.Get_Position()<<" VEL:"<<M1.Get_Velocity()<<" CUR:"<<M1.Get_tau()<<std::endl;
// std::cout<<"motor2--- POS:"<<M2.Get_Position()<<" VEL:"<<M2.Get_Velocity()<<" CUR:"<<M2.Get_tau()<<std::endl;
usleep(1000);
// std::cout<<"motor1 pos:"<<M1.Get_Position()<<std::endl;
}
return 0;
}