SMACC2
st_acquire_sensors.hpp
Go to the documentation of this file.
1// Copyright 2021 MyName/MyCompany Inc.
2// Copyright 2021 RobosoftAI Inc. (template)
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16/*****************************************************************************************************************
17 *
18 * Authors: Pablo Inigo Blasco, Brett Aldrich
19 *
20 *****************************************************************************************************************/
21
22#pragma once
23
24#include <sensor_msgs/msg/joint_state.h>
25
27{
28// SMACC2 classes
32using namespace smacc2;
33using namespace cl_move_group_interface;
35
36// STATE DECLARATION
37struct StAcquireSensors : smacc2::SmaccState<StAcquireSensors, SmTestMoveitUr5Sim>
38{
40
41 // TRANSITION TABLE
42 typedef boost::mpl::list<
44
46
47 // STATE FUNCTIONS
48 static void staticConfigure()
49 {
50 configure_orthogonal<OrArm, CbWaitTopicMessage<sensor_msgs::msg::JointState>>("/joint_states");
51 };
52
54};
55} // namespace sm_test_moveit_ur5_sim
boost::mpl::list< Transition< EvCbSuccess< CbWaitTopicMessage< sensor_msgs::msg::JointState >, OrArm >, StMoveJoints, SUCCESS > > reactions