From c78a58b0c458e7e2e039dd202a0893da803afdd4 Mon Sep 17 00:00:00 2001 From: ndeadly <24677491+ndeadly@users.noreply.github.com> Date: Mon, 28 Sep 2020 19:57:25 +0200 Subject: [PATCH] bluetooth-mitm: whitelist hardware ID for Moga Pro 2 controller --- bluetooth-mitm/source/controllers/powera_controller.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bluetooth-mitm/source/controllers/powera_controller.hpp b/bluetooth-mitm/source/controllers/powera_controller.hpp index 23cf540..1c7c685 100644 --- a/bluetooth-mitm/source/controllers/powera_controller.hpp +++ b/bluetooth-mitm/source/controllers/powera_controller.hpp @@ -73,7 +73,8 @@ namespace ams::controller { public: static constexpr const HardwareID hardware_ids[] = { - {0x20d6, 0x89e5} // Moga Hero Controller + {0x20d6, 0x89e5}, // Moga Hero Controller + {0x20d6, 0x6271} // Moga Pro 2 Controller }; PowerAController(const bluetooth::Address *address)