Skip to content

Instantly share code, notes, and snippets.

@chaosddp
Created April 15, 2016 05:10
Show Gist options
  • Save chaosddp/0b18b1ce92689b2c8c06a9473c2813de to your computer and use it in GitHub Desktop.
Save chaosddp/0b18b1ce92689b2c8c06a9473c2813de to your computer and use it in GitHub Desktop.
// maybe not exist this
if (ApiInformation.IsTypePresent("Windows.Phone.Devices.Notification.VibrationDevice"))
{
var vibrateDevice = Windows.Phone.Devices.Notification.VibrationDevice.GetDefault();
var duration = TimeSpan.FromMilliseconds(1000);
vibrateDevice.Vibrate(duration);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment