-
Notifications
You must be signed in to change notification settings - Fork 495
/
Copy pathteach_swift.py
59 lines (46 loc) · 1.51 KB
/
teach_swift.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
# #!/usr/bin/env python
# """
# @author Jesse Haviland
# """
import swift
import roboticstoolbox as rtb
import numpy as np
import time
# Launch the simulator Swift
env = swift.Swift()
env.launch()
# Make a Panda robot and add it to Swift
panda = rtb.models.UR5()
panda.q = panda.qr
env.add(panda)
# This is our callback funciton from the sliders in Swift which set
# the joint angles of our robot to the value of the sliders
def set_joint(j, value):
panda.q[j] = np.deg2rad(float(value))
# Loop through each link in the Panda and if it is a variable joint,
# add a slider to Swift to control it
j = 0
for link in panda.links:
if link.isjoint:
# We use a lambda as the callback function from Swift
# j=j is used to set the value of j rather than the variable j
# We use the HTML unicode format for the degree # the unit arg
env.add(
swift.Slider(
lambda x, j=j: set_joint(j, x),
min=np.round(np.rad2deg(link.qlim[0]), 2),
max=np.round(np.rad2deg(link.qlim[1]), 2),
step=1,
value=np.round(np.rad2deg(panda.q[j]), 2),
desc="Panda Joint " + str(j),
unit="°",
)
)
j += 1
while True:
# Process the event queue from Swift, this invokes the callback functions
# from the sliders if the slider value was changed
# env.process_events()
# Update the environment with the new robot pose
env.step(0)
time.sleep(0.01)