$darkmode
steering_actuator.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2022 Robert Bosch GmbH
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  * SPDX-License-Identifier: Apache-2.0
17  */
22 #pragma once
23 #ifndef CLOE_COMPONENT_STEERING_ACTUATOR_HPP_
24 #define CLOE_COMPONENT_STEERING_ACTUATOR_HPP_
25 
26 #include <cloe/component/actuator.hpp> // for Actuator
27 #include <fable/json.hpp> // for Json
28 
29 namespace cloe {
30 
35  double steering_angle_front{0.0};
36 
40  double steering_angle_rear{0.0};
41 
42  friend void to_json(Json& j, const SteeringRequest& s) {
43  j = Json{
44  {"steering_angle_front", s.steering_angle_front},
45  {"steering_angle_rear", s.steering_angle_rear},
46  };
47  }
48 };
49 
50 class SteeringActuator : public Actuator<SteeringRequest> {
51  public:
52  using Actuator::Actuator;
53  SteeringActuator() : Actuator("steering_actuator") {}
54  virtual ~SteeringActuator() noexcept = default;
55 };
56 
57 } // namespace cloe
58 
59 #endif // CLOE_COMPONENT_STEERING_ACTUATOR_HPP_
Definition: actuator.hpp:33
double steering_angle_front
Definition: steering_actuator.hpp:35
Definition: coordinator.hpp:36
double steering_angle_rear
Definition: steering_actuator.hpp:40
Definition: steering_actuator.hpp:31
Definition: steering_actuator.hpp:50