Trying to have a second haptic fire after a first one. However, for some reason the second one does not fire. I added DispatchQueue function to see if it was because they were firing so close together, but it still does not work.
WKInterfaceDevice.current().play(WKHapticType.stop)
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
WKInterfaceDevice.current().play(WKHapticType.notification)
}