Working arm

This commit is contained in:
Marcin M
2026-06-04 21:48:44 +02:00
commit 5b46c41031
34 changed files with 1073 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.8)
project(arm_harverster)
find_package(ament_cmake REQUIRED)
# Installs your Python script file and marks it executable
install(PROGRAMS
scripts/move_to_point.py
DESTINATION lib/${PROJECT_NAME}
)
# Installs your launch file directory
install(DIRECTORY launch
DESTINATION share/${PROJECT_NAME}
)
ament_package()