Skip to content

Commit

Permalink
Merge pull request cram2#155 from Tigul/refactor-2024
Browse files Browse the repository at this point in the history
Refactor 2024
  • Loading branch information
Tigul authored May 28, 2024
2 parents e473a56 + a20e89c commit c26ad65
Show file tree
Hide file tree
Showing 93 changed files with 5,792 additions and 3,204 deletions.
2 changes: 1 addition & 1 deletion demos/pycram_ur5_demo/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pybullet as pb

from pycram.worlds.bullet_world import BulletWorld
from pycram.world import Object
from pycram.datastructures.world import Object
from pycram.datastructures.pose import Pose
from pycram.ros.force_torque_sensor import ForceTorqueSensor
from pycram.ros.joint_state_publisher import JointStatePublisher
Expand Down
14 changes: 7 additions & 7 deletions launch/ik_and_description.launch
Original file line number Diff line number Diff line change
Expand Up @@ -9,39 +9,39 @@
<include file="$(find pr2_arm_kinematics)/launch/pr2_ik_larm_node.launch"/>
<include file="$(find pr2_arm_kinematics)/launch/pr2_ik_rarm_node.launch"/>
<param name="robot_description"
textfile="$(find pycram)/resources/pr2.urdf"/>
textfile="$(find pycram)/resources/robots/pr2.urdf"/>
</group>
<!-- Boxy -->
<group if="$(eval robot == 'boxy')">
<param name="robot_description"
textfile="$(find pycram)/resources/boxy.urdf"/>
textfile="$(find pycram)/resources/robots/boxy.urdf"/>
</group>
<!-- Tiago -->
<group if="$(eval robot == 'tiago_dual')">
<param name="robot_description"
textfile="$(find pycram)/resources/tiago_dual.urdf"/>
textfile="$(find pycram)/resources/robots/tiago_dual.urdf"/>
</group>
<!-- UR5 -->
<group if="$(eval robot == 'ur5')">
<param name="robot_description"
textfile="$(find pycram)/resources/ur5_robotiq.urdf"/>
textfile="$(find pycram)/resources/robots/ur5_robotiq.urdf"/>
</group>
<!-- Donbot -->
<group if="$(eval robot == 'donbot')">
<param name="robot_description"
textfile="$(find pycram)/resources/iai_donbot.urdf"/>
textfile="$(find pycram)/resources/robots/iai_donbot.urdf"/>
</group>

<!-- HSR -->
<group if="$(eval robot == 'hsrb')">
<param name="robot_description"
textfile="$(find pycram)/resources/hsrb.urdf"/>
textfile="$(find pycram)/resources/robots/hsrb.urdf"/>
</group>

<!-- stretch -->
<group if="$(eval robot == 'stretch')">
<param name="robot_description"
textfile="$(find pycram)/resources/stretch.urdf"/>
textfile="$(find pycram)/resources/robots/stretch.urdf"/>
</group>


Expand Down
Loading

0 comments on commit c26ad65

Please sign in to comment.