

# https://www.globalsino.com/ICs/
# Check pressed key


import keyboard
while True:
    if keyboard.is_pressed("b"):
        print("I pressed 'b' key")
