* Sends a "1" Bit * ___ * Waveform Protocol 1: | |_ * __ * Waveform Protocol 2: | |_ */
| 521 | * Waveform Protocol 2: | |_ |
| 522 | */ |
| 523 | void RCSwitch::send1() { |
| 524 | if (this->nProtocol == 1){ |
| 525 | this->transmit(3,1); |
| 526 | } |
| 527 | else if (this->nProtocol == 2) { |
| 528 | this->transmit(2,1); |
| 529 | } |
| 530 | else if (this->nProtocol == 3) { |
| 531 | this->transmit(9,6); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | |
| 536 | /** |