Rui Azevedo
Rui Azevedo
ok, built in module functions are working (at least I've tested with evaluate, Ok). looking forward for user functions great work, thanks!
hi, the `FIELD` uses the type of the variable (__pwm__) that you provide, it can be `long int` of `float` (i guess). The limits can be set anywhere on the...
Is this still an issue? if so i can add some details of how its implemented on C++...
please check construction paeameters ie: ```c++ PANELS(ucgPanels,{0,0,TFT_Width/fontX,TFT_Height/fontY}); TFTOut tftOut(tft,colors,ucg_tops,ucgPanels,fontX,fontY); ``` `fontX` and `fontY` must match your font dimensions the panel size/pos is also important, please check it is inside drawing...
not sure if this helps, if dealing with value fields, they are hooked to your variables, so the values are already on the variables... but if you still want you...
`trace` macros are defined here https://github.com/neu-rah/ArduinoMenu/blob/9ef1e267639140925add8a46dd8a12ec932d3b3d/src/menuDefs.h#L36 debug output example: https://github.com/neu-rah/ArduinoMenu/blob/9ef1e267639140925add8a46dd8a12ec932d3b3d/src/items.cpp#L95
hi! Not out of the box, but one can derive the proper output class to do a driver for that library, inspired on the existing LCD driver possibly. Usually that...
Hi! there is an example using analog joystick https://github.com/neu-rah/ArduinoMenu/blob/master/examples/ajoy/ajoy/ajoy.ino but one thing about the lib is that it can be command driven, one doesn't need an input driver, simply issue...
its a macro limitation, see dynamic example on how to build bigger lists (and also to allow less than 2 items)
maybe this helps, you can set your own function as idle handler https://github.com/neu-rah/ArduinoMenu/wiki/Idling https://github.com/neu-rah/ArduinoMenu/blob/master/examples/fullIdle/fullIdle/fullIdle.ino