1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 05:15:18 +03:00

Re #3719: documentation updated for model.setLogicalSwitch() - how to set "and" parameter (previous commit was wrong).

This commit is contained in:
Damjan Adamic 2017-01-14 16:18:19 +01:00
parent 85306a0d91
commit 2e12b6401f

View file

@ -701,9 +701,6 @@ Get Logical Switch parameters
* `delay` (number) delay (time in 1/10 s)
* `duration` (number) duration (time in 1/10 s)
@notice To set the `and` member (which is Lua keyword)
use the following syntax: `model.setLogicalSwitch(30, {func=4,v1=1,v2=-99, ["and"]=24})`
@status current Introduced in 2.0.0
*/
static int luaModelGetLogicalSwitch(lua_State *L)
@ -735,9 +732,12 @@ Set Logical Switch parameters
@param value (table) see model.getLogicalSwitch() for table format
@notice If a parameter is missing from the value, then
@notice If a parameter is missing from the value, then
that parameter remains unchanged.
@notice To set the `and` member (which is Lua keyword)
use the following syntax: `model.setLogicalSwitch(30, {func=4,v1=1,v2=-99, ["and"]=24})`
@status current Introduced in 2.0.0
*/
static int luaModelSetLogicalSwitch(lua_State *L)