Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Use ros sports game controller msg #209

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion bitbots_localization/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,4 @@ install(DIRECTORY config DESTINATION share/${PROJECT_NAME})
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
install(TARGETS localization DESTINATION lib/${PROJECT_NAME})


ament_package()
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from bitbots_msgs.msg import GameState
from game_controller_hl_interfaces.msg import GameState

from bitbots_localization_handler.localization_dsd.decisions import AbstractLocalizationDecisionElement

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@

import rclpy
from ament_index_python import get_package_share_directory
from bitbots_msgs.msg import GameState, RobotControlState
from bitbots_msgs.msg import RobotControlState
from dynamic_stack_decider.dsd import DSD
from game_controller_hl_interfaces.msg import GameState
from geometry_msgs.msg import PoseWithCovarianceStamped
from rclpy.callback_groups import MutuallyExclusiveCallbackGroup, ReentrantCallbackGroup
from rclpy.executors import MultiThreadedExecutor
Expand Down
1 change: 1 addition & 0 deletions bitbots_localization_handler/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<depend>bitbots_msgs</depend>
<depend>bitbots_utils</depend>
<depend>dynamic_stack_decider</depend>
<depend>game_controller_hl_interfaces</depend>
<depend>geometry_msgs</depend>
<depend>python3-numpy</depend>
<depend>rclpy</depend>
Expand Down
Loading