This commit is contained in:
2024-02-29 13:14:43 +03:00
parent eac364b0d3
commit 60a8e58cc3
3 changed files with 5 additions and 2 deletions

View File

@ -17,6 +17,7 @@ public:
PacketTypes::DataBack gotBackData;
PacketTypes::Accept gotAccept;
PacketTypes::Request gotRequest;
PacketTypes::BasePack gotRaw;
IR_Decoder(const uint8_t isrPin, uint16_t addr, IR_Encoder* encPair = nullptr) : IR_DecoderRaw(isrPin, addr, encPair) {}
@ -26,6 +27,7 @@ public:
#ifdef IRDEBUG_INFO
Serial.println("PARSING RAW DATA");
#endif
gotRaw.set(&packInfo, id);
isWaitingAcceptSend = false;
switch (packInfo.buffer[0] >> 5 & IR_MASK_MSG_TYPE) {
case IR_MSG_DATA_ACCEPT: