protected virtual void OnValuesChanged(x_IMU_API.PWMoutputData e)
 {
     if (ValuesChanged != null)
     {
         ValuesChanged(this, e);
     }
 }
 /// <summary>
 /// Initialises a new instance of the <see cref="Form_PWMoutputPanel"/> class.
 /// </summary>
 public Form_PWMoutputPanel()
 {
     InitializeComponent();
     PWMoutputData            = new x_IMU_API.PWMoutputData();
     formUpdateTimer          = new Timer();
     formUpdateTimer.Interval = 20;
     formUpdateTimer.Tick    += new EventHandler(formUpdateTimer_Tick);
 }
 /// <summary>
 /// Initialises a new instance of the <see cref="Form_PWMoutputPanel"/> class.
 /// </summary>
 public Form_PWMoutputPanel()
 {
     InitializeComponent();
     PWMoutputData = new x_IMU_API.PWMoutputData();
     formUpdateTimer = new Timer();
     formUpdateTimer.Interval = 20;
     formUpdateTimer.Tick += new EventHandler(formUpdateTimer_Tick);
 }