I'm working with a Trinket M0 running CircuitPython (newest); I'm very new to CircuitPython and the Trinket M0; this is my first project with them.
I have what's probably a very basic question. I see that CircuitPython doesn't support an interrupt handler, but I know there's more than one way to skin a cat.
My Trinket M0 is controlling three NeoPixel rings, and it gets into some pretty long FOR loops with various patterns of light.
And I'd like to change the pattern of lights when it reads voltage on an input pin. However, that voltage is fairly momentary from another circuit (perhaps 0.2 seconds).
Without using an interrupt, what is a good CircuitPython trick to know that input pin went high while the program may have missed it during one of its light pattern FOR loops?