EV3RT C++ API Reference  Version 1.0
An RTOS-based development platform for LEGO Mindstorms EV3.
SonarSensor.h
1 //
2 // SonarSensor.h
3 //
4 // Copyright (c) 2015-2016 Embedded Technology Software Design Robot Contest
5 //
6 
7 #ifndef EV3CPPAPI_SONARSENSOR_H_
8 #define EV3CPPAPI_SONARSENSOR_H_
9 
10 #include "Sensor.h"
11 
12 namespace ev3api {
16 class SonarSensor: public Sensor
17 {
18 public:
24  explicit SonarSensor(ePortS port);
25 
31  virtual ~SonarSensor(void);
32 
38  int16_t getDistance(void) const;
39 
46  bool listen(void) const;
47 }; // class SonarSensor
48 } // namespace ev3api
49 
50 #endif // ! EV3CPPAPI_SONARSENSOR_H_
SonarSensor(ePortS port)
Definition: Clock.h:12
int16_t getDistance(void) const
ePortS
Definition: Port.h:18
virtual ~SonarSensor(void)
Definition: Sensor.h:18
bool listen(void) const
Definition: SonarSensor.h:16