1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

Increase default repeat delay for Toto remote transmitter protocol (#8265)

This commit is contained in:
G-Two
2025-02-18 12:30:03 -05:00
committed by GitHub
parent 56034e3e79
commit b3db04a3d3

View File

@@ -36,7 +36,7 @@ template<typename... Ts> class TotoAction : public RemoteTransmitterActionBase<T
data.rc_code_2 = this->rc_code_2_.value(x...); data.rc_code_2 = this->rc_code_2_.value(x...);
data.command = this->command_.value(x...); data.command = this->command_.value(x...);
this->set_send_times(this->send_times_.value_or(x..., 3)); 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); TotoProtocol().encode(dst, data);
} }
}; };