-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update msg, srv and action files (#4)
* Update all messages, services and actions to match what will be on the robot controller with Polyscope 10.7 * Unify small case for message group variables * Add action_msgs dependency in package.xml For Humble this is still required. * Remove dashboard services for now As we don't offer those services on the robot controller currently and the driver does not immediately switch to this repo, let's remove those services for now.
- Loading branch information
Showing
26 changed files
with
47 additions
and
93 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
std_msgs/Header header | ||
|
||
string data |
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,6 +1,6 @@ | ||
std_msgs/Header header | ||
uint8 CURRENT = 0 | ||
uint8 VOLTAGE = 1 | ||
|
||
uint8 domain # can be VOLTAGE or CURRENT, must match SetAnalogOutput.srv | ||
float32 data | ||
uint8 pin | ||
uint8 domain # can be VOLTAGE or CURRENT | ||
float32 value |
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,3 @@ | ||
# Note: The array indices do not necessarily match the pin number | ||
Analog[] analog_inputs | ||
Analog[] analog_outputs |
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,3 @@ | ||
std_msgs/Header header | ||
|
||
AnalogIO io_state |
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,2 +1,2 @@ | ||
std_msgs/Header header | ||
bool[] data | ||
Analog data |
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,2 @@ | ||
uint8 pin | ||
bool state |
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,3 @@ | ||
# Note: The array indices do not necessarily match the pin number | ||
Digital[] digital_inputs | ||
Digital[] digital_outputs |
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,4 @@ | ||
std_msgs/Header header | ||
|
||
DigitalIO configurable_io | ||
DigitalIO standard_io |
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,2 @@ | ||
std_msgs/Header header | ||
Digital data |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 +1,5 @@ | ||
# Note: 'fun' is short for function of the pin to be selected | ||
uint8 CURRENT = 0 | ||
uint8 VOLTAGE = 1 | ||
|
||
# The value for pin [0-1] | ||
|
||
# Value for 'FUN_CURRENT' must be from [0.002; 0.020] A ; | ||
# Value for 'FUN_VOLTAGE' must be from [0; 10] V ; | ||
|
||
# request fields | ||
int8 pin | ||
uint8 output_type # can be VOLTAGE or CURRENT, must match Analog.msg | ||
float64 data | ||
# Set an analog output to a given value. | ||
# Multiple outputs can be set at once by providing more than one entry in the data array | ||
Analog[] data | ||
--- | ||
bool success |
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,11 +1,5 @@ | ||
# The value for pin [0-7] | ||
|
||
# valid values for 'state' when setting digital IO or flags | ||
bool STATE_OFF = 0 | ||
bool STATE_ON = 1 | ||
|
||
# request fields | ||
int8 pin | ||
bool state | ||
# Set a digital output to a given value. | ||
# Multiple outputs can be set at once by providing more than one entry in the data array | ||
Digital[] data | ||
--- | ||
bool success |
This file was deleted.
Oops, something went wrong.