Emotiv.EdkDll.IS_MentalCommandIsActive C# (CSharp) Method

IS_MentalCommandIsActive() public static method

public static IS_MentalCommandIsActive ( IntPtr state ) : System.Boolean
state System.IntPtr
return System.Boolean
        public static Boolean IS_MentalCommandIsActive(IntPtr state)
        {
            return Unmanaged_IS_MentalCommandIsActive(state);
        }

Usage Example

コード例 #1
0
 /// <summary>
 /// Query whether the signal is too noisy for Cognitiv detection to be active
 /// </summary>
 /// <returns>detection state (false: Not Active, true: Active)</returns>
 public Boolean MentalCommandIsActive()
 {
     return(EdkDll.IS_MentalCommandIsActive(hEmoState));
 }
EdkDll