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 want to display an integer in the menu maybe with FIELD. But I don't want to make it editable. Let say if there is a process that shows its...

A linkage error occurs when using `rotaryEnventIn.h` in combination with combined `Menu::style`: In this example, the combination ```c++ #include ... MENU(saveConfigSubMenu, "Save config", Menu::doNothing, Menu::noEvent, Menu::noStyle | Menu::showTitle, OP("OK", saveConfig,...

Hello. I have a round display with a resolution of 240*240. In the example for the TFT_eSPIOut library.h the menu is displayed from position x0 y0. Is there a function...

Hi, I'm using the library with a teensy 4.1 and ST7920 display. Now i like to use it with a ILI9341 display. ILI9341_t3 library seems not be supported - but...

Trying to compile with MENU_ASYNC, I get the following errors: ``` .pio/libdeps/megaatmega2560/ArduinoMenu library/src/items.cpp: In member function 'virtual bool Menu::menuNode::async(const char*, Menu::navRoot&, Menu::idx_t)': .pio/libdeps/megaatmega2560/ArduinoMenu library/src/items.cpp:99:37: error: 'class Menu::prompt' has no member...

If there are more values, it shows a compile error.

Is there any way to use buttons connected to a PCF8757 IO expander to navigate the menu?

Many thanks for this epic library. I have a project using an OLED display, and to save GPIO's, it also uses the ESP8266 (single) analogue input to resolve which of...

Hello! I got everything going, and I am happy with the menu. I would like to return to my home screen when I exit from the root menu, but somehow...

The menu starts fine, however upon selecting `Config. Tanks`, it crashes ```cpp // Selecting this submenu, causes everything to crash MENU(tankMenu, "Config. Tanks", Menu::doNothing, Menu::noEvent, Menu::wrapStyle, OP("Tare Mode", timeSync::setBothTimeFromNTP, Menu::enterEvent),...