You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if event.action == "pressed":
# Check which direction
if event.direction == "middle":
flipped = False # exits the loop
sense.set_rotation(direction_dict[event.direction])
sense.show_letter(arrow)
You could also do: if event.direction in ["up", "down", "left", "right"]:
The text was updated successfully, but these errors were encountered:
jaccuse/main.py
Line 42 in 7e10ab5
You can make this just a few lines like:
You could also do:
if event.direction in ["up", "down", "left", "right"]:
The text was updated successfully, but these errors were encountered: