mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 06:58:11 +01:00
Log calibration results at level INFO (#4240)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
parent
9922eb83e2
commit
878155a03d
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ void SenseAirComponent::background_calibration_result() {
|
|||
}
|
||||
|
||||
// Check if 5th bit (register CI6) is set
|
||||
ESP_LOGD(TAG, "SenseAir Result=%s (%02x%02x%02x %02x%02x %02x%02x)", (response[4] & 0b100000) != 0 ? "OK" : "NOT_OK",
|
||||
ESP_LOGI(TAG, "SenseAir Result=%s (%02x%02x%02x %02x%02x %02x%02x)", (response[4] & 0b100000) != 0 ? "OK" : "NOT_OK",
|
||||
response[0], response[1], response[2], response[3], response[4], response[5], response[6]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue