frakbot/GlowPadBackport

set ringing?

MohsenShafiee opened this issue · 3 comments

hi
how to set ringing the glowpad?

thanks in advance...

Hello @TheLoyalCruel I am not sure what you mean/what you're asking for, would you care to elaborate please?

thanks for the quick answer...
I wanted to simulate ringing motions... and a method which calls glowpad.ping for example every second!
but I handled it this way:

CountDownTimer cTimer = new CountDownTimer(15000, 500) {
    public void onTick(long millisUntilFinished) {
        glowPad.ping();
    }

    public void onFinish() {
        finish();
    }
};
cTimer.start();

Cool, seems like you sorted yourself out then :) Closing this.