diff --git a/ampel-firmware/co2_sensor.cpp b/ampel-firmware/co2_sensor.cpp index 9a733201a9554d2b2d62398b916efb1009d7016a..2cf89e628ccaf32b14153d5cfa9d4bbfe57a5775 100644 --- a/ampel-firmware/co2_sensor.cpp +++ b/ampel-firmware/co2_sensor.cpp @@ -73,11 +73,12 @@ namespace sensor { * SDA --- SDA (GPIO21) //NOTE: GPIO1 would be more convenient (right next to GPO3) */ #endif + Serial.println(F("Sensor : Sensirion SCD30")); Serial.println(); scd30.enableDebugging(); // Prints firmware version in the console. if (!scd30.begin(config::auto_calibrate_sensor)) { - Serial.println(F("ERROR - CO2 sensor not detected. Please check wiring!")); + Serial.println(F("ERROR - Sensirion SCD30 not detected. Please check wiring!")); led_effects::showKITTWheel(color::red, 30); ESP.restart(); }