Change table cell value/content when clicked

So… I am an idiot. The param row and col in lv_table_get_selected_cell() is what it returns/stores the values in rather than asking for it to find the cell. I’ll leave this up since someone might find it useful. How to use :
uint16_t row, col;
lv_table_get_selected_cell(table,&row,&col);

Now you have the row and col from the table that is selected/pressed

1 Like