/// Notify the Myo that a user action was recognized.
    public void NotifyUserAction()
    {
#if UNITY_EDITOR
        _myo.NotifyUserAction();
#elif UNITY_IOS
        Thalmic.MyoBindings.myo_IndicateUserAction(identifier);
#elif UNITY_ANDROID
        ThalmicHub.VibrateForLength(1);
#endif
    }
    // Vibrate the Myo with the provided type of vibration, e.g. VibrationType.Short or VibrationType.Medium.
    public void Vibrate(VibrationType type)
    {
#if UNITY_EDITOR
        _myo.Vibrate(type);
#elif UNITY_IOS
        Thalmic.MyoBindings.myo_VibrateWithLength(identifier, (int)type);
#elif UNITY_ANDROID
        ThalmicHub.VibrateForLength((int)type);
#endif
    }