From ead34499ef973496745d83c04e72a4c6e6227a7a Mon Sep 17 00:00:00 2001 From: Steve Wagner Date: Fri, 9 Feb 2024 10:58:15 +0100 Subject: [PATCH] Add comments --- components/samsung_ac/protocol_non_nasa.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/samsung_ac/protocol_non_nasa.cpp b/components/samsung_ac/protocol_non_nasa.cpp index 6a87b0e2..cff29071 100644 --- a/components/samsung_ac/protocol_non_nasa.cpp +++ b/components/samsung_ac/protocol_non_nasa.cpp @@ -504,7 +504,7 @@ namespace esphome } else if (nonpacket_.cmd == NonNasaCommand::CmdF8) { - // After cmd F8 (src:c8 dst:f0) is a lage gap in communication, time to send data + // After cmd F8 (src:c8 dst:f0) is a lage gap in communication, time to send data. Some systems did not sent that. if (nonpacket_.src == "c8" && nonpacket_.dst == "f0") { // the communication needs a delay from cmdf8 to send the data. @@ -515,7 +515,7 @@ namespace esphome } else if (nonpacket_.cmd == NonNasaCommand::CmdC6) { - // If the control status is set we can send also + // Some systems send a control message. It seems its possible to request that (SNET does that). if (nonpacket_.src == "c8" && nonpacket_.dst == "d0" && nonpacket_.commandC6.control_status == true) { send_requests(target, 20);