Hi,
in the process of attempting to wrap attached IRRemote Library - see rIRRemote.h and cpp.
Started with class IRrecv first but got stuck
In IRremote.h the IRrecv class hass following definition, which is not clear how to wrap.
defined in IRremote.cpp as
Any help / hints appreciated.
in the process of attempting to wrap attached IRRemote Library - see rIRRemote.h and cpp.
Started with class IRrecv first but got stuck
In IRremote.h the IRrecv class hass following definition, which is not clear how to wrap.
B4X:
public:
IRrecv (int recvpin) ;
IRrecv (int recvpin, int blinkpin);
...
defined in IRremote.cpp as
B4X:
IRrecv::IRrecv (int recvpin)
{
irparams.recvpin = recvpin;
irparams.blinkflag = 0;
}
...
Any help / hints appreciated.