Wish Add IrReceive.Disable() to B4R Infrared Lib

miker2069

Active Member
Licensed User
Longtime User
I'm hoping this is relatively simple and can be done quickly :)
We've go tthe IrReceive.Enable() implemented but there's no corresponding Disable() (I am using the 1.12) version of the library).

I figured it was as simple as adding:


B4X:
    void IrReceive::Disable() {
        ir->disableIRIn();
    }
To the rIRremoteESP8266.cpp file and the corresponding signature to the header file. I guess I'm still missing something as I can't see the method in the IDE.
 

miker2069

Active Member
Licensed User
Longtime User
whoops, guess I should have read the how-to on libraries :)
I was able to add the Disable method to my own copy - however it's still a good idea to implement in the official version.
 
Top