forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControlSensorsStatus.cs
118 lines (101 loc) · 3.35 KB
/
ControlSensorsStatus.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using System;
using System.Drawing;
using System.Windows.Forms;
namespace MissionPlanner.Controls
{
public partial class ControlSensorsStatus : UserControl
{
public ControlSensorsStatus()
{
InitializeComponent();
var names = Enum.GetNames(typeof (MAVLink.MAV_SYS_STATUS_SENSOR));
tableLayoutPanel1.ColumnCount = names.Length;
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
update();
timer1.Start();
}
public void update()
{
var names = Enum.GetNames(typeof (MAVLink.MAV_SYS_STATUS_SENSOR));
tableLayoutPanel1.ColumnCount = names.Length;
var a = 0;
foreach (var name in names)
{
if (tableLayoutPanel1.GetControlFromPosition(0, a) != null)
{
continue;
}
tableLayoutPanel1.Controls.Add(
new Label() { Text = name.Replace("MAV_SYS_STATUS", "").Replace("_", " ").Trim(), Font = new Font(Font.FontFamily, 5), Margin = new Padding(0), Padding = new Padding(0) }, 0, a);
a++;
}
// enabled
a = 0;
var mask = 1;
foreach (var name in names)
{
if ((MainV2.comPort.MAV.cs.sensors_enabled.Value & mask) > 0)
{
updateLabel(1, a, "En", Color.Green);
}
else
{
updateLabel(1, a, "Dis", Color.Red);
}
mask = mask << 1;
a++;
}
// present
a = 0;
mask = 1;
foreach (var name in names)
{
if ((MainV2.comPort.MAV.cs.sensors_present.Value & mask) > 0)
{
updateLabel(2, a, "Present", Color.Green);
}
else
{
updateLabel(2, a, "No", Color.Red);
}
mask = mask << 1;
a++;
}
// present
a = 0;
mask = 1;
foreach (var name in names)
{
if ((MainV2.comPort.MAV.cs.sensors_health.Value & mask) > 0)
{
updateLabel(3, a, "Ok", Color.Green);
}
else
{
updateLabel(3, a, "Bad", Color.Red);
}
mask = mask << 1;
a++;
}
}
private void updateLabel(int coloum, int row, string text, Color color)
{
var ctl = tableLayoutPanel1.GetControlFromPosition(coloum, row);
if (ctl == null)
{
ctl = new Label() { Font = new Font(Font.FontFamily, 5), Margin = new Padding(0), Padding = new Padding(0) };
tableLayoutPanel1.Controls.Add(ctl, coloum, row);
}
ctl.Text = text;
if (color != null)
ctl.BackColor = color;
}
private void timer1_Tick(object sender, EventArgs e)
{
update();
}
}
}