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 Jesse Hills
parent d9b419eaf5
commit a973adda67
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

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.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);
}
};