Skip to content

Commit

Permalink
Merge branch 'master' into string_improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ottojo authored Aug 6, 2023
2 parents 4339273 + a9283a9 commit 457407d
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on: push

jobs:
build:
runs-on: ubuntu-22.04
container: ros:iron
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install depdendencies
run: |
. /opt/ros/$ROS_DISTRO/setup.sh
cd $GITHUB_WORKSPACE/..
apt update
rosdep update
rosdep install -y --from-paths rig_reconfigure
- name: Build
run: |
. /opt/ros/$ROS_DISTRO/setup.sh
cd $GITHUB_WORKSPACE/..
colcon build --packages-select rig_reconfigure
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ The following features are not implemented yet, but would be nice to have. PRs a
- support for array parameters
- consideration of limits specified in the [parameter description](https://docs.ros2.org/galactic/api/rcl_interfaces/msg/ParameterDescriptor.html)

## Known issues
## Known Issues

- CPU usage is high when using non-hardware-accelerated OpenGL implementation, which is usually the case in VNC connections
- vsync via glfw doesn't work in VNC sessions (leading to even higher CPU usage), enable the manual frame rate limiting to reduce it

## Screenshots
## Usage example

![Screenshot of the parameter editor GUI](doc/screenshot_parameter_editor.png)
![Usage example](doc/demo.gif)
Binary file added doc/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/screenshot_parameter_editor.png
Binary file not shown.

0 comments on commit 457407d

Please sign in to comment.