Skip to content

Commit

Permalink
Fix idf build. value is long and not float
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Apr 22, 2024
1 parent 28d9d84 commit 8421e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/samsung_ac/protocol_nasa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ namespace esphome
}
case MessageNumber::VAR_in_temp_water_tank_f:
{
ESP_LOGW(TAG, "s:%s d:%s VAR_in_temp_water_tank_f %f", source.c_str(), dest.c_str(), message.value);
ESP_LOGW(TAG, "s:%s d:%s VAR_in_temp_water_tank_f %li", source.c_str(), dest.c_str(), message.value);
return;
}
case MessageNumber::VAR_out_sensor_airout:
Expand Down

0 comments on commit 8421e7b

Please sign in to comment.