set ringing?
MohsenShafiee opened this issue · 3 comments
MohsenShafiee commented
hi
how to set ringing the glowpad?
thanks in advance...
rock3r commented
Hello @TheLoyalCruel I am not sure what you mean/what you're asking for, would you care to elaborate please?
MohsenShafiee commented
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();
rock3r commented
Cool, seems like you sorted yourself out then :) Closing this.