MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / sendBoseWave

Method sendBoseWave

src/ir_BoseWave.hpp:55–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53 ************************************/
54
55void 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
62bool IRrecv::decodeBoseWave() {
63

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected