fri3d-2024: use A for ENTER key and joystick for navigation

Instead of Y for previous and A for next, the joystick is much more intuitive.
This commit is contained in:
Thomas Farstrike
2025-10-20 15:57:29 +02:00
parent ff8045b642
commit e6946098ce
+3 -3
View File
@@ -177,11 +177,11 @@ def keypad_read_cb(indev, data):
if btn_x.value() == 0:
current_key = lv.KEY.ESC
elif btn_y.value() == 0:
current_key = lv.KEY.PREV
current_key = ord("Y")
elif btn_a.value() == 0:
current_key = lv.KEY.NEXT
elif btn_b.value() == 0:
current_key = lv.KEY.ENTER
elif btn_b.value() == 0:
current_key = ord("B")
elif btn_menu.value() == 0:
current_key = lv.KEY.HOME
elif btn_start.value() == 0: