From 0d2432299bcac72fccefa7dcbc27c4d5074fad30 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Sun, 29 Mar 2020 18:23:12 +0200 Subject: [PATCH] Hints for the next steps. --- doc/LCDMenu-functions.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/LCDMenu-functions.txt diff --git a/doc/LCDMenu-functions.txt b/doc/LCDMenu-functions.txt new file mode 100644 index 0000000..1b116c4 --- /dev/null +++ b/doc/LCDMenu-functions.txt @@ -0,0 +1,11 @@ +// get the ID of the current menu function +uint8_t FUNC_getID(void); + +// jumpTo a defined function based on the function id +void OTHER_jumpToID(uint8_t p_search, uint8_t p_para = 0); + +// set the cursor to a defined function based on the id +void OTHER_setCursorToID(uint8_t p_search); + +// set the cursor to a defined function based on the function name +void OTHER_setCursorToFunc(LCDML_FuncPtr_pu8 p_search);