Skip to content
Merged
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
7 changes: 7 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,15 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"srv/ContinuousGait.srv"
"srv/Euler.srv"
"srv/FootRaiseHeight.srv"
"srv/GetBodyHeight.srv"
"srv/GetFootRaiseHeight.srv"
"srv/GetSpeedLevel.srv"
"srv/GetState.srv"
"srv/GetVolume.srv"
"srv/Mode.srv"
"srv/Pose.srv"
"srv/Say.srv"
"srv/SetVolume.srv"
"srv/SpeedLevel.srv"
"srv/SwitchGait.srv"
"srv/SwitchJoystick.srv"
Expand Down
6 changes: 6 additions & 0 deletions srv/GetBodyHeight.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Get the relative height of the body above the ground when standing and walking.

---
bool success
string message
float32 height
6 changes: 6 additions & 0 deletions srv/GetFootRaiseHeight.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Get the relative height of foot lift during movement

---
bool success
string message
float32 height
6 changes: 6 additions & 0 deletions srv/GetSpeedLevel.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Get the speed level

---
bool success
string message
int32 level
5 changes: 5 additions & 0 deletions srv/GetState.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Get State

---
bool success
string message
6 changes: 6 additions & 0 deletions srv/GetVolume.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Get the volume of the robot speaker [0 - 10]

---
bool success
string message
int32 volume
6 changes: 6 additions & 0 deletions srv/Say.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# It says through the speakers what you write in the text field
string text

---
bool success
string message
6 changes: 6 additions & 0 deletions srv/SetVolume.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Set the volume of the robot speaker [0 - 10]
int32 volume

---
bool success
string message