Example #1
0
 public NotificationAutoConfigurableValues(EmgMode emg, ImuMode imu, MyoPoseMode pose)
 {
     this.Emg  = emg;
     this.Imu  = imu;
     this.Pose = pose;
 }
Example #2
0
 /// <summary>
 /// Avoid using this method more than once after connection as it cause desync.
 /// [ User has to perform sync gesture once again. ]
 /// If all three values are set to None then the armband quickly falls asleep!
 /// </summary>
 public void IssueCommand_SetReceiveDataMode(EmgMode emg      = EmgMode.None, ImuMode imu = ImuMode.None,
                                             MyoPoseMode pose = MyoPoseMode.Disabled)
 {
     this.IssueCommand(new ProtocolCommandSetModeType(
                           (ProtocolEmgMode)emg, (ProtocolImuMode)imu, (ProtocolClassifierMode)pose));
 }
		public NotificationAutoConfigurableValues (EmgMode emg, ImuMode imu, MyoPoseMode pose)
		{
			this.Emg = emg;
			this.Imu = imu;
			this.Pose = pose;
		}
Example #4
0
		/// <summary>
		/// Avoid using this method more than once after connection as it cause desync. 
		/// [ User has to perform sync gesture once again. ]
		/// If all three values are set to None then the armband quickly falls asleep!
		/// </summary>
		public void IssueCommand_SetReceiveDataMode (EmgMode emg = EmgMode.None, ImuMode imu = ImuMode.None, 
		                                             MyoPoseMode pose = MyoPoseMode.Disabled)
		{
			this.IssueCommand (new ProtocolCommandSetModeType (
				(ProtocolEmgMode) emg, (ProtocolImuMode) imu, (ProtocolClassifierMode) pose));
		}