-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensor_manager.h
105 lines (77 loc) · 2.47 KB
/
sensor_manager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*!
* @file sensor_manager.h v1.0
* @Copyright © 2018 Kazushi Kurasawa
* @date 2018.11.16
*
* Released under the MIT license.
* see https://opensource.org/licenses/MIT
*/
#ifndef NEWZUZUMOUSE_SENSORMANAGER_H
#define NEWZUZUMOUSE_SENSORMANAGER_H
#include "deftype.h"
#include "mbed.h"
#include "sensor.h"
#include "vector.h"
#include "../defines.h"
#define MEAN_SIZE 20 //平均値を取るための、センサ距離取得回数
class SensorManager {
DistanceSensor left_sensor, front_sensor, right_sensor;
public:
SensorManager(PinName _left, PinName _front, PinName _right):left_sensor(_left), front_sensor(_front), right_sensor(_right){
};
/**
* @fn 左センサが閾値を超えているかで、壁の設置の有無を返す
*/
inline bool is_opened_left_wall() {
int32_t mean=0;
//センサのノイズを打ち消すため、複数回の距離センサを作動させ、その平均値を取る
for (int i = 0; i < MEAN_SIZE; ++i) {
mean += left_sensor;
}
mean = mean / MEAN_SIZE;
return mean >= WALL_TH;
}
/**
* @fn 左センサが閾値を超えているかで、壁の設置の有無を返す
*/
inline bool is_opened_front_wall() {
int32_t mean =0;
//センサのノイズを打ち消すため、複数回の距離センサを作動させ、その平均値を取る
for (int i = 0; i < MEAN_SIZE; ++i) {
mean += front_sensor;
}
mean = mean / MEAN_SIZE;
return mean >= WALL_TH;
}
/**
* @fn 左センサが閾値を超えているかで、壁の設置の有無を返す
*/
inline bool is_opened_right_wall() {
int32_t mean = 0;
//センサのノイズを打ち消すため、複数回の距離センサを作動させ、その平均値を取る
for (int i = 0; i < MEAN_SIZE; ++i) {
mean += right_sensor;
}
mean = mean / MEAN_SIZE;
return mean >= WALL_TH;
}
/**
* @fn中央センサの壁検知距離を返す
*/
inline int get_front_wall_distance() {
return front_sensor;
}
/**
* @fn 左センサの壁検知距離を返す
*/
inline int get_left_wall_distance() {
return left_sensor;
}
/**
* @fn 右センサの壁検知距離を返す
*/
inline int get_right_wall_distance() {
return right_sensor;
}
};
#endif //NEWZUZUMOUSE_SENSORMANAGER_H