Double the period of the flashing timers on the PFD
This commit is contained in:
parent
77926eb1c6
commit
9f5f1d8629
1 changed files with 5 additions and 5 deletions
|
@ -2381,7 +2381,7 @@ setlistener("/systems/electrical/bus/ac-2", func() {
|
||||||
|
|
||||||
# Flash managers
|
# Flash managers
|
||||||
var ils_going1 = 0;
|
var ils_going1 = 0;
|
||||||
var ilsTimer1 = maketimer(0.25, func {
|
var ilsTimer1 = maketimer(0.50, func {
|
||||||
if (!ilsFlash1.getBoolValue()) {
|
if (!ilsFlash1.getBoolValue()) {
|
||||||
ilsFlash1.setBoolValue(1);
|
ilsFlash1.setBoolValue(1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -2390,7 +2390,7 @@ var ilsTimer1 = maketimer(0.25, func {
|
||||||
});
|
});
|
||||||
|
|
||||||
var ils_going2 = 0;
|
var ils_going2 = 0;
|
||||||
var ilsTimer2 = maketimer(0.25, func {
|
var ilsTimer2 = maketimer(0.50, func {
|
||||||
if (!ilsFlash2.getBoolValue()) {
|
if (!ilsFlash2.getBoolValue()) {
|
||||||
ilsFlash2.setBoolValue(1);
|
ilsFlash2.setBoolValue(1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -2399,7 +2399,7 @@ var ilsTimer2 = maketimer(0.25, func {
|
||||||
});
|
});
|
||||||
|
|
||||||
var qnh_going = 0;
|
var qnh_going = 0;
|
||||||
var qnhTimer = maketimer(0.25, func {
|
var qnhTimer = maketimer(0.50, func {
|
||||||
if (!qnhFlash.getBoolValue()) {
|
if (!qnhFlash.getBoolValue()) {
|
||||||
qnhFlash.setBoolValue(1);
|
qnhFlash.setBoolValue(1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -2408,7 +2408,7 @@ var qnhTimer = maketimer(0.25, func {
|
||||||
});
|
});
|
||||||
|
|
||||||
var alt_going1 = 0;
|
var alt_going1 = 0;
|
||||||
var altTimer1 = maketimer(0.25, func {
|
var altTimer1 = maketimer(0.50, func {
|
||||||
if (!altFlash1.getBoolValue()) {
|
if (!altFlash1.getBoolValue()) {
|
||||||
altFlash1.setBoolValue(1);
|
altFlash1.setBoolValue(1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -2417,7 +2417,7 @@ var altTimer1 = maketimer(0.25, func {
|
||||||
});
|
});
|
||||||
|
|
||||||
var alt_going2 = 0;
|
var alt_going2 = 0;
|
||||||
var altTimer2 = maketimer(0.25, func {
|
var altTimer2 = maketimer(0.50, func {
|
||||||
if (!altFlash2.getBoolValue()) {
|
if (!altFlash2.getBoolValue()) {
|
||||||
altFlash2.setBoolValue(1);
|
altFlash2.setBoolValue(1);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue