Added Playstation 3 controller. /JL

This commit is contained in:
2025-05-04 14:44:53 +02:00
parent 304e42025c
commit 2bbf4e19d1
4 changed files with 77 additions and 5 deletions

View File

@@ -6,11 +6,12 @@ from .logitech_f310_controller import LogitechF310Controller
from .logitech_f510_controller import LogitechF510Controller
from .logitech_f710_controller import LogitechF710Controller
from .xbox_series_x_controller import XboxSeriesXController
from .dualshock3_controller import DualShock3Controller
from .sony_playstation3_controller import SonyPlayStation3Controller
from .playstation3_controller import PlayStation3Controller
from .generic_controller import GenericController
from .logitech_dual_action_controller import LogitechDualActionController
__version__ = "0.1.12"
__version__ = "0.1.13"
CONTROLLERS = {
"DualSense Wireless Controller": DualSenseController,
@@ -20,7 +21,8 @@ CONTROLLERS = {
"Logitech Gamepad F710": LogitechF710Controller,
"Logitech Dual Action": LogitechDualActionController,
"Xbox Series X Controller": XboxSeriesXController,
"PLAYSTATION(R)3 Controller": DualShock3Controller
"Sony PLAYSTATION(R)3 Controller": SonyPlayStation3Controller,
"PLAYSTATION(R)3 Controller": PlayStation3Controller
}
class Controllers: