-
Notifications
You must be signed in to change notification settings - Fork 29
/
0003-api_get.cc
57 lines (45 loc) · 1.28 KB
/
0003-api_get.cc
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
/**
* Software License Agreement (MIT License)
*
* Copyright (c) 2022, UFACTORY, Inc.
*
* All rights reserved.
*
* @author Vinman <[email protected]> <[email protected]>
*/
#include "xarm/wrapper/xarm_api.h"
int main(int argc, char **argv) {
if (argc < 2) {
printf("Please enter IP address\n");
return 0;
}
std::string port(argv[1]);
XArmAPI *arm = new XArmAPI(port);
arm->motion_enable(true);
arm->set_mode(0);
arm->set_state(0);
sleep_milliseconds(1000);
printf("=========================================\n");
int ret = 0;
unsigned char version[40] = {0};
ret = arm->get_version(version);
printf("ret=%d, version: %s\n", ret, version);
int state = 0;
ret = arm->get_state(&state);
printf("ret=%d, state: %d, mode: %d\n", ret, state, arm->mode);
int cmdnum = 0;
ret = arm->get_cmdnum(&cmdnum);
printf("ret=%d, cmdnum: %d\n", ret, cmdnum);
int err_warn[2] = {0};
ret = arm->get_err_warn_code(err_warn);
printf("ret=%d, err: %d, warn: %d\n", ret, err_warn[0], err_warn[1]);
fp32 pose[6] = {0};
ret = arm->get_position(pose);
printf("ret=%d, ", ret);
print_nvect("pose: ", pose, 6);
fp32 angles[7] = {0};
ret = arm->get_servo_angle(angles);
printf("ret=%d, ", ret);
print_nvect("angles: ", angles, 7);
return 0;
}