Refactor motion sequence handling: remove old test script, update setup, and implement new runner with configuration support

- Deleted obsolete `test_motion_sequence.py` file.
- Updated `setup.py` to remove references to the old test script and motion configuration file.
- Added `motion_sequence_config.json` to define home position and waypoints for the robot.
- Introduced `motion_sequence_runner.py` to execute motion sequences based on the new configuration format, supporting both joint and pose movements.
This commit is contained in:
Даниил Грабарь
2026-05-26 16:09:41 +10:00
parent a84cfde96c
commit a4d318fceb
6 changed files with 138 additions and 984 deletions
+11
View File
@@ -43,5 +43,16 @@ install(PROGRAMS
RENAME move_to_pose_server
)
install(PROGRAMS
scripts/motion_sequence_runner.py
DESTINATION lib/${PROJECT_NAME}
RENAME motion_sequence_runner
)
install(FILES
scripts/motion_sequence_config.json
DESTINATION share/${PROJECT_NAME}
)
ament_package()