Removed debug prints. /JL

This commit is contained in:
2025-04-19 20:18:08 +02:00
parent 3a55ba3d94
commit 2ab9d11769
5 changed files with 1 additions and 23 deletions

View File

@@ -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