-
-
Notifications
You must be signed in to change notification settings - Fork 198
Closed
Description
Good afternoon. I tried to use your library ArduinoMenu.
Some problems when editing a text string.
Everything works, but during editing, the cursor _ does not move to edit the next character.
I used an example from your documentation.
char * const hexDigit PROGMEM = "0123456789ABCDEF"; // allowed hexadecimal digits
char * const hexNr [] PROGMEM = {"0", "x", hexDigit, hexDigit}; // validators
char buf1 [] = "0x11"; // the edit target buffer
...
EDIT ("Hex", buf1, hexNr, doNothing, noEvent, noStyle)
Thank you.