-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up lidar flip param, and re-introduce CI testing for ros1 #94
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
02d5c13
improved wording on scan direction laser plugin option. Added documen…
josephduchesne 2267d30
added ros industrial ci test runner github action
josephduchesne b72df50
only kinetic ci for now
josephduchesne 6e84710
only kinetic ci for now
josephduchesne b5dc140
Update industrial_ci_action.yml
josephduchesne b1e0408
Update industrial_ci_action.yml
josephduchesne 83d1616
Update industrial_ci_action.yml
josephduchesne 80e8dfe
Merge remote-tracking branch 'origin/master' into clean-up-lidar-flip…
josephduchesne 3b92feb
Merge branch 'clean-up-lidar-flip-param' of github.com:avidbots/flatl…
josephduchesne 50b1f40
added extra time for services to start
josephduchesne 8874c0a
Update laser.rst
josephduchesne c4e16b7
Version bump to 1.3.1
josephduchesne ddfdbf2
fixed lidar scan data direction, which apparently was backwards forever
josephduchesne d947f97
fixed incorrect lidar flip code
josephduchesne d0acfbe
reverted unintentional launchfile change
josephduchesne 60e4b52
laser plugin: support clockwise-turning lidars
pbelanger-avid 713a8fe
Update laser.rst
josephduchesne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
industrial_ci: | ||
strategy: | ||
matrix: | ||
env: | ||
- {ROS_DISTRO: noetic, ROS_REPO: main} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{matrix.env}} |
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
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
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
34 changes: 34 additions & 0 deletions
34
flatland_plugins/test/laser_tests/range_test/robot.model.cw.asymmetrical.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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Turtlebot | ||
|
||
bodies: # List of named bodies | ||
- name: base_link | ||
pose: [0, 0, 0] | ||
type: dynamic | ||
color: [1, 1, 0, 1] | ||
footprints: | ||
- type: polygon | ||
density: 1.0 | ||
points: [[-.5, -0.25], [-.5, 0.25], [.5, 0.25], [.5, -0.25]] | ||
|
||
plugins: | ||
- type: Laser | ||
name: laser_flipped | ||
body: base_link | ||
range: 5 | ||
topic: scan1 | ||
frame: laser_flipped_custom | ||
upside_down: true | ||
angle: {min: 0, max: 0.21, increment: 0.1} | ||
- type: Laser | ||
name: laser_normal | ||
body: base_link | ||
range: 5 | ||
topic: scan2 | ||
upside_down: false | ||
angle: {min: 0, max: 0.21, increment: 0.1} | ||
- type: ModelTfPublisher | ||
name: state_publisher | ||
update_rate: .inf | ||
publish_tf_world: true | ||
world_frame_id: map | ||
reference: base_link |
20 changes: 20 additions & 0 deletions
20
flatland_plugins/test/laser_tests/range_test/robot.model.cw.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Turtlebot | ||
|
||
bodies: # List of named bodies | ||
- name: base_link | ||
pose: [0, 0, 0] | ||
type: dynamic | ||
color: [1, 1, 0, 1] | ||
footprints: | ||
- type: circle | ||
density: 1 | ||
center: [0, 0] | ||
radius: 0.1 | ||
|
||
plugins: | ||
- type: Laser | ||
name: laser_front | ||
body: base_link | ||
range: 5 | ||
upside_down: true | ||
angle: {min: -1.5707963267948966, max: 1.5707963267948966, increment: 1.5707963267948966} |
13 changes: 13 additions & 0 deletions
13
flatland_plugins/test/laser_tests/range_test/world.cw.asymmetrical.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
properties: {} | ||
layers: | ||
- name: "layer_1" | ||
map: "map_1.yaml" | ||
color: [0, 1, 0, 1] | ||
- name: "layer_2" | ||
map: "map_2.yaml" | ||
color: [0, 1, 0, 1] | ||
models: | ||
- name: robot1 | ||
pose: [5, 5, 0.2] | ||
model: robot.model.cw.asymmetrical.yaml | ||
namespace: "r" |
13 changes: 13 additions & 0 deletions
13
flatland_plugins/test/laser_tests/range_test/world.cw.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
properties: {} | ||
layers: | ||
- name: "layer_1" | ||
map: "map_1.yaml" | ||
color: [0, 1, 0, 1] | ||
- name: "layer_2" | ||
map: "map_2.yaml" | ||
color: [0, 1, 0, 1] | ||
models: | ||
- name: robot1 | ||
pose: [5, 5, 0] | ||
model: robot.model.cw.yaml | ||
namespace: "r" |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the names of these tests should be updated to reflect the new name of the parameter (
upside_down
vsflipped
)