IRremote
|
Macros | |
#define | FNV_PRIME_32 16777619 |
used for decodeHash() More... | |
#define | FNV_BASIS_32 2166136261 |
used for decodeHash() More... | |
Functions | |
const char * | getProtocolString (decode_type_t aProtocol) |
void | printIRResultShort (Print *aSerial, IRData *aIRDataPtr, bool aPrintRepeatGap) |
Function to print decoded result and flags in one line. More... | |
void | printIRResultShort (Print *aSerial, IRData *aIRDataPtr) |
uint8_t | bitreverseOneByte (uint8_t aValue) |
uint32_t | bitreverse32Bit (uint32_t aInput) |
void | IRReceiveTimerInterruptHandler () |
bool | matchTicks (uint16_t aMeasuredTicks, uint16_t aMatchValueMicros) |
Match function without compensating for marks exceeded or spaces shortened by demodulator hardware. More... | |
bool | MATCH (uint16_t measured_ticks, uint16_t desired_us) |
bool | matchMark (uint16_t aMeasuredTicks, uint16_t aMatchValueMicros) |
Compensate for marks exceeded by demodulator hardware. More... | |
bool | MATCH_MARK (uint16_t measured_ticks, uint16_t desired_us) |
bool | matchSpace (uint16_t aMeasuredTicks, uint16_t aMatchValueMicros) |
Compensate for spaces shortened by demodulator hardware. More... | |
bool | MATCH_SPACE (uint16_t measured_ticks, uint16_t desired_us) |
int | getMarkExcessMicros () |
Getter function for MARK_EXCESS_MICROS. More... | |
void | printActiveIRProtocols (Print *aSerial) |
IRrecv::IRrecv () | |
Instantiate the IRrecv class. More... | |
IRrecv::IRrecv (uint_fast8_t aReceivePin) __attribute__((deprecated("Please use the default IRrecv instance \"IrReceiver\" and IrReceiver.begin() | |
IRrecv::IRrecv (uint_fast8_t aReceivePin, uint_fast8_t aFeedbackLEDPin) __attribute__((deprecated("Please use the default IRrecv instance \"IrReceiver\" and IrReceiver.begin() | |
Instantiate the IRrecv class. More... | |
void | IRrecv::begin (uint_fast8_t aReceivePin, bool aEnableLEDFeedback=false, uint_fast8_t aFeedbackLEDPin=USE_DEFAULT_FEEDBACK_LED_PIN) |
Initializes the receive and feedback pin. More... | |
void | IRrecv::setReceivePin (uint_fast8_t aReceivePinNumber) |
Sets / changes the receiver pin number. More... | |
void | IRrecv::registerReceiveCompleteCallback (void(*aReceiveCompleteCallbackFunction)(void)) |
Sets the function to call if a complete protocol frame has arrived. More... | |
void | IRrecv::start () |
Start the receiving process. More... | |
void | IRrecv::restartTimer () |
void | IRrecv::enableIRIn () |
Alias for start(). More... | |
void | IRrecv::restartTimer (uint32_t aMicrosecondsToAddToGapCounter) |
Configures the timer and the state machine for IR reception. More... | |
void | IRrecv::restartTimerWithTicksToAdd (uint16_t aTicksToAddToGapCounter) |
Configures the timer and the state machine for IR reception. More... | |
void | IRrecv::restartAfterSend () |
Restarts receiver after send. More... | |
void | IRrecv::stop () |
Disables the timer for IR reception. More... | |
void | IRrecv::stopTimer () |
void | IRrecv::disableIRIn () |
Alias for stop(). More... | |
void | IRrecv::end () |
Alias for stop(). More... | |
bool | IRrecv::isIdle () |
Returns status of reception. More... | |
void | IRrecv::resume () |
Restart the ISR (Interrupt Service Routine) state machine, to enable receiving of the next IR frame. More... | |
void | IRrecv::initDecodedIRData () |
Is internally called by decode before calling decoders. More... | |
bool | IRrecv::available () |
Returns true if IR receiver data is available. More... | |
IRData * | IRrecv::read () |
Returns pointer to IrReceiver.decodedIRData if IR receiver data is available, else nullptr. More... | |
bool | IRrecv::decode () |
The main decode function, attempts to decode the recently receive IR signal. More... | |
bool | IRrecv::decodePulseDistanceWidthData (uint_fast8_t aNumberOfBits, IRRawlenType aStartOffset, uint16_t aOneMarkMicros, uint16_t aOneSpaceMicros, uint16_t aZeroMarkMicros, bool aMSBfirst) |
Decode pulse distance width protocols. More... | |
bool | IRrecv::decodePulseDistanceWidthData (uint_fast8_t aNumberOfBits, IRRawlenType aStartOffset, uint16_t aOneMarkMicros, uint16_t aZeroMarkMicros, uint16_t aOneSpaceMicros, uint16_t aZeroSpaceMicros, bool aMSBfirst) __attribute__((deprecated("Please use decodePulseDistanceWidthData() with 6 parameters."))) |
bool | IRrecv::decodePulseDistanceWidthDataStrict (uint_fast8_t aNumberOfBits, IRRawlenType aStartOffset, uint16_t aOneMarkMicros, uint16_t aZeroMarkMicros, uint16_t aOneSpaceMicros, uint16_t aZeroSpaceMicros, bool aMSBfirst) |
bool | IRrecv::decodePulseDistanceWidthData (PulseDistanceWidthProtocolConstants *aProtocolConstants, uint_fast8_t aNumberOfBits, IRRawlenType aStartOffset=3) |
Decode pulse distance protocols for PulseDistanceWidthProtocolConstants. More... | |
bool | IRrecv::decodePulseDistanceWidthData_P (PulseDistanceWidthProtocolConstants const *aProtocolConstantsPGM, uint_fast8_t aNumberOfBits, IRRawlenType aStartOffset=3) |
void | IRrecv::initBiphaselevel (uint_fast8_t aRCDecodeRawbuffOffset, uint16_t aBiphaseTimeUnit) |
uint_fast8_t | IRrecv::getBiphaselevel () |
Gets the level of one time interval (aBiphaseTimeUnit) at a time from the raw buffer. More... | |
uint_fast8_t | IRrecv::compare (uint16_t oldval, uint16_t newval) |
Compare two (tick) values for Hash decoder Use a tolerance of 20% to enable e.g. More... | |
bool | IRrecv::decodeHash () |
Decodes an arbitrary IR code to a 32-bit value. More... | |
bool | IRrecv::decodeHashOld (decode_results *aResults) |
bool | IRrecv::checkHeader (PulseDistanceWidthProtocolConstants *aProtocolConstants) |
bool | IRrecv::checkHeader_P (PulseDistanceWidthProtocolConstants const *aProtocolConstantsPGM) |
void | IRrecv::checkForRepeatSpaceTicksAndSetFlag (uint16_t aMaximumRepeatSpaceTicks) |
bool | IRrecv::checkForRecordGapsMicros (Print *aSerial) |
Checks if protocol is not detected and detected space between two transmissions is smaller than known value for protocols (Sony with around 24 ms) More... | |
static void | IRrecv::printActiveIRProtocols (Print *aSerial) |
bool | IRrecv::printIRResultShort (Print *aSerial, bool aCheckForRecordGapsMicros=true) |
Function to print values and flags of IrReceiver.decodedIRData in one line. More... | |
void | IRrecv::printDistanceWidthTimingInfo (Print *aSerial, DistanceWidthTimingInfoStruct *aDistanceWidthTimingInfo) |
uint8_t | IRrecv::getMaximumMarkTicksFromRawData () |
uint8_t | IRrecv::getMaximumSpaceTicksFromRawData () |
uint8_t | IRrecv::getMaximumTicksFromRawData (bool aSearchSpaceInsteadOfMark) |
uint32_t | IRrecv::getTotalDurationOfRawData () |
void | IRrecv::printIRSendUsage (Print *aSerial) |
Function to print values and flags of IrReceiver.decodedIRData in one line. More... | |
void | IRrecv::printIRResultMinimal (Print *aSerial) |
Function to print protocol number, address, command, raw data and repeat flag of IrReceiver.decodedIRData in one short line. More... | |
void | IRrecv::printIRDuration (Print *aSerial, bool aOutputMicrosecondsInsteadOfTicks) |
void | IRrecv::printIRResultRawFormatted (Print *aSerial, bool aOutputMicrosecondsInsteadOfTicks=true) |
Dump out the timings in IrReceiver.decodedIRData.rawDataPtr->rawbuf[] array 8 values per line. More... | |
void | IRrecv::compensateAndPrintIRResultAsCArray (Print *aSerial, bool aOutputMicrosecondsInsteadOfTicks=true) |
Dump out the IrReceiver.decodedIRData.rawDataPtr->rawbuf[] to be used as C definition for sendRaw(). More... | |
void | IRrecv::compensateAndStoreIRResultInArray (uint8_t *aArrayPtr) |
Store the decodedIRData to be used for sendRaw(). More... | |
void | IRrecv::printIRResultAsCVariables (Print *aSerial) |
Print results as C variables to be used for sendXXX() More... | |
const char * | IRrecv::getProtocolString () |
bool | IRrecv::decode_old (decode_results *aResults) |
Variables | |
const char string_Unknown[] | PROGMEM = "UNKNOWN" |
IRrecv | IrReceiver |
The receiver instance. More... | |
struct irparams_struct | irparams |
unsigned long | sMicrosAtLastStopTimer = 0 |
uint_fast8_t | sBiphaseDecodeRawbuffOffset |
uint16_t | sBiphaseCurrentTimingIntervals |
uint_fast8_t | sBiphaseUsedTimingIntervals |
uint16_t | sBiphaseTimeUnit |
const char *const | ProtocolNames [] |
#define FNV_BASIS_32 2166136261 |
used for decodeHash()
Definition at line 1077 of file IRReceive.hpp.
#define FNV_PRIME_32 16777619 |
used for decodeHash()
Definition at line 1076 of file IRReceive.hpp.
IRrecv::IRrecv | ( | ) |
Instantiate the IRrecv class.
Multiple instantiation is not supported.
IRReceivePin | Arduino pin to use. No sanity check is made. |
Definition at line 71 of file IRReceive.hpp.
IRrecv::IRrecv | ( | uint_fast8_t | aReceivePin | ) |
Definition at line 79 of file IRReceive.hpp.
IRrecv::IRrecv | ( | uint_fast8_t | aReceivePin, |
uint_fast8_t | aFeedbackLEDPin | ||
) |
Instantiate the IRrecv class.
Multiple instantiation is not supported.
aReceivePin | Arduino pin to use, where a demodulating IR receiver is connected. |
aFeedbackLEDPin | if 0, then take board specific FEEDBACK_LED_ON() and FEEDBACK_LED_OFF() functions |
Definition at line 92 of file IRReceive.hpp.
bool IRrecv::available | ( | ) |
Returns true if IR receiver data is available.
Definition at line 523 of file IRReceive.hpp.
void IRrecv::begin | ( | uint_fast8_t | aReceivePin, |
bool | aEnableLEDFeedback = false , |
||
uint_fast8_t | aFeedbackLEDPin = USE_DEFAULT_FEEDBACK_LED_PIN |
||
) |
Initializes the receive and feedback pin.
aReceivePin | The Arduino pin number, where a demodulating IR receiver is connected. |
aEnableLEDFeedback | if true / ENABLE_LED_FEEDBACK, then let the feedback led blink on receiving IR signal |
aFeedbackLEDPin | if 0 / USE_DEFAULT_FEEDBACK_LED_PIN, then take board specific FEEDBACK_LED_ON() and FEEDBACK_LED_OFF() functions |
Definition at line 293 of file IRReceive.hpp.
uint32_t bitreverse32Bit | ( | uint32_t | aInput | ) |
Definition at line 286 of file IRProtocol.hpp.
uint8_t bitreverseOneByte | ( | uint8_t | aValue | ) |
Definition at line 273 of file IRProtocol.hpp.
bool IRrecv::checkForRecordGapsMicros | ( | Print * | aSerial | ) |
Checks if protocol is not detected and detected space between two transmissions is smaller than known value for protocols (Sony with around 24 ms)
Definition at line 1327 of file IRReceive.hpp.
void IRrecv::checkForRepeatSpaceTicksAndSetFlag | ( | uint16_t | aMaximumRepeatSpaceTicks | ) |
Definition at line 1207 of file IRReceive.hpp.
bool IRrecv::checkHeader | ( | PulseDistanceWidthProtocolConstants * | aProtocolConstants | ) |
Definition at line 1164 of file IRReceive.hpp.
bool IRrecv::checkHeader_P | ( | PulseDistanceWidthProtocolConstants const * | aProtocolConstantsPGM | ) |
Definition at line 1183 of file IRReceive.hpp.
uint_fast8_t IRrecv::compare | ( | uint16_t | oldval, |
uint16_t | newval | ||
) |
Compare two (tick) values for Hash decoder Use a tolerance of 20% to enable e.g.
500 and 600 (NEC timing) to be equal
Definition at line 1083 of file IRReceive.hpp.
void IRrecv::compensateAndPrintIRResultAsCArray | ( | Print * | aSerial, |
bool | aOutputMicrosecondsInsteadOfTicks = true |
||
) |
Dump out the IrReceiver.decodedIRData.rawDataPtr->rawbuf[] to be used as C definition for sendRaw().
Compensate received values by MARK_EXCESS_MICROS, like it is done for decoding! Print ticks in 8 bit format to save space. Maximum is 255*50 microseconds = 12750 microseconds = 12.75 ms, which hardly ever occurs inside an IR sequence. Recording of IRremote anyway stops at a gap of RECORD_GAP_MICROS (5 ms).
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
aOutputMicrosecondsInsteadOfTicks | Output the (rawbuf_values * MICROS_PER_TICK) for better readability. |
Definition at line 1802 of file IRReceive.hpp.
void IRrecv::compensateAndStoreIRResultInArray | ( | uint8_t * | aArrayPtr | ) |
Store the decodedIRData to be used for sendRaw().
Compensate received values by MARK_EXCESS_MICROS, like it is done for decoding and store it in an array provided.
Maximum for uint8_t is 255*50 microseconds = 12750 microseconds = 12.75 ms, which hardly ever occurs inside an IR sequence. Recording of IRremote anyway stops at a gap of RECORD_GAP_MICROS (5 ms).
aArrayPtr | Address of an array provided by the caller. |
Definition at line 1858 of file IRReceive.hpp.
bool IRrecv::decode | ( | ) |
The main decode function, attempts to decode the recently receive IR signal.
The set of decoders used is determined by active definitions of the DECODE_<PROTOCOL> macros. Results of decoding are stored in IrReceiver.decodedIRData.* like e.g. IrReceiver.decodedIRData.command.
Definition at line 547 of file IRReceive.hpp.
bool IRrecv::decode_old | ( | decode_results * | aResults | ) |
Definition at line 1933 of file IRReceive.hpp.
bool IRrecv::decodeHash | ( | ) |
Decodes an arbitrary IR code to a 32-bit value.
Instead of decoding using a standard encoding scheme (e.g. Sony, NEC, RC5), the code is hashed to a 32-bit value.
The algorithm looks at the sequence of MARK and SPACE signals, and see if each one is shorter (0), the same length (1), or longer (2) than the previous MARK or SPACE. It hash the resulting sequence of 0's, 1's, and 2's to a 32-bit value. This will give a unique value for each different code (probably), for most code systems.
Uses FNV hash algorithm: http://isthe.com/chongo/tech/comp/fnv/#FNV-param Converts the raw code values into a 32-bit hash code. Hopefully this code is unique for each button. This isn't a "real" decoding, just an arbitrary value.
see: http://www.righto.com/2010/01/using-arbitrary-remotes-with-arduino.html
Definition at line 1110 of file IRReceive.hpp.
bool IRrecv::decodeHashOld | ( | decode_results * | aResults | ) |
Definition at line 1135 of file IRReceive.hpp.
bool IRrecv::decodePulseDistanceWidthData | ( | PulseDistanceWidthProtocolConstants * | aProtocolConstants, |
uint_fast8_t | aNumberOfBits, | ||
IRRawlenType | aStartOffset = 3 |
||
) |
Decode pulse distance protocols for PulseDistanceWidthProtocolConstants.
Definition at line 983 of file IRReceive.hpp.
bool IRrecv::decodePulseDistanceWidthData | ( | uint_fast8_t | aNumberOfBits, |
IRRawlenType | aStartOffset, | ||
uint16_t | aOneMarkMicros, | ||
uint16_t | aOneSpaceMicros, | ||
uint16_t | aZeroMarkMicros, | ||
bool | aMSBfirst | ||
) |
Decode pulse distance width protocols.
We only check the mark or space length of a 1, otherwise we always assume a 0!
We can have the following protocol timings PULSE_DISTANCE: Pause/spaces have different length and determine the bit value, longer space is 1. Pulses/marks can be constant, like NEC. PULSE_WIDTH: Pulses/marks have different length and determine the bit value, longer mark is 1. Pause/spaces can be constant, like Sony. PULSE_DISTANCE_WIDTH: Pulses/marks and pause/spaces have different length, often the bit length is constant, like MagiQuest. Can be decoded by PULSE_DISTANCE decoder.
Input is IrReceiver.decodedIRData.rawDataPtr->rawbuf[] Output is IrReceiver.decodedIRData.decodedRawData
Assume PULSE_DISTANCE if aOneMarkMicros == aZeroMarkMicros
aNumberOfBits | Number of bits to decode from decodedIRData.rawDataPtr->rawbuf[] array. |
aStartOffset | Offset in decodedIRData.rawDataPtr->rawbuf[] to start decoding. Must point to a mark. |
aOneMarkMicros | Checked if PULSE_WIDTH |
aZeroMarkMicros | Required for deciding if we have PULSE_DISTANCE. |
aOneSpaceMicros | Checked if PULSE_DISTANCE. |
aMSBfirst | If true send Most Significant Bit first, else send Least Significant Bit (lowest bit) first. |
Definition at line 731 of file IRReceive.hpp.
bool IRrecv::decodePulseDistanceWidthData | ( | uint_fast8_t | aNumberOfBits, |
IRRawlenType | aStartOffset, | ||
uint16_t | aOneMarkMicros, | ||
uint16_t | aZeroMarkMicros, | ||
uint16_t | aOneSpaceMicros, | ||
uint16_t | aZeroSpaceMicros, | ||
bool | aMSBfirst | ||
) |
Definition at line 791 of file IRReceive.hpp.
bool IRrecv::decodePulseDistanceWidthData_P | ( | PulseDistanceWidthProtocolConstants const * | aProtocolConstantsPGM, |
uint_fast8_t | aNumberOfBits, | ||
IRRawlenType | aStartOffset = 3 |
||
) |
Definition at line 991 of file IRReceive.hpp.
bool IRrecv::decodePulseDistanceWidthDataStrict | ( | uint_fast8_t | aNumberOfBits, |
IRRawlenType | aStartOffset, | ||
uint16_t | aOneMarkMicros, | ||
uint16_t | aZeroMarkMicros, | ||
uint16_t | aOneSpaceMicros, | ||
uint16_t | aZeroSpaceMicros, | ||
bool | aMSBfirst | ||
) |
Definition at line 856 of file IRReceive.hpp.
void IRrecv::disableIRIn | ( | ) |
Alias for stop().
Definition at line 462 of file IRReceive.hpp.
void IRrecv::enableIRIn | ( | ) |
Alias for start().
Definition at line 398 of file IRReceive.hpp.
void IRrecv::end | ( | ) |
Alias for stop().
Definition at line 468 of file IRReceive.hpp.
uint_fast8_t IRrecv::getBiphaselevel | ( | ) |
Gets the level of one time interval (aBiphaseTimeUnit) at a time from the raw buffer.
The RC5/6 decoding is easier if the data is broken into time intervals. E.g. if the buffer has mark for 2 time intervals and space for 1, successive calls to getBiphaselevel will return 1, 1, 0.
_ _ _ _ _ _ _ _ _ _ _ _ _ _____| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| | ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ Significant clock edge _ _ _ ___ _ ___ ___ _ - Mark
Data _____| |___| |_| |_| |_| |___| |___| |_| | - Data starts with a mark->space bit 1 0 0 0 1 1 0 1 0 1 1 - Space A mark to space at a significant clock edge results in a 1 A space to mark at a significant clock edge results in a 0 (for RC6) Returns current level [MARK or SPACE] or -1 for error (measured time interval is not a multiple of sBiphaseTimeUnit).
Definition at line 1030 of file IRReceive.hpp.
int getMarkExcessMicros | ( | ) |
Getter function for MARK_EXCESS_MICROS.
Definition at line 1318 of file IRReceive.hpp.
uint8_t IRrecv::getMaximumMarkTicksFromRawData | ( | ) |
Definition at line 1458 of file IRReceive.hpp.
uint8_t IRrecv::getMaximumSpaceTicksFromRawData | ( | ) |
Definition at line 1468 of file IRReceive.hpp.
uint8_t IRrecv::getMaximumTicksFromRawData | ( | bool | aSearchSpaceInsteadOfMark | ) |
Definition at line 1482 of file IRReceive.hpp.
const char * IRrecv::getProtocolString | ( | ) |
Definition at line 1920 of file IRReceive.hpp.
const char* getProtocolString | ( | decode_type_t | aProtocol | ) |
Definition at line 97 of file IRProtocol.hpp.
uint32_t IRrecv::getTotalDurationOfRawData | ( | ) |
Definition at line 1499 of file IRReceive.hpp.
void IRrecv::initBiphaselevel | ( | uint_fast8_t | aRCDecodeRawbuffOffset, |
uint16_t | aBiphaseTimeUnit | ||
) |
Definition at line 1008 of file IRReceive.hpp.
void IRrecv::initDecodedIRData | ( | ) |
Is internally called by decode before calling decoders.
Must be used to setup data, if you call decoders manually.
Definition at line 495 of file IRReceive.hpp.
void IRReceiveTimerInterruptHandler | ( | ) |
Definition at line 125 of file IRReceive.hpp.
bool IRrecv::isIdle | ( | ) |
Returns status of reception.
Definition at line 476 of file IRReceive.hpp.
bool MATCH | ( | uint16_t | measured_ticks, |
uint16_t | desired_us | ||
) |
Definition at line 1243 of file IRReceive.hpp.
bool MATCH_MARK | ( | uint16_t | measured_ticks, |
uint16_t | desired_us | ||
) |
Definition at line 1277 of file IRReceive.hpp.
bool MATCH_SPACE | ( | uint16_t | measured_ticks, |
uint16_t | desired_us | ||
) |
Definition at line 1311 of file IRReceive.hpp.
bool matchMark | ( | uint16_t | aMeasuredTicks, |
uint16_t | aMatchValueMicros | ||
) |
Compensate for marks exceeded by demodulator hardware.
Definition at line 1251 of file IRReceive.hpp.
bool matchSpace | ( | uint16_t | aMeasuredTicks, |
uint16_t | aMatchValueMicros | ||
) |
Compensate for spaces shortened by demodulator hardware.
Definition at line 1285 of file IRReceive.hpp.
bool matchTicks | ( | uint16_t | aMeasuredTicks, |
uint16_t | aMatchValueMicros | ||
) |
Match function without compensating for marks exceeded or spaces shortened by demodulator hardware.
Definition at line 1223 of file IRReceive.hpp.
|
static |
Definition at line 1352 of file IRReceive.hpp.
void printActiveIRProtocols | ( | Print * | aSerial | ) |
Definition at line 1360 of file IRReceive.hpp.
void IRrecv::printDistanceWidthTimingInfo | ( | Print * | aSerial, |
DistanceWidthTimingInfoStruct * | aDistanceWidthTimingInfo | ||
) |
Definition at line 1440 of file IRReceive.hpp.
void IRrecv::printIRDuration | ( | Print * | aSerial, |
bool | aOutputMicrosecondsInsteadOfTicks | ||
) |
Definition at line 1682 of file IRReceive.hpp.
void IRrecv::printIRResultAsCVariables | ( | Print * | aSerial | ) |
Print results as C variables to be used for sendXXX()
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
Definition at line 1881 of file IRReceive.hpp.
void IRrecv::printIRResultMinimal | ( | Print * | aSerial | ) |
Function to print protocol number, address, command, raw data and repeat flag of IrReceiver.decodedIRData in one short line.
Does not print a Newline / does not end with println().
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
Definition at line 1641 of file IRReceive.hpp.
void IRrecv::printIRResultRawFormatted | ( | Print * | aSerial, |
bool | aOutputMicrosecondsInsteadOfTicks = true |
||
) |
Dump out the timings in IrReceiver.decodedIRData.rawDataPtr->rawbuf[] array 8 values per line.
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
aOutputMicrosecondsInsteadOfTicks | Output the (rawbuf_values * MICROS_PER_TICK) for better readability. |
Definition at line 1704 of file IRReceive.hpp.
bool IRrecv::printIRResultShort | ( | Print * | aSerial, |
bool | aCheckForRecordGapsMicros = true |
||
) |
Function to print values and flags of IrReceiver.decodedIRData in one line.
Ends with println().
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
aCheckForRecordGapsMicros | If true, call CheckForRecordGapsMicros() which may do a long printout, which in turn may block the proper detection of repeats.* |
Definition at line 1431 of file IRReceive.hpp.
void printIRResultShort | ( | Print * | aSerial, |
IRData * | aIRDataPtr | ||
) |
Definition at line 167 of file IRProtocol.hpp.
void printIRResultShort | ( | Print * | aSerial, |
IRData * | aIRDataPtr, | ||
bool | aPrintRepeatGap | ||
) |
Function to print decoded result and flags in one line.
A static function to be able to print data to send or copied received data. Ends with println().
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
aIRDataPtr | Pointer to the data to be printed. |
aPrintRepeatGap | If true also print the gap before repeats. |
Definition at line 163 of file IRProtocol.hpp.
void IRrecv::printIRSendUsage | ( | Print * | aSerial | ) |
Function to print values and flags of IrReceiver.decodedIRData in one line.
do not print for repeats except IRDATA_FLAGS_IS_PROTOCOL_WITH_DIFFERENT_REPEAT. Ends with println(). !!!Attention: The result differs on a 8 bit or 32 bit platform!!!
aSerial | The Print object on which to write, for Arduino you can use &Serial. |
Definition at line 1516 of file IRReceive.hpp.
IRData * IRrecv::read | ( | ) |
Returns pointer to IrReceiver.decodedIRData if IR receiver data is available, else nullptr.
Definition at line 530 of file IRReceive.hpp.
void IRrecv::registerReceiveCompleteCallback | ( | void(*)(void) | aReceiveCompleteCallbackFunction | ) |
Sets the function to call if a complete protocol frame has arrived.
Definition at line 354 of file IRReceive.hpp.
void IRrecv::restartAfterSend | ( | ) |
Restarts receiver after send.
Is a NOP if sending does not require a timer.
Definition at line 439 of file IRReceive.hpp.
void IRrecv::restartTimer | ( | ) |
Definition at line 382 of file IRReceive.hpp.
void IRrecv::restartTimer | ( | uint32_t | aMicrosecondsToAddToGapCounter | ) |
Configures the timer and the state machine for IR reception.
Does not call resume()! We assume, that timer interrupts are disabled here, otherwise it makes no sense to use this functions. Therefore we do not need to guard the change of the volatile TickCounterForISR here :-). The tick counter value is already at 100 when decode() gets true, because of the 5000 us minimal gap defined in RECORD_GAP_MICROS. If TickCounterForISR is not adjusted with the value of the microseconds, the timer was stopped, it can happen, that a new IR frame is recognized as a repeat, because the value of RECORD_GAP_MICROS was not reached by TickCounterForISR counter before receiving the new IR frame.
aMicrosecondsToAddToGapCounter | To compensate for the amount of microseconds the timer was stopped / disabled. |
Definition at line 412 of file IRReceive.hpp.
void IRrecv::restartTimerWithTicksToAdd | ( | uint16_t | aTicksToAddToGapCounter | ) |
Configures the timer and the state machine for IR reception.
Does not call resume()!
aTicksToAddToGapCounter | To compensate for the amount of ticks the timer was stopped / disabled. |
Definition at line 424 of file IRReceive.hpp.
void IRrecv::resume | ( | ) |
Restart the ISR (Interrupt Service Routine) state machine, to enable receiving of the next IR frame.
Internal counting of gap timing is independent of StateForISR and therefore independent of call time of resume().
Definition at line 484 of file IRReceive.hpp.
void IRrecv::setReceivePin | ( | uint_fast8_t | aReceivePinNumber | ) |
Sets / changes the receiver pin number.
Definition at line 316 of file IRReceive.hpp.
void IRrecv::start | ( | ) |
Start the receiving process.
This configures the timer and the state machine for IR reception and enables the receive sample timer interrupt which consumes a small amount of CPU every 50 us.
Definition at line 364 of file IRReceive.hpp.
void IRrecv::stop | ( | ) |
Disables the timer for IR reception.
Definition at line 448 of file IRReceive.hpp.
void IRrecv::stopTimer | ( | ) |
Definition at line 455 of file IRReceive.hpp.
struct irparams_struct irparams |
Definition at line 59 of file IRReceive.hpp.
IRrecv IrReceiver |
The receiver instance.
Definition at line 59 of file IRReceive.hpp.
const char* const ProtocolNames [] PROGMEM = "UNKNOWN" |
Definition at line 46 of file IRProtocol.hpp.
const char *const ProtocolNames |
Definition at line 82 of file IRProtocol.hpp.
uint16_t sBiphaseCurrentTimingIntervals |
Definition at line 1004 of file IRReceive.hpp.
uint_fast8_t sBiphaseDecodeRawbuffOffset |
Definition at line 1003 of file IRReceive.hpp.
uint16_t sBiphaseTimeUnit |
Definition at line 1006 of file IRReceive.hpp.
uint_fast8_t sBiphaseUsedTimingIntervals |
Definition at line 1005 of file IRReceive.hpp.
unsigned long sMicrosAtLastStopTimer = 0 |
Definition at line 65 of file IRReceive.hpp.