Skip to content
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

Add moveit_configs_utils package to simplify loading paramters #591

Merged
merged 46 commits into from
Jan 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
cadcfef
Add package to moveit2
JafarAbdi Aug 13, 2021
b6ace6d
Refactor filepath to be w.r.t. package root path
JafarAbdi Aug 13, 2021
b1e4c64
Add new parameter to moveit configs utils to support moveit cpp
JafarAbdi Aug 13, 2021
1089978
Refactor moveit_servo
JafarAbdi Aug 13, 2021
db0eb9f
Refactor benchmarks
JafarAbdi Aug 13, 2021
a2ef6c6
Rename file_name to file_path
JafarAbdi Aug 13, 2021
f7c5853
Refactor planning interface
JafarAbdi Aug 13, 2021
e26c290
Refactor moveit kinematics
JafarAbdi Aug 13, 2021
4fb985e
Add source for parameter tools
JafarAbdi Aug 13, 2021
21a78d6
pre-commit
JafarAbdi Aug 13, 2021
c08574c
Fixes
JafarAbdi Aug 13, 2021
6294cc8
Update moveit_resources tag
JafarAbdi Aug 13, 2021
f1f3f21
Fix bug
JafarAbdi Sep 9, 2021
1a312e9
Update parameter tools tag
JafarAbdi Sep 9, 2021
f1fe62d
Fixes
JafarAbdi Sep 9, 2021
4465510
Use property/setters for MoveItConfigs
JafarAbdi Sep 10, 2021
2a74434
Rename .moveit_configs() to .to_moveit_configs()
JafarAbdi Sep 10, 2021
9c0da67
Remove todo
JafarAbdi Sep 10, 2021
7c46f0e
to_dict: Only add the loaded parameters
JafarAbdi Sep 10, 2021
1aeedfe
clean-up
JafarAbdi Sep 10, 2021
5e48ccd
Use parameter namespace for servo params
JafarAbdi Sep 10, 2021
8cb9d6c
Run black
JafarAbdi Sep 10, 2021
4509ec6
Add ability to load cartesian_limits parameters
JafarAbdi Sep 10, 2021
7fc4554
Simplification
JafarAbdi Sep 13, 2021
da658d8
Use to_dict
JafarAbdi Sep 13, 2021
ae3a1ef
Fix cartesian limits' namespace
JafarAbdi Dec 20, 2021
e295d74
Apply Dave suggestions
JafarAbdi Dec 20, 2021
1eae514
Update
JafarAbdi Dec 20, 2021
7a5d000
Remove explicit file seperator
JafarAbdi Dec 20, 2021
476187a
Remove unused attribute
JafarAbdi Dec 20, 2021
f0f3dd4
Remove unused move_group attribute
JafarAbdi Dec 20, 2021
2d5b37c
Add comments
JafarAbdi Dec 20, 2021
ff079fd
Add author per Dave request
JafarAbdi Dec 20, 2021
04360fa
Simplify
JafarAbdi Dec 20, 2021
a03398d
Merge branch 'main' into pr-moveit_configs_utils
JafarAbdi Dec 22, 2021
f8d7d69
Merge branch 'main' into pr-moveit_configs_utils
JafarAbdi Dec 28, 2021
4df2930
Update moveit_configs_utils/moveit_configs_utils/moveit_configs_build…
JafarAbdi Dec 31, 2021
2d29ebb
Update moveit_configs_utils/moveit_configs_utils/moveit_configs_build…
JafarAbdi Dec 31, 2021
14d83dc
Merge branch 'main' into pr-moveit_configs_utils
JafarAbdi Dec 31, 2021
ee8a636
Merge branch 'main' into pr-moveit_configs_utils
JafarAbdi Jan 2, 2022
ca68801
Merge branch 'main' into pr-moveit_configs_utils
Jan 14, 2022
0159e48
Rename robot_name_moveit_configs
AndyZe Jan 14, 2022
bb87983
Merge branch 'main' into pr-moveit_configs_utils
JafarAbdi Jan 17, 2022
5144564
Update moveit2.repos
JafarAbdi Jan 20, 2022
56abbeb
Merge branch 'main' into pr-moveit_configs_utils
tylerjw Jan 20, 2022
28b6849
Fix package name
JafarAbdi Jan 21, 2022
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
8 changes: 8 additions & 0 deletions moveit2.repos
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ repositories:
type: git
url: https://github.com/ros-planning/moveit_msgs
version: 2.2.0
moveit_resources:
type: git
url: https://github.com/JafarAbdi/moveit_resources
version: pr-moveit_configs_utils
launch_param_builder:
type: git
url: https://github.com/PickNikRobotics/launch_param_builder
version: main
1 change: 1 addition & 0 deletions moveit_configs_utils/moveit_configs_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .moveit_configs_builder import MoveItConfigsBuilder, MoveItConfigs
Loading