aboutsummaryrefslogtreecommitdiff
path: root/app.mjs
diff options
context:
space:
mode:
authorDeterminant <[email protected]>2024-09-07 16:54:27 -0700
committerDeterminant <[email protected]>2024-09-07 16:54:27 -0700
commit7135e9af4926e5086419edb8c6d6e3864be5edd2 (patch)
tree5af30b9643c7fb20860a7a5be0763dd4691d960b /app.mjs
parent292fcb4a80618c35f862151fc85fe4e006362ab2 (diff)
now supports pressable display (e.g., press HSI to switch among GPS/NAV1/NAV2)
Diffstat (limited to 'app.mjs')
-rwxr-xr-xapp.mjs9
1 files changed, 5 insertions, 4 deletions
diff --git a/app.mjs b/app.mjs
index 9904e79..a558885 100755
--- a/app.mjs
+++ b/app.mjs
@@ -221,9 +221,9 @@ const renderMultiLineText = (c, x0, y0, w, h, text, styles, conf) => {
};
const drawKey = async (id, conf, pressed) => {
- if (conf && conf.display != null) {
+ if (conf && isObject(conf.display)) {
// not an input, but a display gauge
- conf.isPressed = pressed;
+ conf.display.pressed = pressed;
return;
}
@@ -763,7 +763,8 @@ const renderHSI = (c, display, values) => {
if (!isObject(src)) {
src = null;
}
- if (src) {
+ if (display.pressed && src) {
+ display.pressed = false;
xplane.sendCommand(src.next.toString());
}
const crs = src ? deg2Rad(values[src.crs]) : null;
@@ -1008,7 +1009,7 @@ device.on("connect", async () => {
: 1;
const msPerFrame = 1000 / freq;
- conf.isPressed = false;
+ conf.display.pressed = false;
conf.renderStart = () => {
let enabled = true;
let startTime = new Date();