|
Re: How do you get interrupt when digital input is set
Thanks, actually the private part is what was reallly killing me, I just could not get the thing to be happy I had the same code...
testinput =new DigitalInput(0);
testinput.requestInterrupts(new InterruptHandlerFunction<Object>()
{
@Override
public void interruptFired(int interruptAssertedMask, Object param)
{
}
});
I just couldn't get it to like the interruptFired no matter how I set it up...the base class having an error explains it though
Thanks
|