Emotiv.EdkDll.IS_GetTimeFromStart C# (CSharp) Method

IS_GetTimeFromStart() public static method

public static IS_GetTimeFromStart ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_GetTimeFromStart(IntPtr state)
        {
            return Unmanaged_IS_GetTimeFromStart(state);
        }

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Return the time since EmoEngine has been successfully connected to the headset
 /// </summary>
 /// <remarks>
 /// If the headset is disconnected from EmoEngine due to low battery or weak
 /// wireless signal, the time will be reset to zero.
 /// </remarks>
 /// <returns>time in second</returns>
 public Single GetTimeFromStart()
 {
     return(EdkDll.IS_GetTimeFromStart(hEmoState));
 }
EdkDll