/// <summary>
 /// Execute a scene action.
 /// Make sure the device supports this by calling tdMethods() before any calls to this function.
 /// </summary>
 /// <param name="deviceId">Id of device to perform the execute action on</param>
 /// <returns>Success or error code</returns>
 public static int tdExecute(int deviceId)
 {
     return(UnmanagedImport.tdExecute(deviceId));
 }