forked from Modi1987/KST-Kuka-Sunrise-Toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkuka0_directServo.m
83 lines (68 loc) · 2.17 KB
/
kuka0_directServo.m
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
%% Example
% real time control of the KUKA iiwa 7 R 800
% Moving first joint of the robot, using a sinisoidal function
% An example script, it is used to show how to use the different
% functions of the KUKA Sunrise matlab toolbox
% First start the server on the KUKA iiwa controller
% Then run this script using Matlab
% Copyright: Mohammad SAFEEA, 15th of June 2017
% Important: Be careful when runnning the script, be sure that no human, nor obstacles
% are around the robot
close all,clear all;clc;
warning('off')
ip='172.31.1.147'; % The IP of the controller
% start a connection with the server
global t_Kuka;
t_Kuka=net_establishConnection( ip );
if ~exist('t_Kuka','var') || isempty(t_Kuka) || strcmp(t_Kuka.Status,'closed')
disp('Connection could not be establised, script aborted');
return;
end
%% Go to initial position
jPos={0,0,0,0,0,0,0};
setBlueOn(t_Kuka); % turn on blue light
relVel=0.5;
movePTPJointSpace( t_Kuka , jPos, relVel); % move to initial configuration
%% Start direct servo in joint space
realTime_startDirectServoJoints(t_Kuka);
w=1.5; % motion constants, frequency rad/sec
A=pi/6; % motion constants, amplitude of motion
counter=0;
%% Initiate timing variables
dt=0;
tic;
t0=toc; % calculate initial time
%% Control loop
try
while(dt<(80*pi/w))
%% Perform trajectory calculation here
time=toc;
dt=time-t0;
jPos{1}=A*(1-cos(w*dt));
counter=counter+1;
%% Send joint positions to robot
sendJointsPositions( t_Kuka ,jPos);
end
tstart=t0;
tend=time;
rate=counter/(tend-tstart);
%% Stop the direct servo motion
realTime_stopDirectServoJoints( t_Kuka );
fprintf('\nTotal execution time is %f: \n',tend-t0 );
fprintf('\nThe rate of joint nagles update per second is: \n');
disp(rate);
fprintf('\n')
pause(2);
%% turn off light
setBlueOff(t_Kuka);
net_turnOffServer( t_Kuka )
disp('Direct servo motion completed successfully')
warning('on')
return;
catch
% in case of error turn off the server
net_turnOffServer( t_Kuka );
disp('Error during execution the direct servo motion')
fclose(t_Kuka);
warning('on')
end