|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 2.9.6 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | jazzy |
| Last Updated | 2026-09-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Where this fits in the Clearpath ROS 2 stack
clearpath_config is the entry point of the Clearpath ROS 2 system. A single
robot.yaml file describes an entire robot (platform, sensors, mounts, manipulators, and
system settings). This package parses and validates that file into a Python object tree, which
the Clearpath generators then turn into launch files, parameter files, and robot descriptions.
flowchart LR
yaml["robot.yaml"] --> config["clearpath_config<br/>(this repo)<br/>YAML parser + validation"]
config --> genc["clearpath_generator_common"]
config --> genr["clearpath_generator_robot"]
config --> geng["clearpath_generator_gz"]
genc --> out["/etc/clearpath<br/>generated launch / params / description"]
genr --> out
geng --> out
out --> common["clearpath_common<br/>control / description / diagnostics"]
out --> robot["clearpath_robot<br/>real hardware"]
out --> sim["clearpath_simulator<br/>Gazebo"]
config -. "sample configs" .-> tests["clearpath_generator_tests<br/>validates generator output"]
Architecture
The top-level ClearpathConfig class loads the YAML and
delegates each top-level key to a dedicated sub-config module. Every sub-config validates its own
section and exposes typed accessors:
| Top-level key | Module | Responsibility |
|---|---|---|
serial_number |
clearpath_config.py |
Robot identity; seeds platform defaults. |
version |
clearpath_config.py |
Config schema version. |
system |
system/system.py |
Hosts, networking, ROS domain, middleware. |
platform |
platform/platform.py |
Base platform model, controllers, extras. |
links |
links/links.py |
Static coordinate frames added by the user. |
manipulators |
manipulators/manipulators.py |
Arms, grippers, and lifts. |
mounts |
mounts/mounts.py |
Physical mounting hardware for sensors/accessories. |
sensors |
sensors/sensors.py |
Cameras, lidars, IMUs, GPS, etc. |
Shared plumbing (base classes, YAML read/write, type helpers) lives under
clearpath_config/common/. Use read_yaml/write_yaml from
common/utils/yaml.py rather than calling PyYAML directly, so ordering and formatting stay
consistent with the generators.
Documentation
-
Robot YAML overview — the user-facing reference for
robot.yaml. - Per-section references: serial number, system, platform, links, mounts, sensors.
- Generators — how the parsed config is turned into runtime files.
Configuration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml. Sample files whose names contain test (e.g. test_a300.yaml) are also the fixtures consumed by clearpath_generator_tests; adding or renaming one changes what CI validates.
Contributing
See CONTRIBUTING.md for how to set up your environment, run the linters and tests, and submit a pull request.
Changelog for package clearpath_config
2.9.6 (2026-08-07)
-
Updated default robot.yaml samples to include the joy controller. (#243)
-
Bump actions/setup-python from 6 to 7 (#241) Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6 to 7.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v6...v7) ---updated-dependencies:
- dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Contributors: Tony Baltovski, dependabot[bot]
2.9.5 (2026-07-22)
- Added support for A300 with indoor tires. (#240)
- Bump actions/checkout from 6 to 7 (#237) ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Contributors: Tony Baltovski, dependabot[bot]
2.9.4 (2026-06-02)
-
Bump actions/checkout from 3 to 6 (#234) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v6) ---updated-dependencies:
- dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Bump actions/setup-python from 3 to 6 (#233) Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v3...v6) ---updated-dependencies:
- dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Bump ros-tooling/action-ros-ci from 0.3 to 0.4 (#232) Bumps [ros-tooling/action-ros-ci](https://github.com/ros-tooling/action-ros-ci) from 0.3 to 0.4.
- [Release notes](https://github.com/ros-tooling/action-ros-ci/releases)
- [Commits](https://github.com/ros-tooling/action-ros-ci/compare/v0.3...v0.4) ---updated-dependencies:
- dependency-name: ros-tooling/action-ros-ci dependency-version: '0.4' dependency-type: direct:production update-type: version-update:semver-minor ... Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Bump actions/github-script from 7 to 9 (#231) Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9.
- [Release
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged clearpath_config at Robotics Stack Exchange
|
clearpath_config package from clearpath_config repoclearpath_config |
ROS Distro
|
Package Summary
| Version | 0.3.3 |
| License | BSD-3 |
| Build type | AMENT_PYTHON |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/clearpathrobotics/clearpath_config.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2024-09-29 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Luis Camero
Authors
clearpath_config
Clearpath Configuration YAML Parser
Find documentation on the Clearpath Configuration YAML and more about the Clearpath ROS 2 System on the Clearpath Documentation webpage.
Configration Examples
Under the sample folder there are example configurations that can be used as the starting point of your robot.yaml.
Unit Tests
All unit tests are written using PyTest following the Good Integration Practices.
Therefore, clearpath_config_test is a package that mirrors the clearpath_config package structure. Each file from clearpath_config that is to be tested should have a corresponding file with the same name and the suffix _test.py.
To run the tests:
cd .../clearpath_config
python3 -m pytest
PyTest will automatically search for the suffix
_testthroughout the current directory and run the tests.
Changelog for package clearpath_config
0.3.3 (2024-09-29)
- Allow all parameters to be modified
- Contributors: Luis Camero
0.3.2 (2024-09-23)
- Alphabetically order packages
- Add manipulators to setup
- Contributors: Luis Camero
0.3.1 (2024-09-19)
- Fix battery in r100 sample
- Contributors: Luis Camero
0.3.0 (2024-09-19)
-
Add samples to setup.py
-
Remove empty line in D150 attachments
-
Height parameters for tower shoulder
-
FAMS, HAMS, and Tower as separate attachments
-
Add height parameter to Dingo top plate
-
Add samples for Dingo O and Ridgeback
-
0.3 Release Candidate with Main Changes (#73)
- Renamed node to intel_realsense in config
- Changes.
- 0.2.8
- Added Zed as type of camera
- Added Zed to configuration
- Changes.
- 0.2.9
- Updated Realsense parameters
- Updated Microstrain link parameter
- Changes.
- 0.2.10
- Adds GQ7 as possible sensor
- Changes.
* 0.2.11
Co-authored-by: Tony Baltovski <<tbaltovski@clearpathrobotics.com>> Co-authored-by: robbiefish <<rob.fisher@hbkworld.com>>
-
Fix ridgeback battery configuration
-
0.2.8
-
Changes.
-
Renamed node to intel_realsense in config
-
0.2.7
-
Changes.
-
W200 attachments default to 0
-
Re-added host and namespace
-
Minimal samples.
-
Removed long line
-
Added launch to extras
-
0.2.6
-
Changes.
-
Switched local server to be referenced as loopback in the ROS_DISCOVERY_SERVER envar
-
Add discovery server support
-
assertion error if the hostname is blank (otherwise causes an invalid index exception)
-
Add localhost field which is set automatically
-
Reformat hosts section to single list of all computers
-
0.2.5
-
Changes.
-
Added battery launch arguments to support launching the valence bms node
File truncated at 100 lines see the full file