MCPcopy Create free account
hub / github.com/DanielOgorchock/ST_Anything / send0

Method send0

Arduino/libraries/RCSwitch/RCSwitch.cpp:504–514  ·  view source on GitHub ↗

* Sends a "0" Bit * _ * Waveform Protocol 1: | |___ * _ * Waveform Protocol 2: | |__ */

Source from the content-addressed store, hash-verified

502 * Waveform Protocol 2: | |__
503 */
504void RCSwitch::send0() {
505 if (this->nProtocol == 1){
506 this->transmit(1,3);
507 }
508 else if (this->nProtocol == 2) {
509 this->transmit(1,2);
510 }
511 else if (this->nProtocol == 3) {
512 this->transmit(4,11);
513 }
514}
515
516/**
517 * Sends a "1" Bit

Callers 1

sendMethod · 0.95

Calls 1

transmitMethod · 0.95

Tested by

no test coverage detected