In the demo for the LzKeys class in the reference manual, if you hold down a key you get a series of key events, e.g: key 75 down key 75 up key 75 down key 75 up key 75 down key 75 up key 75 down key 75 up ... this becomes a real problem when you simply want to know when a key is pressed, and then released later on.
Is there a good way to work out if this is a key-repeat event, or a real key being pressed? In my case, I'm wanting to mark the time a key is pressed, and the time it's let go, and do something based on those two values. These fake events make that harder. Cheers, Robin.
