Skip to content

Commit

Permalink
New vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Vincent committed Mar 30, 2023
1 parent 408061c commit 6de472f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion power-lights-panel/simvarDefs.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdio.h>
#include "simvarDefs.h"

const char* versionString = "v1.7.3";
const char* versionString = "v1.7.5";

const char* SimVarDefs[][2] = {
// Vars for Jetbridge (must come first)
Expand Down Expand Up @@ -54,6 +54,8 @@ const char* SimVarDefs[][2] = {
{ "Com Receive:2", "bool" },
{ "Adf Active Frequency:1", "khz" },
{ "Adf Standby Frequency:1", "khz" },
{ "Com Volume:1", "percent" },
{ "Com Volume:2", "percent" },
{ "Cabin Seatbelts Alert Switch", "bool" },
{ "Transponder State:1", "enum" },
{ "Transponder Code:1", "bco16" },
Expand Down
2 changes: 2 additions & 0 deletions power-lights-panel/simvarDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ struct SimVars
double com2Receive = 0;
double adfFreq = 394;
double adfStandby = 368;
double com1Volume = 0;
double com2Volume = 0;
double seatBeltsSwitch = 0;
double transponderState = 0;
double transponderCode = 4608;
Expand Down

0 comments on commit 6de472f

Please sign in to comment.