From fafeebb782be5b8e6dedbb044530a8248f68ec53 Mon Sep 17 00:00:00 2001 From: ndeadly <24677491+ndeadly@users.noreply.github.com> Date: Fri, 29 Jan 2021 17:23:07 +0100 Subject: [PATCH] bluetooth-mitm: add support for gamesir t1s controller --- bluetooth-mitm/source/controllers/gamesir_controller.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bluetooth-mitm/source/controllers/gamesir_controller.hpp b/bluetooth-mitm/source/controllers/gamesir_controller.hpp index c654958..b5a321b 100644 --- a/bluetooth-mitm/source/controllers/gamesir_controller.hpp +++ b/bluetooth-mitm/source/controllers/gamesir_controller.hpp @@ -86,9 +86,10 @@ namespace ams::controller { public: static constexpr const HardwareID hardware_ids[] = { - {0xffff, 0x046e}, // Gamesir-G3s - {0x05ac, 0x022d}, // Gamesir-G3s (Alternate mode. Lol, this is actually the ID of an Apple wireless keyboard) - {0xffff, 0x046f} // Gamesir-G4s + {0xffff, 0x046e}, // Gamesir G3s + {0x05ac, 0x022d}, // Gamesir G3s (Alternate mode. Lol, this is actually the ID of an Apple wireless keyboard) + {0xffff, 0x046f}, // Gamesir G4s + {0xffff, 0x0450} // Gamesir T1s }; GamesirController(const bluetooth::Address *address)