From c67bd8faea392e4a9bafb7bff6223d64ded16f0a Mon Sep 17 00:00:00 2001 From: David Dillow Date: Thu, 30 Aug 2012 22:06:00 -0400 Subject: [PATCH] fakehid: Add support for Logitech Harmony Adapter for PS3 This emulates a Sony BD Remote for the Logitech Harmony series of universal remotes. --- profiles/input/fakehid.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/profiles/input/fakehid.c b/profiles/input/fakehid.c index e258e60b9..05f5894c7 100644 --- a/profiles/input/fakehid.c +++ b/profiles/input/fakehid.c @@ -374,6 +374,16 @@ static struct fake_hid fake_hid_table[] = { .setup_uinput = ps3remote_setup_uinput, .devices = NULL, }, + /* Logitech Harmony Adapter for PS3 */ + { + .vendor = 0x046d, + .product = 0x0306, + .connect = fake_hid_common_connect, + .disconnect = fake_hid_common_disconnect, + .event = ps3remote_event, + .setup_uinput = ps3remote_setup_uinput, + .devices = NULL, + }, { }, }; -- 2.47.3