Rui Azevedo
Rui Azevedo
the targetSel example uses an array as menu source and an optional submenu as edit, so that the first will provide indexing for the second... the same schema you are...
we have an analog joystick example, however you can use any input type and issue menu commands as appropriate https://github.com/neu-rah/ArduinoMenu/blob/master/examples/codeCtrl/codeCtrl/codeCtrl.ino
yes, https://github.com/neu-rah/ArduinoMenu/tree/master/examples/esp8266_EscControl its a brushless ESC motor controled over web...
what encoder driver is in use? menuIO/clickEncoderIn.h menuIO/encoderIn.h i'm using clickEncoderIn on esp8266 also be sure to remove main loop delay used on most examples...
thanks for the feedback, i have an esp32 around will give it a try
@array81 missing file is from encoder driver https://github.com/0xPIT/encoder , must install it you will also have to use some esp timer, the example is using timerOne (i think) and it...
using clickEncoder (0XPIT encoder) with esp ```c++ extern "C" {//esp8266 stuff #include "user_interface.h" } #include #include #include //oled+? bus #include //oled driver // #include //from https://github.com/0xPIT/encoder #define I2C_ADDRESS 0x3C //...
sorry, not yet, been away hope to return to this soon thanks
HI, no, not yet (shame :disappointed: )
hi! I'm using an quad-encoder with 1 button, so 2 pins are for encoder (out of phase as mentioned) and another for the button, there together for convenience but the...