first commit

This commit is contained in:
Dana Markova
2025-07-28 13:21:36 +03:00
commit 0de214c9a1
547 changed files with 287132 additions and 0 deletions

View File

@ -0,0 +1,599 @@
namespace WindowsFormsApp1
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea4 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend4 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
System.Windows.Forms.DataVisualization.Charting.Series series8 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.chart_Graph = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.serialPort_COM = new System.IO.Ports.SerialPort(this.components);
this.timer_Tick = new System.Windows.Forms.Timer(this.components);
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.panel2 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.checkBox_AutoY = new System.Windows.Forms.CheckBox();
this.numericUpDown_Min = new System.Windows.Forms.NumericUpDown();
this.numericUpDown_Graph_MinY = new System.Windows.Forms.NumericUpDown();
this.label24 = new System.Windows.Forms.Label();
this.checkBox_Track = new System.Windows.Forms.CheckBox();
this.label23 = new System.Windows.Forms.Label();
this.numericUpDown_Graph_MaxY = new System.Windows.Forms.NumericUpDown();
this.colorDialog_Color = new System.Windows.Forms.ColorDialog();
this.panel_GraphX = new System.Windows.Forms.Panel();
this.trackBar_GraphX_Down = new System.Windows.Forms.TrackBar();
this.panel_GraphY = new System.Windows.Forms.Panel();
this.trackBar_GraphY_Right = new System.Windows.Forms.TrackBar();
this.trackBar_GraphY_Left = new System.Windows.Forms.TrackBar();
this.groupBox_Connect = new System.Windows.Forms.GroupBox();
this.comboBox_Port = new System.Windows.Forms.ComboBox();
this.button_Connect = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.button_Update = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
this.label6 = new System.Windows.Forms.Label();
this.numericUpDown4 = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
this.label2 = new System.Windows.Forms.Label();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.panel1 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.chart_Graph)).BeginInit();
this.groupBox2.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Min)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Graph_MinY)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Graph_MaxY)).BeginInit();
this.panel_GraphX.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphX_Down)).BeginInit();
this.panel_GraphY.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphY_Right)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphY_Left)).BeginInit();
this.groupBox_Connect.SuspendLayout();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// chart_Graph
//
chartArea4.AxisX.Maximum = 100D;
chartArea4.AxisX.Minimum = 0D;
chartArea4.Name = "ChartArea1";
this.chart_Graph.ChartAreas.Add(chartArea4);
this.chart_Graph.Dock = System.Windows.Forms.DockStyle.Fill;
legend4.Name = "Legend1";
this.chart_Graph.Legends.Add(legend4);
this.chart_Graph.Location = new System.Drawing.Point(216, 0);
this.chart_Graph.Name = "chart_Graph";
series7.ChartArea = "ChartArea1";
series7.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
series7.Color = System.Drawing.Color.Red;
series7.Legend = "Legend1";
series7.Name = "Series1";
series8.ChartArea = "ChartArea1";
series8.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
series8.Color = System.Drawing.Color.Blue;
series8.Legend = "Legend1";
series8.Name = "Series2";
this.chart_Graph.Series.Add(series7);
this.chart_Graph.Series.Add(series8);
this.chart_Graph.Size = new System.Drawing.Size(553, 531);
this.chart_Graph.TabIndex = 1;
this.chart_Graph.Text = "chart1";
//
// serialPort_COM
//
this.serialPort_COM.BaudRate = 460800;
this.serialPort_COM.PortName = "COM4";
this.serialPort_COM.ReadBufferSize = 128;
this.serialPort_COM.ReadTimeout = 1;
this.serialPort_COM.WriteTimeout = 1;
//
// timer_Tick
//
this.timer_Tick.Interval = 1;
this.timer_Tick.Tick += new System.EventHandler(this.timer_Tick_Tick);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.panel2);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Right;
this.groupBox2.Location = new System.Drawing.Point(769, 0);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(132, 571);
this.groupBox2.TabIndex = 2;
this.groupBox2.TabStop = false;
this.groupBox2.Text = " Graph ";
//
// panel2
//
this.panel2.Controls.Add(this.label4);
this.panel2.Controls.Add(this.checkBox_AutoY);
this.panel2.Controls.Add(this.numericUpDown_Min);
this.panel2.Controls.Add(this.numericUpDown_Graph_MinY);
this.panel2.Controls.Add(this.label24);
this.panel2.Controls.Add(this.checkBox_Track);
this.panel2.Controls.Add(this.label23);
this.panel2.Controls.Add(this.numericUpDown_Graph_MaxY);
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
this.panel2.Location = new System.Drawing.Point(3, 16);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(126, 188);
this.panel2.TabIndex = 14;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(3, 12);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(38, 13);
this.label4.TabIndex = 4;
this.label4.Text = "Len X:";
//
// checkBox_AutoY
//
this.checkBox_AutoY.AutoSize = true;
this.checkBox_AutoY.Checked = true;
this.checkBox_AutoY.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox_AutoY.Location = new System.Drawing.Point(6, 148);
this.checkBox_AutoY.Name = "checkBox_AutoY";
this.checkBox_AutoY.Size = new System.Drawing.Size(58, 17);
this.checkBox_AutoY.TabIndex = 13;
this.checkBox_AutoY.Text = "Auto Y";
this.checkBox_AutoY.UseVisualStyleBackColor = true;
this.checkBox_AutoY.CheckedChanged += new System.EventHandler(this.checkBox_AutoY_CheckedChanged);
//
// numericUpDown_Min
//
this.numericUpDown_Min.Location = new System.Drawing.Point(46, 10);
this.numericUpDown_Min.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDown_Min.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown_Min.Name = "numericUpDown_Min";
this.numericUpDown_Min.Size = new System.Drawing.Size(75, 20);
this.numericUpDown_Min.TabIndex = 5;
this.numericUpDown_Min.Value = new decimal(new int[] {
10,
0,
0,
0});
this.numericUpDown_Min.ValueChanged += new System.EventHandler(this.numericUpDown_Min_ValueChanged);
//
// numericUpDown_Graph_MinY
//
this.numericUpDown_Graph_MinY.Enabled = false;
this.numericUpDown_Graph_MinY.Location = new System.Drawing.Point(46, 122);
this.numericUpDown_Graph_MinY.Maximum = new decimal(new int[] {
32000,
0,
0,
0});
this.numericUpDown_Graph_MinY.Minimum = new decimal(new int[] {
32000,
0,
0,
-2147483648});
this.numericUpDown_Graph_MinY.Name = "numericUpDown_Graph_MinY";
this.numericUpDown_Graph_MinY.Size = new System.Drawing.Size(75, 20);
this.numericUpDown_Graph_MinY.TabIndex = 12;
this.numericUpDown_Graph_MinY.Value = new decimal(new int[] {
10,
0,
0,
-2147483648});
this.numericUpDown_Graph_MinY.ValueChanged += new System.EventHandler(this.numericUpDown_Graph_MaxY_ValueChanged);
//
// label24
//
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(6, 124);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(37, 13);
this.label24.TabIndex = 11;
this.label24.Text = "Min Y:";
//
// checkBox_Track
//
this.checkBox_Track.AutoSize = true;
this.checkBox_Track.Location = new System.Drawing.Point(6, 69);
this.checkBox_Track.Name = "checkBox_Track";
this.checkBox_Track.Size = new System.Drawing.Size(54, 17);
this.checkBox_Track.TabIndex = 7;
this.checkBox_Track.Text = "Track";
this.checkBox_Track.UseVisualStyleBackColor = true;
this.checkBox_Track.CheckedChanged += new System.EventHandler(this.numericUpDown_Min_ValueChanged);
//
// label23
//
this.label23.AutoSize = true;
this.label23.Location = new System.Drawing.Point(3, 98);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(40, 13);
this.label23.TabIndex = 9;
this.label23.Text = "Max Y:";
//
// numericUpDown_Graph_MaxY
//
this.numericUpDown_Graph_MaxY.Enabled = false;
this.numericUpDown_Graph_MaxY.Location = new System.Drawing.Point(46, 96);
this.numericUpDown_Graph_MaxY.Maximum = new decimal(new int[] {
32000,
0,
0,
0});
this.numericUpDown_Graph_MaxY.Minimum = new decimal(new int[] {
32000,
0,
0,
-2147483648});
this.numericUpDown_Graph_MaxY.Name = "numericUpDown_Graph_MaxY";
this.numericUpDown_Graph_MaxY.Size = new System.Drawing.Size(75, 20);
this.numericUpDown_Graph_MaxY.TabIndex = 8;
this.numericUpDown_Graph_MaxY.Value = new decimal(new int[] {
10,
0,
0,
0});
this.numericUpDown_Graph_MaxY.ValueChanged += new System.EventHandler(this.numericUpDown_Graph_MaxY_ValueChanged);
//
// panel_GraphX
//
this.panel_GraphX.Controls.Add(this.trackBar_GraphX_Down);
this.panel_GraphX.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel_GraphX.Location = new System.Drawing.Point(175, 531);
this.panel_GraphX.Name = "panel_GraphX";
this.panel_GraphX.Size = new System.Drawing.Size(594, 40);
this.panel_GraphX.TabIndex = 6;
//
// trackBar_GraphX_Down
//
this.trackBar_GraphX_Down.AutoSize = false;
this.trackBar_GraphX_Down.Dock = System.Windows.Forms.DockStyle.Fill;
this.trackBar_GraphX_Down.Location = new System.Drawing.Point(0, 0);
this.trackBar_GraphX_Down.Minimum = 1;
this.trackBar_GraphX_Down.Name = "trackBar_GraphX_Down";
this.trackBar_GraphX_Down.Size = new System.Drawing.Size(594, 40);
this.trackBar_GraphX_Down.TabIndex = 1;
this.trackBar_GraphX_Down.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.trackBar_GraphX_Down.Value = 10;
this.trackBar_GraphX_Down.Scroll += new System.EventHandler(this.numericUpDown_Min_ValueChanged);
//
// panel_GraphY
//
this.panel_GraphY.Controls.Add(this.trackBar_GraphY_Right);
this.panel_GraphY.Controls.Add(this.trackBar_GraphY_Left);
this.panel_GraphY.Dock = System.Windows.Forms.DockStyle.Left;
this.panel_GraphY.Enabled = false;
this.panel_GraphY.Location = new System.Drawing.Point(175, 0);
this.panel_GraphY.Name = "panel_GraphY";
this.panel_GraphY.Size = new System.Drawing.Size(41, 531);
this.panel_GraphY.TabIndex = 7;
//
// trackBar_GraphY_Right
//
this.trackBar_GraphY_Right.AutoSize = false;
this.trackBar_GraphY_Right.Dock = System.Windows.Forms.DockStyle.Right;
this.trackBar_GraphY_Right.Location = new System.Drawing.Point(19, 0);
this.trackBar_GraphY_Right.Name = "trackBar_GraphY_Right";
this.trackBar_GraphY_Right.Orientation = System.Windows.Forms.Orientation.Vertical;
this.trackBar_GraphY_Right.Size = new System.Drawing.Size(22, 531);
this.trackBar_GraphY_Right.TabIndex = 1;
this.trackBar_GraphY_Right.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.trackBar_GraphY_Right.Value = 10;
this.trackBar_GraphY_Right.Scroll += new System.EventHandler(this.trackBar_GraphY_Left_Scroll);
//
// trackBar_GraphY_Left
//
this.trackBar_GraphY_Left.AutoSize = false;
this.trackBar_GraphY_Left.Dock = System.Windows.Forms.DockStyle.Left;
this.trackBar_GraphY_Left.Location = new System.Drawing.Point(0, 0);
this.trackBar_GraphY_Left.Name = "trackBar_GraphY_Left";
this.trackBar_GraphY_Left.Orientation = System.Windows.Forms.Orientation.Vertical;
this.trackBar_GraphY_Left.Size = new System.Drawing.Size(21, 531);
this.trackBar_GraphY_Left.TabIndex = 0;
this.trackBar_GraphY_Left.Scroll += new System.EventHandler(this.trackBar_GraphY_Left_Scroll);
//
// groupBox_Connect
//
this.groupBox_Connect.Controls.Add(this.comboBox_Port);
this.groupBox_Connect.Controls.Add(this.button_Connect);
this.groupBox_Connect.Controls.Add(this.label1);
this.groupBox_Connect.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox_Connect.Location = new System.Drawing.Point(0, 0);
this.groupBox_Connect.Name = "groupBox_Connect";
this.groupBox_Connect.Size = new System.Drawing.Size(175, 40);
this.groupBox_Connect.TabIndex = 0;
this.groupBox_Connect.TabStop = false;
this.groupBox_Connect.Text = " Link ";
//
// comboBox_Port
//
this.comboBox_Port.FormattingEnabled = true;
this.comboBox_Port.Location = new System.Drawing.Point(32, 13);
this.comboBox_Port.Name = "comboBox_Port";
this.comboBox_Port.Size = new System.Drawing.Size(59, 21);
this.comboBox_Port.TabIndex = 7;
this.comboBox_Port.DropDown += new System.EventHandler(this.comboBox_Port_DropDown);
//
// button_Connect
//
this.button_Connect.Location = new System.Drawing.Point(97, 11);
this.button_Connect.Name = "button_Connect";
this.button_Connect.Size = new System.Drawing.Size(70, 23);
this.button_Connect.TabIndex = 2;
this.button_Connect.Text = "Connect";
this.button_Connect.UseVisualStyleBackColor = true;
this.button_Connect.Click += new System.EventHandler(this.button_Connect_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Port:";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.button_Update);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.numericUpDown3);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Controls.Add(this.numericUpDown4);
this.groupBox3.Controls.Add(this.label3);
this.groupBox3.Controls.Add(this.numericUpDown2);
this.groupBox3.Controls.Add(this.label2);
this.groupBox3.Controls.Add(this.numericUpDown1);
this.groupBox3.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox3.Location = new System.Drawing.Point(0, 40);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(175, 167);
this.groupBox3.TabIndex = 3;
this.groupBox3.TabStop = false;
this.groupBox3.Text = " Filter ";
//
// button_Update
//
this.button_Update.Location = new System.Drawing.Point(32, 127);
this.button_Update.Name = "button_Update";
this.button_Update.Size = new System.Drawing.Size(70, 23);
this.button_Update.TabIndex = 14;
this.button_Update.Text = "Update";
this.button_Update.UseVisualStyleBackColor = true;
this.button_Update.Click += new System.EventHandler(this.button_Update_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(14, 103);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(31, 13);
this.label5.TabIndex = 13;
this.label5.Text = "Pow:";
//
// numericUpDown3
//
this.numericUpDown3.DecimalPlaces = 5;
this.numericUpDown3.Location = new System.Drawing.Point(47, 101);
this.numericUpDown3.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDown3.Name = "numericUpDown3";
this.numericUpDown3.Size = new System.Drawing.Size(75, 20);
this.numericUpDown3.TabIndex = 12;
this.numericUpDown3.Value = new decimal(new int[] {
2,
0,
0,
0});
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(14, 77);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(27, 13);
this.label6.TabIndex = 11;
this.label6.Text = "Mul:";
//
// numericUpDown4
//
this.numericUpDown4.DecimalPlaces = 5;
this.numericUpDown4.Location = new System.Drawing.Point(47, 75);
this.numericUpDown4.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDown4.Name = "numericUpDown4";
this.numericUpDown4.Size = new System.Drawing.Size(75, 20);
this.numericUpDown4.TabIndex = 10;
this.numericUpDown4.Value = new decimal(new int[] {
20,
0,
0,
0});
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(14, 51);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(30, 13);
this.label3.TabIndex = 9;
this.label3.Text = "Max:";
//
// numericUpDown2
//
this.numericUpDown2.DecimalPlaces = 5;
this.numericUpDown2.Location = new System.Drawing.Point(47, 49);
this.numericUpDown2.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDown2.Name = "numericUpDown2";
this.numericUpDown2.Size = new System.Drawing.Size(75, 20);
this.numericUpDown2.TabIndex = 8;
this.numericUpDown2.Value = new decimal(new int[] {
1,
0,
0,
65536});
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(14, 25);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(27, 13);
this.label2.TabIndex = 7;
this.label2.Text = "Min:";
//
// numericUpDown1
//
this.numericUpDown1.DecimalPlaces = 5;
this.numericUpDown1.Location = new System.Drawing.Point(47, 23);
this.numericUpDown1.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(75, 20);
this.numericUpDown1.TabIndex = 6;
this.numericUpDown1.Value = new decimal(new int[] {
1,
0,
0,
196608});
//
// panel1
//
this.panel1.Controls.Add(this.groupBox3);
this.panel1.Controls.Add(this.groupBox_Connect);
this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(175, 571);
this.panel1.TabIndex = 4;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(901, 571);
this.Controls.Add(this.chart_Graph);
this.Controls.Add(this.panel_GraphY);
this.Controls.Add(this.panel_GraphX);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.panel1);
this.MinimumSize = new System.Drawing.Size(914, 515);
this.Name = "MainForm";
this.Text = "Telemetry";
((System.ComponentModel.ISupportInitialize)(this.chart_Graph)).EndInit();
this.groupBox2.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Min)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Graph_MinY)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Graph_MaxY)).EndInit();
this.panel_GraphX.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphX_Down)).EndInit();
this.panel_GraphY.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphY_Right)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar_GraphY_Left)).EndInit();
this.groupBox_Connect.ResumeLayout(false);
this.groupBox_Connect.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart_Graph;
private System.IO.Ports.SerialPort serialPort_COM;
private System.Windows.Forms.Timer timer_Tick;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.NumericUpDown numericUpDown_Min;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ColorDialog colorDialog_Color;
private System.Windows.Forms.CheckBox checkBox_Track;
private System.Windows.Forms.NumericUpDown numericUpDown_Graph_MinY;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.Label label23;
private System.Windows.Forms.NumericUpDown numericUpDown_Graph_MaxY;
private System.Windows.Forms.CheckBox checkBox_AutoY;
private System.Windows.Forms.Panel panel_GraphX;
private System.Windows.Forms.TrackBar trackBar_GraphX_Down;
private System.Windows.Forms.Panel panel_GraphY;
private System.Windows.Forms.TrackBar trackBar_GraphY_Right;
private System.Windows.Forms.TrackBar trackBar_GraphY_Left;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.GroupBox groupBox_Connect;
private System.Windows.Forms.ComboBox comboBox_Port;
private System.Windows.Forms.Button button_Connect;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.NumericUpDown numericUpDown3;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.NumericUpDown numericUpDown4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown numericUpDown2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.Button button_Update;
}
}