How to use lv_indev_drv_t with hardware buttons? · Issue #...
Hello. I have 4 tact buttons that connected to mcu. I have task which can receive which of them is pressed: void my_task(void* arg) { uint32_t io_num; while(1) { if(xQueueReceive(buttons_evt_queue, &io_num, 300)) { process_buttons(io_num...