Skip to content

Instantly share code, notes, and snippets.

@froggomad
Created July 3, 2021 22:28
Show Gist options
  • Save froggomad/d030dd8608f08372c73dc3a29d98eaa5 to your computer and use it in GitHub Desktop.
Save froggomad/d030dd8608f08372c73dc3a29d98eaa5 to your computer and use it in GitHub Desktop.
import AudioToolbox.AudioServices
class TapticEngine {
/// 'Peek' feedback (single weak boom)
static func peek() {
AudioServicesPlaySystemSound(1519)
}
/// 'Pop' feedback (single strong boom)
static func pop() {
AudioServicesPlaySystemSound(1520)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment