We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc14311 commit 083ae01Copy full SHA for 083ae01
src/MHZ19.cpp
@@ -177,7 +177,7 @@ int MHZ19::getCO2(bool isunLimited, bool force)
177
return 0;
178
}
179
180
-float MHZ19::getCO2Raw(bool force)
+int MHZ19::getCO2Raw(bool force)
181
{
182
if (force == true)
183
provisioning(RAWCO2);
src/MHZ19.h
@@ -71,7 +71,7 @@ class MHZ19
71
int getCO2(bool isunLimited = true, bool force = true);
72
73
/* returns the "raw" CO2 value of unknown units */
74
- float getCO2Raw(bool force = true);
+ int getCO2Raw(bool force = true);
75
76
/* returns Raw CO2 value as a % of transmittance */ //<--- needs work to understand
77
float getTransmittance(bool force = true);
0 commit comments