-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
803ee99
commit 8e7b415
Showing
2 changed files
with
140 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import asyncio | ||
|
||
from nova import Controller, MotionSettings, Nova | ||
from nova.actions import jnt, ptp | ||
from nova.core.nova import Nova | ||
from nova.types import Pose | ||
|
||
from nova_rerun_bridge import NovaRerunBridge | ||
from nova_rerun_bridge.trajectory import TimingMode | ||
|
||
""" | ||
Example: Move multiple robots simultaneously. | ||
Prerequisites: | ||
- A cell with two robots: one named "ur" and another named "kuka". | ||
""" | ||
|
||
|
||
async def move_robot(controller: Controller, nova_bridge: NovaRerunBridge): | ||
async with controller[0] as motion_group: | ||
home_joints = await motion_group.joints() | ||
tcp_names = await motion_group.tcp_names() | ||
tcp = tcp_names[0] | ||
|
||
current_pose = await motion_group.tcp_pose(tcp) | ||
target_pose = current_pose @ (100, 0, 0, 0, 0, 0) | ||
actions = [jnt(home_joints), ptp(target_pose), jnt(home_joints)] | ||
|
||
trajectory = await motion_group.plan(actions, tcp) | ||
await nova_bridge.log_trajectory(trajectory, tcp, motion_group, timing_mode=TimingMode.SYNC) | ||
|
||
await motion_group.plan_and_execute(actions, tcp) | ||
|
||
|
||
async def main(): | ||
nova = Nova() | ||
nova_bridge = NovaRerunBridge(nova) | ||
await nova_bridge.setup_blueprint() | ||
|
||
cell = nova.cell() | ||
controllers = await cell.controllers() | ||
controller = controllers[0] | ||
|
||
# Connect to the controller and activate motion groups | ||
async with controller[0] as motion_group: | ||
home_joints = await motion_group.joints() | ||
tcp_names = await motion_group.tcp_names() | ||
tcp = tcp_names[0] | ||
|
||
# Get current TCP pose and offset it slightly along the x-axis | ||
current_pose = await motion_group.tcp_pose(tcp) | ||
target_pose = current_pose @ Pose((1, 0, 0, 0, 0, 0)) | ||
|
||
actions = [ | ||
jnt(home_joints), | ||
ptp(target_pose), | ||
jnt(home_joints), | ||
ptp(target_pose @ [100, 0, 0, 0, 0, 0]), | ||
jnt(home_joints), | ||
ptp(target_pose @ (100, 100, 0, 0, 0, 0)), | ||
jnt(home_joints), | ||
ptp(target_pose @ Pose((0, 100, 0, 0, 0, 0))), | ||
jnt(home_joints), | ||
] | ||
|
||
# you can update the settings of the action | ||
for action in actions: | ||
action.settings = MotionSettings(tcp_velocity_limit=200) | ||
|
||
joint_trajectory = await motion_group.plan(actions, tcp) | ||
|
||
await nova_bridge.log_trajectory(joint_trajectory, tcp, motion_group) | ||
await nova_bridge.log_trajectory(joint_trajectory, tcp, motion_group) | ||
|
||
await motion_group.execute(joint_trajectory, tcp, actions=actions) | ||
|
||
cell = nova.cell() | ||
ur = await cell.controller("ur") | ||
kuka = await cell.controller("kuka") | ||
await asyncio.gather( | ||
move_robot(ur, nova_bridge=nova_bridge), move_robot(kuka, nova_bridge=nova_bridge) | ||
) | ||
|
||
# Connect to the controller and activate motion groups | ||
async with controller[0] as motion_group: | ||
home_joints = await motion_group.joints() | ||
tcp_names = await motion_group.tcp_names() | ||
tcp = tcp_names[0] | ||
|
||
# Get current TCP pose and offset it slightly along the x-axis | ||
current_pose = await motion_group.tcp_pose(tcp) | ||
target_pose = current_pose @ Pose((1, 0, 0, 0, 0, 0)) | ||
|
||
actions = [ | ||
jnt(home_joints), | ||
ptp(target_pose), | ||
jnt(home_joints), | ||
ptp(target_pose @ [100, 0, 0, 0, 0, 0]), | ||
jnt(home_joints), | ||
ptp(target_pose @ (100, 100, 0, 0, 0, 0)), | ||
jnt(home_joints), | ||
ptp(target_pose @ Pose((0, 100, 0, 0, 0, 0))), | ||
jnt(home_joints), | ||
] | ||
|
||
# you can update the settings of the action | ||
for action in actions: | ||
action.settings = MotionSettings(tcp_velocity_limit=200) | ||
|
||
joint_trajectory = await motion_group.plan(actions, tcp) | ||
|
||
await nova_bridge.log_trajectory(joint_trajectory, tcp, motion_group) | ||
await nova_bridge.log_trajectory(joint_trajectory, tcp, motion_group) | ||
|
||
await motion_group.execute(joint_trajectory, tcp, actions=actions) | ||
|
||
await nova.close() | ||
await nova_bridge.cleanup() | ||
|
||
|
||
if __name__ == "__main__": | ||
asyncio.run(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters