Skip to content

Commit

Permalink
fix control status logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Feb 6, 2024
1 parent 4afe1c6 commit 0295991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/samsung_ac/protocol_non_nasa.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace esphome
bool control_status = false;
std::string to_string()
{
return "control_status:" + control_status;
return "control_status:" + std::to_string(control_status);
};
};

Expand Down

0 comments on commit 0295991

Please sign in to comment.