Ignition Sensors

API Reference

5.0.0
AltimeterSensor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2019 Open Source Robotics Foundation
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 #ifndef IGNITION_SENSORS_ALTIMETERSENSOR_HH_
18 #define IGNITION_SENSORS_ALTIMETERSENSOR_HH_
19 
20 #include <memory>
21 
22 #include <sdf/sdf.hh>
23 
24 #include <ignition/common/SuppressWarning.hh>
25 #include <ignition/common/Time.hh>
26 
27 #include <ignition/sensors/config.hh>
28 #include <ignition/sensors/altimeter/Export.hh>
29 
31 
32 namespace ignition
33 {
34  namespace sensors
35  {
36  // Inline bracket to help doxygen filtering.
37  inline namespace IGNITION_SENSORS_VERSION_NAMESPACE {
38  //
40  class AltimeterSensorPrivate;
41 
46  class IGNITION_SENSORS_ALTIMETER_VISIBLE AltimeterSensor : public Sensor
47  {
49  public: AltimeterSensor();
50 
52  public: virtual ~AltimeterSensor();
53 
57  public: virtual bool Load(const sdf::Sensor &_sdf) override;
58 
62  public: virtual bool Load(sdf::ElementPtr _sdf) override;
63 
66  public: virtual bool Init() override;
67 
71  public: virtual bool IGN_DEPRECATED(4) Update(
72  const ignition::common::Time &_now) override;
73 
77  public: virtual bool Update(
78  const std::chrono::steady_clock::duration &_now) override;
79 
82  public: void SetVerticalReference(double _reference);
83 
86  public: double VerticalReference() const;
87 
90  public: void SetPosition(double _pos);
91 
95  public: double VerticalPosition() const;
96 
99  public: void SetVerticalVelocity(double _vel);
100 
103  public: double VerticalVelocity() const;
104 
105  IGN_COMMON_WARN_IGNORE__DLL_INTERFACE_MISSING
109  IGN_COMMON_WARN_RESUME__DLL_INTERFACE_MISSING
110  };
111  }
112  }
113 }
114 
115 #endif
Altimeter Sensor Class.
Definition: AltimeterSensor.hh:46
a base sensor class
Definition: Sensor.hh:60
Definition: AirPressureSensor.hh:32