Basically I am trying to make a program where there are options and you will have up and down arrows to scroll to something to select. I am playing around with having a square box behind the text but the way I am currently processing how to do it seems complicated and I reached out to a friend but he doesn't mess with circuitpython and microprocessors. Anywho he suggested multithreading and this is what he said:
"you could assign one core to run the 'renderer' process which just draws the current frame on an infinite loop and the other core to update the variables like which selection is currently highlighted"
I am pretty confused on how I could implement that or where to even get started.