protected override void HandleDataReceived(InputReport oInRep)
        {
            RiftInputReport RiftIn = oInRep as RiftInputReport;
            OnTrackerMessage(RiftIn);

            if (OnMoveHead != null) {
                OnMoveHead(Sensor);
            }
        }
 /// <summary>
 /// virtual handler for any action to be taken when data is received. Override to use.
 /// </summary>
 /// <param name="oInRep">The input report that was received</param>
 protected virtual void HandleDataReceived(InputReport oInRep)
 {
 }