WirelessTransceiver.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2016 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 _GAZEBO_SENSORS_WIRELESSTRANSCEIVER_HH_
18 #define _GAZEBO_SENSORS_WIRELESSTRANSCEIVER_HH_
19 
20 #include <string>
21 #include <ignition/math/Pose3.hh>
22 
25 #include "gazebo/sensors/Sensor.hh"
26 #include "gazebo/util/system.hh"
27 
28 namespace gazebo
29 {
30  namespace sensors
31  {
34 
38  {
40  public: WirelessTransceiver();
41 
43  public: ~WirelessTransceiver();
44 
45  // Documentation inherited
46  public: virtual std::string Topic() const;
47 
48  // Documentation inherited
49  public: virtual void Load(const std::string &_worldName);
50 
51  // Documentation inherited
52  public: virtual void Init();
53 
54  // Documentation inherited
55  public: virtual void Fini();
56 
60  public: double GetGain() const GAZEBO_DEPRECATED(7.0);
61 
64  public: double Gain() const;
65 
69  public: double GetPower() const GAZEBO_DEPRECATED(7.0);
70 
73  public: double Power() const;
74 
77 
79  protected: double power = 14.5;
80 
82  protected: double gain = 2.5;
83 
85  protected: boost::weak_ptr<physics::Link> parentEntity;
86 
88  protected: ignition::math::Pose3d referencePose;
89  };
91  }
92 }
93 #endif
Sensor class for receiving wireless signals.
Definition: WirelessTransceiver.hh:37
transport::PublisherPtr pub
Publisher to publish propagation model data.
Definition: WirelessTransceiver.hh:76
Forward declarations for transport.
boost::shared_ptr< Publisher > PublisherPtr
Definition: TransportTypes.hh:49
#define GAZEBO_DEPRECATED(version)
Definition: CommonTypes.hh:48
default namespace for gazebo
boost::weak_ptr< physics::Link > parentEntity
Parent entity which the sensor is attached to.
Definition: WirelessTransceiver.hh:85
ignition::math::Pose3d referencePose
Sensor reference pose.
Definition: WirelessTransceiver.hh:88
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Base class for sensors.
Definition: Sensor.hh:50
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:59