private bool MatchingSuccess()
 {
     Console.WriteLine("Matching success!");
     Myo.Vibrate(VibrationType.Medium);
     this.Matched = true;
     return(true);
 }
 private bool MatchingFailed()
 {
     Console.WriteLine("Matching has failed");
     Myo.Vibrate(VibrationType.Short);
     this.Matched = false;
     return(true);
 }