-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from turtlebot/roni-kreinin/multi_robot
Multiple robot support
- Loading branch information
Showing
16 changed files
with
1,185 additions
and
517 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
123 changes: 62 additions & 61 deletions
123
turtlebot4_ignition_bringup/config/turtlebot4_node.yaml
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 |
---|---|---|
@@ -1,62 +1,63 @@ | ||
turtlebot4_node: | ||
ros__parameters: | ||
wifi: | ||
interface: "wlan0" | ||
|
||
# Supported Functions: | ||
# Dock | ||
# Undock | ||
# Wall Follow Left | ||
# Wall Follow Right | ||
# Power | ||
# EStop | ||
|
||
# Menu Functions: | ||
# Scroll Up | ||
# Scroll Down | ||
# Back | ||
# Select | ||
# Help | ||
|
||
/**: | ||
turtlebot4_node: | ||
ros__parameters: | ||
wifi: | ||
interface: "wlan0" | ||
|
||
# Supported Functions: | ||
# Dock | ||
# Undock | ||
# Wall Follow Left | ||
# Wall Follow Right | ||
# Power | ||
# EStop | ||
|
||
# Menu Functions: | ||
# Scroll Up | ||
# Scroll Down | ||
# Back | ||
# Select | ||
# Help | ||
|
||
# Buttons: | ||
# create3_1 | ||
# create3_power | ||
# create3_2 | ||
# hmi_1 | ||
# hmi_2 | ||
# hmi_3 | ||
# hmi_4 | ||
|
||
# Format: | ||
# button: ["SHORT_PRESS_FUNC", "LONG_PRESS_FUNC", "LONG_PRESS_DURATION_MS"] | ||
|
||
buttons: | ||
create3_1: ["Dock", "Wall Follow Left", "2000"] | ||
create3_power: ["EStop", "Power", "3000"] | ||
create3_2: ["Undock", "Wall Follow Right", "2000"] | ||
|
||
hmi_1: ["Select"] | ||
hmi_2: ["Back"] | ||
hmi_3: ["Scroll Up"] | ||
hmi_4: ["Scroll Down"] | ||
|
||
# Menu entry must match a function | ||
menu: | ||
entries: ["Dock", "Undock", "EStop", "Wall Follow Left", "Wall Follow Right", "Power", "Help"] | ||
|
||
# Controller button functions | ||
# Buttons: | ||
# create3_1 | ||
# create3_power | ||
# create3_2 | ||
# hmi_1 | ||
# hmi_2 | ||
# hmi_3 | ||
# hmi_4 | ||
|
||
# Format: | ||
# button: ["SHORT_PRESS_FUNC", "LONG_PRESS_FUNC", "LONG_PRESS_DURATION_MS"] | ||
|
||
buttons: | ||
create3_1: ["Dock", "Wall Follow Left", "2000"] | ||
create3_power: ["EStop", "Power", "3000"] | ||
create3_2: ["Undock", "Wall Follow Right", "2000"] | ||
|
||
hmi_1: ["Select"] | ||
hmi_2: ["Back"] | ||
hmi_3: ["Scroll Up"] | ||
hmi_4: ["Scroll Down"] | ||
|
||
# Menu entry must match a function | ||
menu: | ||
entries: ["Dock", "Undock", "EStop", "Wall Follow Left", "Wall Follow Right", "Power", "Help"] | ||
|
||
# Controller button functions | ||
# Buttons: | ||
# a b x y | ||
# up down left right | ||
# l1 l2 l3 r1 r2 r3 | ||
# share options home | ||
|
||
controller: | ||
b: ["EStop"] | ||
a: ["Select"] | ||
x: ["Back"] | ||
up: ["Scroll Up"] | ||
down: ["Scroll Down"] | ||
l2: ["Wall Follow Left"] | ||
r2: ["Wall Follow Right"] | ||
home: ["Dock", "Undock", "3000"] | ||
# a b x y | ||
# up down left right | ||
# l1 l2 l3 r1 r2 r3 | ||
# share options home | ||
|
||
controller: | ||
b: ["EStop"] | ||
a: ["Select"] | ||
x: ["Back"] | ||
up: ["Scroll Up"] | ||
down: ["Scroll Down"] | ||
l2: ["Wall Follow Left"] | ||
r2: ["Wall Follow Right"] | ||
home: ["Dock", "Undock", "3000"] |
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
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
Oops, something went wrong.