-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathBresserWeatherSensorWaiting.ino
171 lines (156 loc) · 6.54 KB
/
BresserWeatherSensorWaiting.ino
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
///////////////////////////////////////////////////////////////////////////////////////////////////
// BresserWeatherSensorWaiting.ino
//
// Example for BresserWeatherSensorReceiver -
// Using getData() for reception of at least one complete data set from a sensor.
//
// getData() blocks until the data has been received or a timeout occurs.
//
// https://github.com/matthias-bs/BresserWeatherSensorReceiver
//
//
// created: 05/2022
//
//
// MIT License
//
// Copyright (c) 2022 Matthias Prinke
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// History:
//
// 20220523 Created from https://github.com/matthias-bs/Bresser5in1-CC1101
// 20220524 Moved code to class WeatherSensor
// 20220810 Changed to modified WeatherSensor class; fixed Soil Moisture Sensor Handling
// 20220815 Changed to modified WeatherSensor class; added support of multiple sensors
// 20221227 Replaced DEBUG_PRINT/DEBUG_PRINTLN by Arduino logging functions
// 20231027 Refactored sensor structure
// 20240504 Added board initialization
// 20240507 Added configuration of maximum number of sensors at run time
//
// ToDo:
// -
//
///////////////////////////////////////////////////////////////////////////////////////////////////
#include <Arduino.h>
#include "WeatherSensorCfg.h"
#include "WeatherSensor.h"
#include "InitBoard.h"
WeatherSensor ws;
void setup() {
Serial.begin(115200);
Serial.setDebugOutput(true);
initBoard();
ws.begin();
}
void loop()
{
// Clear all sensor data
ws.clearSlots();
// Attempt to receive entire data set with timeout of <xx> s
// Try to receive at least one complete set of data, even if
// data is distributed across multiple radio messages.
bool decode_ok = ws.getData(60000, DATA_COMPLETE);
if (!decode_ok) {
Serial.printf("Sensor timeout\n");
}
for (size_t i=0; i<ws.sensor.size(); i++) {
if (ws.sensor[i].valid) {
Serial.printf("Id: [%8X] Typ: [%X] Ch: [%d] St: [%d] Bat: [%-3s] RSSI: [%6.1fdBm] ",
(unsigned int)ws.sensor[i].sensor_id,
ws.sensor[i].s_type,
ws.sensor[i].chan,
ws.sensor[i].startup,
ws.sensor[i].battery_ok ? "OK " : "Low",
ws.sensor[i].rssi);
if (ws.sensor[i].s_type == SENSOR_TYPE_LIGHTNING) {
// Lightning Sensor
Serial.printf("Lightning Counter: [%3d] ", ws.sensor[i].lgt.strike_count);
if (ws.sensor[i].lgt.distance_km != 0) {
Serial.printf("Distance: [%2dkm] ", ws.sensor[i].lgt.distance_km);
} else {
Serial.printf("Distance: [----] ");
}
Serial.printf("unknown1: [0x%03X] ", ws.sensor[i].lgt.unknown1);
Serial.printf("unknown2: [0x%04X]\n", ws.sensor[i].lgt.unknown2);
}
else if (ws.sensor[i].s_type == SENSOR_TYPE_LEAKAGE) {
// Water Leakage Sensor
Serial.printf("Leakage: [%-5s]\n", (ws.sensor[i].leak.alarm) ? "ALARM" : "OK");
}
else if (ws.sensor[i].s_type == SENSOR_TYPE_AIR_PM) {
// Air Quality (Particular Matter) Sensor
Serial.printf("PM2.5: [%uµg/m³] ", ws.sensor[i].pm.pm_2_5);
Serial.printf("PM10: [%uµg/m³]\n", ws.sensor[i].pm.pm_10);
}
else if (ws.sensor[i].s_type == SENSOR_TYPE_SOIL) {
Serial.printf("Temp: [%5.1fC] ", ws.sensor[i].soil.temp_c);
Serial.printf("Moisture: [%2d%%]\n", ws.sensor[i].soil.moisture);
} else {
// Any other (weather-like) sensor is very similar
if (ws.sensor[i].w.temp_ok) {
Serial.printf("Temp: [%5.1fC] ", ws.sensor[i].w.temp_c);
} else {
Serial.printf("Temp: [---.-C] ");
}
if (ws.sensor[i].w.humidity_ok) {
Serial.printf("Hum: [%3d%%] ", ws.sensor[i].w.humidity);
}
else {
Serial.printf("Hum: [---%%] ");
}
if (ws.sensor[i].w.wind_ok) {
Serial.printf("Wmax: [%4.1fm/s] Wavg: [%4.1fm/s] Wdir: [%5.1fdeg] ",
ws.sensor[i].w.wind_gust_meter_sec,
ws.sensor[i].w.wind_avg_meter_sec,
ws.sensor[i].w.wind_direction_deg);
} else {
Serial.printf("Wmax: [--.-m/s] Wavg: [--.-m/s] Wdir: [---.-deg] ");
}
if (ws.sensor[i].w.rain_ok) {
Serial.printf("Rain: [%7.1fmm] ",
ws.sensor[i].w.rain_mm);
} else {
Serial.printf("Rain: [-----.-mm] ");
}
#if defined BRESSER_6_IN_1 || defined BRESSER_7_IN_1
if (ws.sensor[i].w.uv_ok) {
Serial.printf("UVidx: [%1.1f] ",
ws.sensor[i].w.uv);
}
else {
Serial.printf("UVidx: [-.-%%] ");
}
#endif
#ifdef BRESSER_7_IN_1
if (ws.sensor[i].w.light_ok) {
Serial.printf("Light: [%2.1fKlux] ",
ws.sensor[i].w.light_klx);
}
else {
Serial.printf("Light: [--.-Klux] ");
}
#endif
Serial.printf("\n");
}
}
}
delay(100);
} // loop()