add acceptDelay change

This commit is contained in:
2024-02-27 12:45:52 +03:00
parent 523bb0712c
commit 909fac5d1a
2 changed files with 174 additions and 95 deletions

View File

@ -8,7 +8,7 @@ class IR_Decoder : public IR_DecoderRaw {
bool isWaitingAcceptSend;
uint16_t addrAcceptSendTo;
uint16_t acceptDelay = 75;
public:
@ -56,4 +56,11 @@ public:
isWaitingAcceptSend = false;
}
}
void setAcceptDelay(uint16_t acceptDelay){
this->acceptDelay = acceptDelay;
}
uint16_t getAcceptDelay(){
return this->acceptDelay;
}
};