Skip to content

Commit

Permalink
fix indetation
Browse files Browse the repository at this point in the history
  • Loading branch information
north3221 committed Jul 24, 2024
1 parent 4195b48 commit 4afa749
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/samsung_ac/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace esphome
virtual void set_target_temperature(const std::string address, float value) = 0;
virtual void set_outdoor_temperature(const std::string address, float value) = 0;
virtual void set_target_water_temperature(const std::string address, float value) = 0;
virtual void set_mode(const std::string address, Mode mode) = 0;
virtual void set_mode(const std::string address, Mode mode) = 0;
virtual void set_fanmode(const std::string address, FanMode fanmode) = 0;
virtual void set_altmode(const std::string address, AltMode altmode) = 0;
virtual void set_swing_vertical(const std::string address, bool vertical) = 0;
Expand Down
1 change: 1 addition & 0 deletions test/test_stuff.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ class DebugTarget : public MessageTarget
cout << "> " << address << " set_outdoor_temperature=" << to_string(value) << endl;
last_set_outdoor_temperature_address = address;
last_set_outdoor_temperature_value = value;

std::string last_set_target_water_temperature_address;
float last_set_target_water_temperature_value;
void set_target_water_temperature(const std::string address, float value)
Expand Down

0 comments on commit 4afa749

Please sign in to comment.