Compare commits

..

2 Commits

Author SHA1 Message Date
224b4f9ab0 Remove redundant MQTT subscribe 2026-03-23 18:58:29 +01:00
505ff1ac98 Update README 2026-03-11 16:20:59 +01:00
3 changed files with 6 additions and 5 deletions

View File

@@ -2,6 +2,10 @@
CO2 sensor that collects and sends its data via MQTT to a server. The board of the sensor is the Wemos D1 mini ESP32 and the sensor is a SCD41.
#+ATTR_HTML: :width 40%
[[./board.jpg]]
** Pinout of the board
#+ATTR_HTML: :width 40%
@@ -9,7 +13,7 @@ CO2 sensor that collects and sends its data via MQTT to a server. The board of t
** Dependencies
- [[https://github.com/Sensirion/arduino-i2c-scd4x][Sensirion I²C SCD4X Arduino Library]]
- [[https://github.com/knolleary/pubsubclient][PubSubClient]]
- [[https://github.com/marvinroger/async-mqtt-client][Async MQTT client]]
- [[https://github.com/bblanchon/ArduinoJson][ArduinoJSON]]
** Configuration

BIN
board.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@@ -32,10 +32,7 @@ void wlan_connection_handler(WiFiEvent_t event) {
}
}
void on_mqtt_connection(bool session) {
Serial.println("MQTT connected");
mqtt_client.subscribe(config->topic, 2);
};
void on_mqtt_connection(bool session) { Serial.println("MQTT connected"); };
void on_mqtt_disconnection(AsyncMqttClientDisconnectReason reason) {
Serial.println("MQTT disconnected");