forked from danarrib/JCLFIGHTGCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PreArmNotification.cs
45 lines (42 loc) · 1.26 KB
/
PreArmNotification.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace JCFLIGHTGCS
{
public partial class PreArmNotification : UserControl
{
public PreArmNotification()
{
InitializeComponent();
}
private void PreArmNotification_Load(object sender, EventArgs e)
{
label2.Text = "Aguardando comunicação serial";
}
private void timer1_Tick(object sender, EventArgs e)
{
if (GetValues.PreArmMessage == "Erro:Giroscopio ruim")
{
label2.Text = "Erro:Giroscópio ruim";
}
else if (GetValues.PreArmMessage == "Erro:O switch nao foi ativado para o modo safe")
{
label2.Text = "Erro:O switch não foi ativado para o modo safe";
}
else if (GetValues.PreArmMessage == "Erro:Barometro ruim")
{
label2.Text = "Erro:Barômetro ruim";
}
else if (GetValues.PreArmMessage != null)
{
label2.Text = GetValues.PreArmMessage;
}
}
}
}