Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jsk_2022_10_semi #1375

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions jsk_2022_10_semi/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8.3)
project(jsk_2022_10_semi)

find_package(catkin REQUIRED COMPONENTS)

catkin_package()

install(DIRECTORY euslisp
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

1 change: 1 addition & 0 deletions jsk_2022_10_semi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# jsk_2022_10_semi
12 changes: 12 additions & 0 deletions jsk_2022_10_semi/euslisp/demo.l
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(load "package://fetcheus/fetch-interface.l")

(unless (boundp '*ri*) (fetch-init))
(objects (list *fetch*))

(send *fetch* :reset-pose)
(send *irtviewer* :draw-objects)

(send *fetch* :rarm :shoulder-y :joint-angle 30)
(send *fetch* :rarm :shoulder-r :joint-angle -120)
(send *fetch* :rarm :elbow-r :joint-angle -30)
(send *irtviewer* :draw-objects)
19 changes: 19 additions & 0 deletions jsk_2022_10_semi/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<package>
<name>jsk_2022_10_semi</name>
<version>0.0.5</version>
<description>The jsk_2022_10_semi package</description>

<maintainer email="[email protected]">Kei Okada</maintainer>

<license>BSD</license>

<buildtool_depend>catkin</buildtool_depend>

<run_depend>fetcheus</run_depend>
<run_depend>jsk_maps</run_depend>
<run_depend>pr2eus</run_depend>

<export>
</export>
</package>