-
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
bc2f787
commit 788b2e3
Showing
2 changed files
with
79 additions
and
0 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,56 @@ | ||
import asyncio | ||
|
||
from nova import MotionSettings | ||
from nova.actions import jnt, ptp | ||
from nova.core.exceptions import PlanTrajectoryFailed | ||
from nova.core.nova import Nova | ||
from nova.types import Pose | ||
|
||
from nova_rerun_bridge import NovaRerunBridge | ||
|
||
|
||
async def test(): | ||
async with Nova() as nova, NovaRerunBridge(nova) as bridge: | ||
await 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), | ||
ptp(target_pose @ [-100, 0, 0, 0, 0, 0]), | ||
ptp(target_pose @ [-10000, 0, 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) | ||
|
||
try: | ||
joint_trajectory = await motion_group.plan(actions, tcp) | ||
await bridge.log_trajectory(joint_trajectory, tcp, motion_group) | ||
await motion_group.execute(joint_trajectory, tcp, actions=actions) | ||
except PlanTrajectoryFailed as e: | ||
# Optionally visualize the failed planning attempt if available | ||
await bridge.log_trajectory(e.error.joint_trajectory, tcp, motion_group) | ||
await bridge.log_error_feedback(e.error.error_feedback) | ||
return | ||
|
||
await nova.close() | ||
|
||
|
||
if __name__ == "__main__": | ||
asyncio.run(test()) |
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