ArduinoMenu icon indicating copy to clipboard operation
ArduinoMenu copied to clipboard

Arduino generic menu/interactivity system

Results 127 ArduinoMenu issues
Sort by recently updated
recently updated
newest added

I'm trying to get this library set-up so that I can initialize a rather complex menu structure in a separate file. How can I do this? It doesn't seem possible...

I'm using Electronic Assemblies DOGM204 20x4 LCD (SSD1803 controller IC) with a Nano ESP32 board. The SSD1803A_I2C library works to control the display but I don't think it is compatible...

I have this setup ``` int length = settings.labelLen[settings.labelNr]; result changeLabel() { length = settings.labelLen[settings.labelNr]; return proceed; } SELECT(settings.labelNr, selLabel, " Select Label ", changeLabel, anyEvent, wrapStyle , VALUE("250g", 0,...

This is not an issue. Maybe you can open discussion feature for people asking. How to hide a menu? I just saw it's only disable menu Thank you

Compilation ends with error "...Arduino\libraries\ArduinoMenu_library\src/menuIO/chainStream.h:21:30: error: expected ')' before '*' token 21 | chainStream(menuIn** chain):streams(chain) {} | ~ ^ | )

In order to have a comprehensive noMacros example it would be really good to see how to add (at least) two inputs (e.g. Serial and button) and two outputs (e.g....

Hi, I'm having a problem that looks like a memory overwrite problem. I made a submenu with 3 items: ``` MENU(GenMenu, "General", doNothing,noEvent,wrapStyle, OP("Battery", menu_item_battery_status, (eventMask)(focusEvent | blurEvent)), OP("About", menu_item_about_status,...

I tried to convert the esp8266_WebMenu example to support ESP32, however the sample does not build due to several errors - there is an `#include "user_interface.h"` but no such file...

I need to debug the library but cannot get it to compile on my Adafruit HUZZAH32 Feather. I first had this ```cpp #define ARDUINO_STREAMING // import: Streaming library (v6.1.1) #define...

I know I can call `menu[1].disable()`, however it would be nice if there was a way to have a way to mark a menu entry as disabled at "design time"...