diff --git a/pygameController/controller.py b/pygameController/controller.py index 5a13a1c..1d2d180 100644 --- a/pygameController/controller.py +++ b/pygameController/controller.py @@ -9,7 +9,7 @@ from .xbox_series_x_controller import XboxSeriesXController from .generic_controller import GenericController from .logitech_dual_action_controller import LogitechDualActionController -__version__ = "0.0.1" +__version__ = "0.0.2" CONTROLLERS = { "DualSense Wireless Controller": DualSenseController, diff --git a/pygameController/generic_controller.py b/pygameController/generic_controller.py index e6bb0b2..ee410b9 100644 --- a/pygameController/generic_controller.py +++ b/pygameController/generic_controller.py @@ -13,11 +13,6 @@ class GenericController(ControlsBase): self.hats: list = [self.device.get_hat(h) for h in range(self.numhats)] self.numbuttons: int = self.device.get_numbuttons() self.buttons: list = [self.device.get_button(b) for b in range(self.numbuttons)] - print(f"{self.name} connected") - print("GUID:", self.guid) - print("Axis:", self.numaxis, self.axis) - print("Hats:", self.numhats, self.hats) - print("Buttons:", self.numbuttons, self.buttons) def handle_input(self, event): pass diff --git a/pygameController/logitech_dual_action_controller.py b/pygameController/logitech_dual_action_controller.py index e380a83..e0e5750 100644 --- a/pygameController/logitech_dual_action_controller.py +++ b/pygameController/logitech_dual_action_controller.py @@ -34,12 +34,6 @@ class LogitechDualActionController(ControlsBase): self.numbuttons: int = self.device.get_numbuttons() self.buttons: list = [self.device.get_button(b) for b in range(self.numbuttons)] self.input_mode = InputMode.DirectInput - print(f"{self.name} connected") - print("GUID:", self.guid) - print("Axis:", self.numaxis, self.axis) - print("Hats:", self.numhats, self.hats) - print("Buttons:", self.numbuttons, self.buttons) - print("Input mode:", self.input_mode) def handle_input(self, event): pass diff --git a/pygameController/logitech_f310_controller.py b/pygameController/logitech_f310_controller.py index be34092..5629f2f 100644 --- a/pygameController/logitech_f310_controller.py +++ b/pygameController/logitech_f310_controller.py @@ -34,12 +34,6 @@ class LogitechF310Controller(ControlsBase): self.numbuttons: int = self.device.get_numbuttons() self.buttons: list = [self.device.get_button(b) for b in range(self.numbuttons)] self.input_mode = InputMode.XInput - print(f"{self.name} connected") - print("GUID:", self.guid) - print("Axis:", self.numaxis, self.axis) - print("Hats:", self.numhats, self.hats) - print("Buttons:", self.numbuttons, self.buttons) - print("Input mode:", self.input_mode) def handle_input(self, event): pass diff --git a/pygameController/xbox_series_x_controller.py b/pygameController/xbox_series_x_controller.py index 7ed608f..dab31ce 100644 --- a/pygameController/xbox_series_x_controller.py +++ b/pygameController/xbox_series_x_controller.py @@ -13,11 +13,6 @@ class XboxSeriesXController: self.hats: list = [self.device.get_hat(h) for h in range(self.numhats)] self.numbuttons: int = self.device.get_numbuttons() self.buttons: list = [self.device.get_button(b) for b in range(self.numbuttons)] - print(f"{self.name} connected") - print("GUID:", self.guid) - print("Axis:", self.numaxis, self.axis) - print("Hats:", self.numhats, self.hats) - print("Buttons:", self.numbuttons, self.buttons) def handle_input(self, event): pass