$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 
24 #include <cloe/component/actuator.hpp> // for Actuator
25 #include <fable/json.hpp> // for Json
26 
27 namespace cloe {
28 
33  double steering_angle_front{0.0};
34 
38  double steering_angle_rear{0.0};
39 
40  friend void to_json(fable::Json& j, const SteeringRequest& s) {
41  j = fable::Json{
42  {"steering_angle_front", s.steering_angle_front},
43  {"steering_angle_rear", s.steering_angle_rear},
44  };
45  }
46 };
47 
48 class SteeringActuator : public Actuator<SteeringRequest> {
49  public:
50  using Actuator::Actuator;
51  SteeringActuator() : Actuator("steering_actuator") {}
52  virtual ~SteeringActuator() noexcept = default;
53 };
54 
55 } // namespace cloe
Definition: actuator.hpp:32
Definition: steering_actuator.hpp:48
nlohmann::json Json
Definition: fable_fwd.hpp:35
Definition: steering_actuator.hpp:29
double steering_angle_rear
Definition: steering_actuator.hpp:38
double steering_angle_front
Definition: steering_actuator.hpp:33