From b3db04a3d300838c1a3154eed77dc6220d5655eb Mon Sep 17 00:00:00 2001
From: G-Two <7310260+G-Two@users.noreply.github.com>
Date: Tue, 18 Feb 2025 12:30:03 -0500
Subject: [PATCH] Increase default repeat delay for Toto remote transmitter
 protocol (#8265)

---
 esphome/components/remote_base/toto_protocol.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/esphome/components/remote_base/toto_protocol.h b/esphome/components/remote_base/toto_protocol.h
index e62714bbbf..6a635b0f7c 100644
--- a/esphome/components/remote_base/toto_protocol.h
+++ b/esphome/components/remote_base/toto_protocol.h
@@ -36,7 +36,7 @@ template<typename... Ts> class TotoAction : public RemoteTransmitterActionBase<T
     data.rc_code_2 = this->rc_code_2_.value(x...);
     data.command = this->command_.value(x...);
     this->set_send_times(this->send_times_.value_or(x..., 3));
-    this->set_send_wait(this->send_wait_.value_or(x..., 32000));
+    this->set_send_wait(this->send_wait_.value_or(x..., 36000));
     TotoProtocol().encode(dst, data);
   }
 };