Rui Azevedo

Results 138 comments of Rui Azevedo

Hi! this is the right place, welcome on my first look on your code: you have one automated input `serialIn serial(Serial);` and two menu outputs, ```c++ //define outputs controller menuOut*...

the builtin encoder was done and tested for avr's, it depends on PCINT library that eventually can work on other platforms, but not tested. There is also clickencoder driver, the...

the esp32 has arduino framework support and ST7735S has some drivers for adafruitGFX, so it should work. I wonder if UCGLib supporrt dor sST7755 can also work with the variant....

Hi! @gnikolopoulos not yet, usually i start by a similar driver from menuIO folder and adapt from it... but yes, we need a tutorial on this, writing it now.

yes, if you derive the field class and redefine its print function https://github.com/neu-rah/ArduinoMenu/blob/master/src/itemsTemplates.hpp#L41

len is the remaining characters on the device line (some are just not respecting it), print should stop when len=0 i will deprecate this on AM5 in favor of device...

@ferchinas Hi Fernando! its very welcome,please do so with a pull-request to preserve your authorship

>strlen () function counts the character ´ ° ´ as two bytes. i know why and i could solve it, however solution is not elegant. Its because of extended characters...

Hi @TerryKing One can use the navigation functions to adapt any input method. example is here: https://github.com/neu-rah/ArduinoMenu/blob/master/examples/codeCtrl/codeCtrl/codeCtrl.ino basically you handle your input and then call `.doNav(...)` function on the root...

Nope there no such tutorial yet, maybe its time for one. Input can be done using navigation commands to cover virtually any input type, drivers are just a commodity, codeCtrl...