* Here you can put your raw data, even one with "wrong" checksum. * @param aRawData The lowest 28 (LG_BITS) bit of this value are sent MSB first. * @param aNumberOfRepeats If < 0 then only a special repeat frame will be sent. */
| 246 | * @param aNumberOfRepeats If < 0 then only a special repeat frame will be sent. |
| 247 | */ |
| 248 | void IRsend::sendLGRaw(uint32_t aRawData, int_fast8_t aNumberOfRepeats) { |
| 249 | sendPulseDistanceWidth_P(&LGProtocolConstants, aRawData, LG_BITS, aNumberOfRepeats); |
| 250 | } |
| 251 | |
| 252 | bool IRrecv::decodeLGMSB(decode_results *aResults) { |
| 253 | unsigned int offset = 1; // Skip first space |
nothing calls this directly
no outgoing calls
no test coverage detected