Hello NuttX inhabitants! After researching how I can create a keypad for my lvgl applications running on nuttx I stumbled upon:
""" There is no support for input/uinput keyboards yet. The NuttX X11 sim keyboard driver emits keycodes that are not standard so the LVGL integration with it would not be generic, if it were added. """ ( https://docs.lvgl.io/master/details/integration/os/nuttx.html#nuttx-driver-support ) The 'yet' got me thinking that this might be something already being worked on. So i checked github issues and the mailing list I wasn't able to find anything more about it. I also asked on Discord and someone mentioned they had implemented a custom driver that reads from /dev/keypad, which seems like a good workaround. I will probably give that a try myself. That said I wanted to ask here: Is anyone already working on a generic keypad/keyboard input driver for LVGL on NuttX? Or is anyone interested in doing so? It think it would be nice to have already existing nuttx drivers available/integrated into lvgl, As well as ensuring future drivers are supported for both nuttx and lvgl.