Skip to content

Commit

Permalink
corrected python launch file
Browse files Browse the repository at this point in the history
  • Loading branch information
VincidaB committed Apr 29, 2024
1 parent 674118e commit 40bcb6a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion actuators_rppico_hardware_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16)
project(actuators_rppico_h_i LANGUAGES CXX)

if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
add_compile_options(-Wall -Wextra )
add_compile_options(-Wall -Wextra -Wno-unused-variable)
endif()

# find dependencies
Expand Down
9 changes: 9 additions & 0 deletions src/ezbot_robot/launch/real_robot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,16 @@ def generate_launch_description():

actuators_spawner = Node(
package='controller_manager',
executable='spawner',
arguments=['actuator_controller'],
)

delayed_actuators_spawner = TimerAction(
period=1.0,
actions=[actuators_spawner],
)


imu_node = Node(
package='ros_qwiic_icm_20948',
executable='ros_qwiic_icm_20948',
Expand Down Expand Up @@ -133,6 +141,7 @@ def generate_launch_description():
delayed_joint_broad_spawner,
imu_node,
delayed_imu_filter,
delayed_actuators_spawner,
#joystick,

])

0 comments on commit 40bcb6a

Please sign in to comment.