-
Hi, this is my second issue, because i really love your library! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can update the value of an Examples:
You can also use |
Beta Was this translation helpful? Give feedback.
-
Great library !!!
At some point of my sketch i want to set fanspeeds at "75%" for example ... |
Beta Was this translation helpful? Give feedback.
You can update the value of an
ItemInput
in theloop
function by callingmenu.getItemAt(``position``)->value = "your new value here"
Examples:
menu.getItemAt(``your position``)->value = "your new value here"
menu[``your position``]->value = "your new value here"
menu[``your position``][``your sub position``].value = "your new value here"
1.
and2.
are the same3.
will change the value of the item at``your sub position``
in the submenu at``your position``
You can also use
[menu.getCursorPosition()]
in place ofmenu.[``your position``]
if your cursor is on the desired menu