first commit to new branch

This commit is contained in:
Christopher Herr 2023-03-25 15:45:55 +01:00
parent 41d1ea87ad
commit b0a370b65d
4 changed files with 17 additions and 8 deletions

View File

@ -36,13 +36,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/CustomMsg1.msg"
"msg/CustomMsg2.msg"
"srv/CustomSrv1.srv"
"srv/StateMachineSrv.srv"
"srv/InclineControlSRV.srv"
"srv/MosfetControlSRV.srv"
"srv/PitchControlSRV.srv"
"srv/RotationControlSRV.srv"
"srv/SensorSRV.srv"
"srv/WatchdogSRV.srv"
"action/TestACT.action"
DEPENDENCIES builtin_interfaces
)

View File

@ -0,0 +1,8 @@
#Goal
int8 number
---
#Response/Result
bool success
---
#Feedback
int8 current_number

View File

@ -13,10 +13,14 @@
<!-- ADD THESE LINES: START HERE -->
<build_depend>builtin_interfaces</build_depend>
<build_depend>rosidl_default_generators</build_depend>
<buildtool_depend>rosidl_default_generators</buildtool_depend>
<depend>action_msgs</depend>
<exec_depend>builtin_interfaces</exec_depend>
<exec_depend>rosidl_default_runtime</exec_depend>

View File

@ -25,7 +25,10 @@ setup(
'srvhost = pubsub.service_host:main',
'srvclient = pubsub.service_client:main',
'smhost = pubsub.statemachine_host_example:main',
'smclient = pubsub.statemachine_client_example:main'
'smclient = pubsub.statemachine_client_example:main',
'actclient = just_ros_test_stuff.client_example:main',
'actserver = just_ros_test_stuff.server_example:main',
'actsub = just_ros_test_stuff.sub:main',
],
},
)