public ImuDataReceivedEventArgs(DateTime stamp, ImuDataOrientation orientation, short[] acceleration, short[] gyroscopeData)
     : base(stamp)
 {
     this.Orientation   = orientation;
     this.Acceleration  = acceleration;
     this.GyroscopeData = gyroscopeData;
 }
 public ImuDataReceivedEventArgs(DateTime stamp, ImuDataOrientation orientation, short[] acceleration, short[] gyroscopeData)
     : base(stamp)
 {
     this.Orientation = orientation;
     this.Acceleration = acceleration;
     this.GyroscopeData = gyroscopeData;
 }