ArduinoMenu
ArduinoMenu copied to clipboard
Arduino generic menu/interactivity system
The example says: ``` //this prompt will count seconds and update himself on the screen. ``` but it is not updating, It still shows `0` Looks like the function `changed`...
this error while comping
I created a menu with some submenus and one of the submenus `subMenuTuner` should be empty, having just one item to exit the submenu. This is how the submenu looks...
This is purely due to the data structure used by ArduinoMenu and the memory addressing is using PROGMEM for AVRs and RAM for non-AVRs and AVRs with dynamic menus –...
/Applications/Arduino.app/Contents/Java/libraries/TFT/src/utility/Adafruit_ST7735.cpp:349:13: error: cannot convert 'volatile uint32_t* {aka volatile long unsigned int*}' to 'volatile uint8_t* {aka volatile unsigned char*}' in assignment csport = portOutputRegister(digitalPinToPort(_cs)); ^ /Applications/Arduino.app/Contents/Java/libraries/TFT/src/utility/Adafruit_ST7735.cpp:351:13: error: cannot convert 'volatile uint32_t*...
Hi, i was trying to make a text field with a string variable, and when pressed, the value should be modified and so the menu state. Something like this (i...
Hello. I am discovering your library, and I don't manage to test your example file btNav.ino: I can compile and inject, but pressing the buttons doesn't do anything. **Is there...
Hello, Example rotaryEvent doesn't want to compile and returns error: C:\Users\Uroš\Documents\Arduino\DELUJOC_MENI2_mar12a\DELUJOC_MENI2_mar12a.ino: In function 'global constructors keyed to 65535_0_DELUJOC_MENI2_mar12a.ino.cpp.o': DELUJOC_MENI2_mar12a:64:1: error: variable 'fieldShadows0' with dynamic initialization put into program memory area...
I'm making some test combining the examples [ClickEncoder](https://github.com/neu-rah/ArduinoMenu/blob/master/examples/clickEncoder/clickEncoder/clickEncoder.ino) and [U8X8](https://github.com/neu-rah/ArduinoMenu/blob/master/examples/U8x8/U8x8/U8x8.ino). Basically the only changes I made were increasing the variable `test` and calling `refresh` before calling `poll` in the loop...
I used this library in the past with good success: https://github.com/PaulStoffregen/Encoder using interrupt pins(all pin are interrupt capable) from the Teensy (6 & 7) Keeping the same hardware setup, I...