diff options
author | David Dillow <dave@thedillows.org> | 2012-08-30 22:06:00 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-09-07 15:44:47 +0300 |
commit | c67bd8faea392e4a9bafb7bff6223d64ded16f0a (patch) | |
tree | a82c89a6282d410dc05a4cbe8344bff8a2131140 /profiles | |
parent | 7bd80379a9d85acae1c1b6bcb08c673d9760dee9 (diff) |
fakehid: Add support for Logitech Harmony Adapter for PS3
This emulates a Sony BD Remote for the Logitech Harmony series of
universal remotes.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/input/fakehid.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/profiles/input/fakehid.c b/profiles/input/fakehid.c index e258e60b..05f5894c 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, + }, { }, }; |