Skip to content

Instantly share code, notes, and snippets.

@HuangJiaLian
Created March 31, 2022 15:29
Show Gist options
  • Save HuangJiaLian/c462e3d7d21b528111ec3716a645ef79 to your computer and use it in GitHub Desktop.
Save HuangJiaLian/c462e3d7d21b528111ec3716a645ef79 to your computer and use it in GitHub Desktop.
Q key to exit
def key_pressed(event):
global ON
if event.char == ' ':
ON = not ON
elif event.char == 't':
tap_estimate()
elif event.char == 'q':
exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment