File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ Topic: co2-meter/`{device ID}`/out/`{command}`
97
97
| network.wifiSsid | SSID of connected wifi | string |
98
98
| network.ip | ip address of the module | string |
99
99
| co2.isPreheating | TRUE if the sensor is preheated | boolean |
100
- | co2.isReady | ignore | boolean |
101
100
| co2.temperature | temperature from sensor (in °C) | number |
102
101
| co2.ppm | CO2 concentration in the air (in ppm) | number |
103
102
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ extern "C"
30
30
#define DEVICE_ID (Sprintf(" %06" PRIx64, ESP.getEfuseMac() >> 24 )) // unique device ID
31
31
#define uS_TO_S_FACTOR 1000000 // Conversion factor for micro seconds to seconds
32
32
33
- String version = " 1.1.2 " ;
33
+ String version = " 1.1.3 " ;
34
34
35
35
AsyncMqttClient mqttClient;
36
36
@@ -154,7 +154,6 @@ void sendInfo()
154
154
// CO2 meter
155
155
JsonObject co2Meter = doc.createNestedObject (" co2" );
156
156
co2Meter[" isPreheating" ] = co2Sensor.isPreHeating ();
157
- co2Meter[" isReady" ] = co2Sensor.isReady ();
158
157
co2Meter[" temperature" ] = lastTemperature;
159
158
co2Meter[" ppm" ] = lastCo2Value > 0 ? lastCo2Value : 0 ;
160
159
You can’t perform that action at this time.
0 commit comments