Alexander Spiridonov
Alexander Spiridonov
Seems like this `flash read err, 1000` is quite common for some ESP32 boards. As far as my early findings go, It may be related to different flash settings ([partitioning](https://www.reddit.com/r/esp32/comments/krf7oi/help_with_flash_read_err_1000_after_attempting_to/),...
Added corresponding note to [Compatibility](https://github.com/Spirik/GEM#compatibility) section of Readme regarding possible issues with ESP32 boards.
Seems like a useful feature=) Don't expect that I will implement it in the nearest future, but I will definitely look at it. Thank you)
Hello! Thank you for using GEM! What platform do you use? Just tried the following on Arduino UNO (with Adafruit GFX library) and it works: ```cpp float numberFloat = 92.0;...
Arduino Due uses Cortex-M3 CPU and so indeed doesn't support `dtostrf` [by default](https://github.com/Spirik/GEM#floating-point-variables). However, in GEM it is included explicitly for SAM (like Arduino Due) and SAMD (like Arduino Zero)...
Hi=) Unfortunately there is no example for rotary encoders specifically, but theoretically as soon as input device can produce 6 basic operations that menu understands (up, right, down, left, ok,...
How an item would be saved in that scheme (apart from pressing cancel button, which results in exit without saving), since you're planning to use push button to select digit...
> Another question: How does one constrain the values while editing? > For instance lets say I have a value of 3523 and I want to limit its settings from...
@danieltwagner Does your implementation allow to scroll over an entire range of a number, or just a single digit of that number?
Hello! Can you provide a short snippet here to show how exactly you're using these methods in your sketch?