forked from xArm-Developer/xArm-CPLUS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5005-get_cgpio_digital_analog.cc
45 lines (37 loc) · 1.15 KB
/
5005-get_cgpio_digital_analog.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
/*
# Software License Agreement (MIT License)
#
# Copyright (c) 2019, UFACTORY, Inc.
# All rights reserved.
#
# Author: Vinman <vinman.wen@ufactory.cc> <vinman.cub@gmail.com>
*/
#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);
sleep_milliseconds(500);
if (arm->error_code != 0) arm->clean_error();
if (arm->warn_code != 0) arm->clean_warn();
arm->motion_enable(true);
arm->set_mode(0);
arm->set_state(0);
sleep_milliseconds(500);
printf("=========================================\n");
int ret;
int digitals[8];
float io0, io1;
ret = arm->get_cgpio_digital(digitals);
printf("get_cgpio_digital, ret=%d", ret);
for (int i = 0; i < 8; ++i) { printf(", io%d=%d", i, digitals[i]); }
printf("\n");
ret = arm->get_cgpio_analog(0, &io0);
printf("get_cgpio_analog, ret=%d, io=0, val=%f\n", ret, io0);
ret = arm->get_cgpio_analog(1, &io1);
printf("get_cgpio_analog, ret=%d, io=1, val=%f\n", ret, io1);
return 0;
}