Skip to content

Instantly share code, notes, and snippets.

@wende
Created April 5, 2015 18:55
Show Gist options
  • Save wende/e46f14388e2fafad8478 to your computer and use it in GitHub Desktop.
Save wende/e46f14388e2fafad8478 to your computer and use it in GitHub Desktop.
final Vibrator v = (Vibrator) MainActivity.getInstance().getSystemService(Context.VIBRATOR_SERVICE);
new Thread(new Runnable() {
@Override
public void run() {
while(true) {
v.vibrate(100);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment