-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add launch/aibo_example.launch to work with ./make_aibo_diary.py --test
- Loading branch information
Showing
3 changed files
with
76 additions
and
6 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,41 @@ | ||
# database talker for aibo | ||
- git: | ||
local-name: jsk_demos | ||
uri: https://github.com/sktometometo/jsk_demos | ||
version: PR/hoge-py | ||
# use k-okada' version of aibo_driver (for message) | ||
- git: | ||
local-name: aibo_driver | ||
uri: https://gitlab.jsk.imi.i.u-tokyo.ac.jp/k-okada/aibo_status | ||
version: driver | ||
# | ||
# use latest google_chat_ros, until noetic is synced | ||
# armhf users need to use https://github.com/k-okada/jsk_3rdparty/commit/8524aaa4118cb7ab02c65f47c46343bbb4f7147c | ||
# rosinstall_generator google_chat_ros --rosdistro noetic | ||
# | ||
- git: | ||
local-name: google_chat_ros | ||
uri: https://github.com/tork-a/jsk_3rdparty-release.git | ||
version: release/noetic/google_chat_ros/2.1.28-1 | ||
# | ||
# use latest jsk_recognition_msgs, until noetic is synced | ||
# | ||
- git: | ||
local-name: jsk_recognition/jsk_recognition_msgs | ||
uri: https://github.com/tork-a/jsk_recognition-release.git | ||
version: release/noetic/jsk_recognition_msgs/1.2.17-1 | ||
# | ||
# need releasing | ||
# https://github.com/davesarmoury/openai_ros/pulls?q=is%3Apr | ||
# | ||
- git: | ||
local-name: openai_ros | ||
uri: https://github.com/davesarmoury/openai_ros | ||
# | ||
# add sample launch code for database_talker #1792 | ||
# https://github.com/jsk-ros-pkg/jsk_robot/pull/1792 | ||
# | ||
- git: | ||
local-name: jsk_robot | ||
uri: https://github.com/k-okada/jsk_robot.git | ||
version: ichikura_sample |
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,19 @@ | ||
<launch> | ||
<arg name="openai_credentials_json" default="$(find aibo_driver)/auth/openai_credentials.json" /> | ||
<param name="robot/name" value="aibo" /> | ||
|
||
|
||
<param name="mongodb_host" value="musca.jsk.imi.i.u-tokyo.ac.jp" /> | ||
<param name="mongodb_port" value="27017" /> | ||
<node name="message_store" pkg="mongodb_store" type="message_store_node.py" > | ||
<param name="mongodb_use_localdatacenter" value="false" /> | ||
<param name="queue_size" value="100" /> | ||
</node> | ||
|
||
<!-- openai --> | ||
<group ns="openai"> | ||
<node pkg="openai_ros" type="openai_node.py" name="openai" output="screen" > | ||
<rosparam command="load" file="$(arg openai_credentials_json)" /> | ||
</node> | ||
</group> | ||
</launch> |
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