mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
[SM300D2] Reduce log severity for successful reads (#3955)
This commit is contained in:
parent
4bcfeb6e33
commit
f8640cf2cd
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void SM300D2Sensor::update() {
|
|||
|
||||
this->status_clear_warning();
|
||||
|
||||
ESP_LOGW(TAG, "Successfully read SM300D2 data");
|
||||
ESP_LOGD(TAG, "Successfully read SM300D2 data");
|
||||
|
||||
const uint16_t co2 = (response[2] * 256) + response[3];
|
||||
const uint16_t formaldehyde = (response[4] * 256) + response[5];
|
||||
|
|
Loading…
Reference in a new issue