-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalc_tool_path.py
66 lines (54 loc) · 2.49 KB
/
calc_tool_path.py
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
#!/usr/bin/env python3
from automata.Eva import Eva
import time
import json
import logging
from draw_funcs import *
import math
# Ensure Eva is Connected to Computer
host_ip = "http://172.16.16.2" # Ip you used to connect to choreograph
token = "cec3d52b-ad0c-4caf-8624-95f09381fce9" # API Tokens
start_joints_deg = [20.4,-60.54,-83.1,5.04,-41.75,3.78] # Read from Go-to on choreograph
x_offset = -0.0175 + 0.005
y_offset = 0.005 + 0.04
z_offset = 0.02 - 0.01 #+ 0.01# raise or lower the end effector to calibrate height - units meters
#----------------------------------------------
file_path = "./path.txt"
eva = Eva(host_ip, token)
# Enter Starting Joint Angles. Read off of dashboard in choreograph
# Convert joint angles from deg to rad
start_joints_rad = []
for joint in start_joints_deg:
start_joints_rad.append( round( joint * (math.pi/180),3) )
# Calculate starting end effector position
start_end_eff = eva.calc_forward_kinematics(start_joints_rad)
init_orient_quat = start_end_eff['orientation']
# Convert end effector orientation from quaterion to euler
init_orient_euler = quaternion_to_euler(init_orient_quat['w'],init_orient_quat['x'],init_orient_quat['y'],init_orient_quat['z'])
# Create orientation object that is perpendicular to the floor,
# new_quat = euler_to_quaternion(init_orient_euler[0],init_orient_euler[1],3.14) #yaw, pitch, roll
new_quat = euler_to_quaternion(init_orient_euler[0],0,3.14) #yaw, pitch, roll
# new_quat = euler_to_quaternion(init_orient_euler[0],0,) #yaw, pitch, roll
start_end_eff['orientation'] = {'w': new_quat[0], 'x': new_quat[1], 'y': new_quat[2], 'z': new_quat[3]}
start_end_eff['position']['z'] += z_offset
start_end_eff['position']['y'] += y_offset
start_end_eff['position']['x'] += x_offset
#find joint angles associate with end effector positon with same, x,y,z, but adjusted orientation.
updated_start_joints = eva.calc_inverse_kinematics(start_joints_rad, start_end_eff['position'], start_end_eff['orientation'])['ik']['joints']
#load drawn points from Fusion 360
points, motion_type = load(file_path)
print(points)
#Functions to turn points to toolpath
parsed_points = parse_fusion_points(points)
waypoints = points_to_waypoints(parsed_points,start_end_eff,updated_start_joints, eva)
toolpath = waypoints_to_toolpath(waypoints, motion_type)
for i in toolpath["waypoints"]:
print(i)
for j in toolpath["timeline"]:
print(j)
# Run tool path
with eva.lock():
eva.control_wait_for_ready()
eva.toolpaths_use(toolpath)
eva.control_home()
eva.control_run(loop=1)