moveit_task_constructor/demo/scripts/current_state.py
2024-05-23 14:08:49 +02:00

22 lines
441 B
Python
Executable File

#! /usr/bin/env python
# -*- coding: utf-8 -*-
from moveit.task_constructor import core, stages
from py_binding_tools import roscpp_init
import time
roscpp_init("mtc_tutorial_current_state")
# Create a task
task = core.Task()
# Get the current robot state
currentState = stages.CurrentState("current state")
# Add the stage to the task hierarchy
task.add(currentState)
if task.plan():
task.publish(task.solutions[0])
time.sleep(1)