forked from enesbcs/ESPEasyPluginPlayground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_P149_MHZ19.ino
190 lines (168 loc) · 6.37 KB
/
_P149_MHZ19.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
*
* This plug in is written by Dmitry (rel22 ___ inbox.ru)
* Plugin is based upon SenseAir plugin by Daniel Tedenljung info__AT__tedenljungconsulting.com
*
* This plugin reads the CO2 and Temperateure values from MH-Z19 NDIR Sensor
* DevicePin1 - is RX for ESP
* DevicePin2 - is TX for ESP
*/
#define PLUGIN_149
#define PLUGIN_ID_149 149
#define PLUGIN_NAME_149 "CO2 Sensor - MH-Z19"
#define PLUGIN_VALUENAME1_149 "PPM"
#define PLUGIN_VALUENAME2_149 "Temperature"
#define PLUGIN_READ_TIMEOUT 3000
#include <SoftwareSerial.h>
SoftwareSerial * Plugin_149_S8;
unsigned long Plugin_149_start;
boolean Plugin_149_init = false;
const int Plugin_149_warmUpTime = 180000; // 3 minutes in ms
// 9-bytes CMD PPM read command
byte mhzCmd[9] = { 0xFF, 0x01, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79 };
byte mhzResp[9]; // 9 bytes bytes response
boolean Plugin_149(byte function, struct EventStruct * event, String& string)
{
bool success = false;
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_149;
Device[deviceCount].Type = DEVICE_TYPE_DUAL;
Device[deviceCount].VType = SENSOR_TYPE_DUAL;
Device[deviceCount].Ports = 0;
Device[deviceCount].PullUpOption = false;
Device[deviceCount].InverseLogicOption = false;
Device[deviceCount].FormulaOption = true;
Device[deviceCount].ValueCount = 2;
Device[deviceCount].SendDataOption = true;
Device[deviceCount].TimerOption = true;
Device[deviceCount].GlobalSyncOption = true;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_149);
break;
}
case PLUGIN_GET_DEVICEVALUENAMES:
{
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[0], PSTR(PLUGIN_VALUENAME1_149));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[1], PSTR(PLUGIN_VALUENAME2_149));
break;
}
case PLUGIN_WEBFORM_LOAD:
{
addFormNote(string, F("1st GPIO connects to sensor TX pin. 2nd GPIO connects to sensor RX pin."));
success = true;
break;
}
case PLUGIN_INIT:
{
if (Settings.TaskDevicePin1[event->TaskIndex] != -1 && Settings.TaskDevicePin2[event->TaskIndex] != -1)
{
Plugin_149_S8 = new SoftwareSerial(Settings.TaskDevicePin1[event->TaskIndex], Settings.TaskDevicePin2[event->TaskIndex]);
Plugin_149_S8->begin(9600);
Plugin_149_start = millis();
Plugin_149_init = false; // force warmup period
String log = F("MHZ19: Init OK ");
addLog(LOG_LEVEL_INFO, log);
}
success = true;
break;
}
case PLUGIN_READ:
{
if (Plugin_149_init)
{
// send read PPM command
int nbBytesSent = Plugin_149_S8->write(mhzCmd, 9);
if (nbBytesSent != 9)
{
String log = F("MHZ19: Error, nb bytes sent != 9 : ");
log += nbBytesSent;
addLog(LOG_LEVEL_INFO, log);
}
// get response
memset(mhzResp, 0, 9);
long start = millis();
int counter = 0;
while (((millis() - start) < PLUGIN_READ_TIMEOUT) && (counter < 9))
{
if (Plugin_149_S8->available() > 0)
{
mhzResp[counter++] = Plugin_149_S8->read();
}
else
{
delay(10);
}
}
if (counter < 9)
{
String log = F("MHZ19: Error, timeout while trying to read");
addLog(LOG_LEVEL_INFO, log);
}
unsigned int ppm = 0;
int temperature = 0;
int i;
byte crc = 0;
for (i = 1; i < 8; i++) crc += mhzResp[i];
crc = 255 - crc;
crc++;
if (!(mhzResp[0] == 0xFF && mhzResp[1] == 0x86 && mhzResp[8] == crc) )
{
String log = F("MHZ19: Read error : CRC = ");
log += String(crc);
log += " / ";
log += String(mhzResp[8]);
log += " bytes read => ";
for (i = 0; i < 9; i++)
{
log += mhzResp[i];
log += "/";
}
addLog(LOG_LEVEL_ERROR, log);
success = false;
break;
}
else
{
// calculate CO2 PPM
unsigned int mhzRespHigh = (unsigned int) mhzResp[2];
unsigned int mhzRespLow = (unsigned int) mhzResp[3];
ppm = (256 * mhzRespHigh) + mhzRespLow;
temperature = (unsigned int) mhzResp[4] - 40;
}
UserVar[event->BaseVarIndex] = (float) ppm;
UserVar[event->BaseVarIndex + 1] = temperature;
String log = F("MHZ19: PPM value: ");
log += ppm;
addLog(LOG_LEVEL_INFO, log);
log = F("MH-Z19: Temperature: ");
log += temperature;
addLog(LOG_LEVEL_INFO, log);
success = true;
break;
}
else if (millis() - Plugin_149_start >= Plugin_149_warmUpTime)
{
Plugin_149_init = true;
String log = F("MH-Z19 : Warmup Complete");
addLog(LOG_LEVEL_DEBUG, log);
}
else
{
// wait for warmup
String log = F("MH-Z19 : warming up (seconds) : ");
log += ((millis() - Plugin_149_start) / 1000);
log += F(" of ");
log += Plugin_149_warmUpTime/1000;
addLog(LOG_LEVEL_DEBUG, log);
}
break;
}
}
return success;
} // Plugin_149