GeorgeNegret / My_Gripper

3d printed wifi gripper , MoveIt2, micro-ROS , esp32
7 stars 2 forks source link

Error find_package(serial REQUIRED) #1

Closed LuisYordano closed 1 year ago

LuisYordano commented 1 year ago

Hi @GeorgeNegret.

When I compile the My_Gripper package, I get an error from the serial package:


--- stderr: wifi_gripper_driver
CMake Error at CMakeLists.txt:14 (find_package): By not providing "Findserial.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "serial", but CMake did not find one.

Could not find a package configuration file provided by "serial" with any of the following names:

serialConfig.cmake
serial-config.cmake

Add the installation prefix of "serial" to CMAKE_PREFIX_PATH or set "serial_DIR" to a directory containing one of the above files. If "serial" provides a separate development package or SDK, be sure it has been installed.


serial_error


Could you indicate the command or link to correctly install the serial package.

I thank you in advance for your answer.

GeorgeNegret commented 1 year ago

the Serial package is no longer needed , I have updated wifi_gripper_driver

LuisYordano commented 1 year ago

Now when I run the commands the following happens:


micro-ros-agent udp4 -p 9999 -v6 (everything correct)

1

ros2 launch wifi_gripper_driver wifi_gripper_control.launch.py (everything correct)

2 3

ros2 launch my_gripper_moveit_config ur_wifi_gripper_moveit.launch.py ur_type:=ur10e

4


The package does not exist : ur_moveit_config


You could update your repository with the missing packages or files.

I thank you in advance for your answer.

GeorgeNegret commented 1 year ago

To run the my gripper on Moveit you need to launch wifi_gripper_moveit.launch.py .

To run UR robot with the my gripper attached (ur_wifi_gripper_moveit.launch.py ) you need to install : https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver.git

LuisYordano commented 1 year ago

Thanks @GeorgeNegret.