Skip to content

Commit fe66f44

Browse files
committed
added luaGetVirstualInput
1 parent f107b3d commit fe66f44

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

radio/src/lua/api_general.cpp

+14-1
Original file line numberDiff line numberDiff line change
@@ -2535,7 +2535,6 @@ static int luaSetVirtualSwitch(lua_State * L)
25352535
else {
25362536
virtualSwitches &= ~(uint64_t{1} << (sw - 1));
25372537
}
2538-
// TRACE("luaSetVirtualSwitch: %d, %b", (sw - 1), on);
25392538
}
25402539
return 0;
25412540
}
@@ -2549,6 +2548,19 @@ static int luaSetVirtualInput(lua_State * L)
25492548
}
25502549
return 0;
25512550
}
2551+
static int luaGetVirtualInput(lua_State * L)
2552+
{
2553+
const int ch = luaL_checkinteger(L, 1);
2554+
2555+
if (1 <= ch && ch <= MAX_VIRTUAL_INPUTS) {
2556+
const int value = virtualInputs[ch - 1];
2557+
lua_pushinteger(L, value);
2558+
}
2559+
else {
2560+
lua_pushnil(L);
2561+
}
2562+
return 1;
2563+
}
25522564
#endif
25532565

25542566
#if defined(COLORLCD)
@@ -3053,6 +3065,7 @@ LROT_BEGIN(etxlib, NULL, 0)
30533065
#endif
30543066
#if defined(VCONTROLS) && defined(COLORLCD)
30553067
LROT_FUNCENTRY( setVirtualInput, luaSetVirtualInput)
3068+
LROT_FUNCENTRY( getVirtualInput, luaGetVirtualInput)
30563069
LROT_FUNCENTRY( setVirtualSwitch, luaSetVirtualSwitch)
30573070
LROT_FUNCENTRY( getVirtualSwitch, luaGetVirtualSwitch)
30583071
LROT_FUNCENTRY( activateVirtualSwitch, luaActivateVirtualSwitch)

0 commit comments

Comments
 (0)