mirror of https://github.com/arendst/Tasmota.git
Merge pull request #10876 from barbudor/pr_rcswitch_2nd
fix wrong test on pulse
This commit is contained in:
commit
0556cf4eb5
|
@ -196,7 +196,7 @@ void CmndRfSend(void)
|
||||||
if (!protocol) { protocol = 1; }
|
if (!protocol) { protocol = 1; }
|
||||||
mySwitch.setProtocol(protocol);
|
mySwitch.setProtocol(protocol);
|
||||||
// if pulse is specified in the command, enforce the provided value (otherwise lib takes default)
|
// if pulse is specified in the command, enforce the provided value (otherwise lib takes default)
|
||||||
if (!pulse) { mySwitch.setPulseLength(pulse); }
|
if (pulse) { mySwitch.setPulseLength(pulse); }
|
||||||
if (!repeat) { repeat = 10; } // Default at init
|
if (!repeat) { repeat = 10; } // Default at init
|
||||||
mySwitch.setRepeatTransmit(repeat);
|
mySwitch.setRepeatTransmit(repeat);
|
||||||
if (!bits) { bits = 24; } // Default 24 bits
|
if (!bits) { bits = 24; } // Default 24 bits
|
||||||
|
|
Loading…
Reference in New Issue