/ examples / event_test.py
event_test.py
 1  # SPDX-FileCopyrightText: 2023 Jeff Epler for Adafruit Industries
 2  #
 3  # SPDX-License-Identifier: MIT
 4  
 5  from adafruit_editor.dang import wrapper
 6  
 7  
 8  def main(stdscr):
 9      while True:
10          print(repr(stdscr.getkey()))
11  
12  
13  wrapper(main)