| 53 | ************************************/ |
| 54 | |
| 55 | void IRsend::sendBoseWave(uint8_t aCommand, int_fast8_t aNumberOfRepeats) { |
| 56 | |
| 57 | // send 8 command bits and then 8 inverted command bits LSB first |
| 58 | uint16_t tData = ((~aCommand) << 8) | aCommand; |
| 59 | sendPulseDistanceWidth_P(&BoseWaveProtocolConstants, tData, BOSEWAVE_BITS, aNumberOfRepeats); |
| 60 | } |
| 61 | |
| 62 | bool IRrecv::decodeBoseWave() { |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected