2 * Medion X10 OR22/OR24 RF remote keytable
4 * Copyright (C) 2012 Anssi Hannula <anssi.hannula@iki.fi>
6 * This keymap is for several Medion X10 remotes that have the Windows MCE
7 * button. This has been tested with a "RF VISTA Remote Control", OR24V,
8 * P/N 20035335, but should work with other variants that have the same
9 * buttons, such as OR22V and OR24E.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <linux/module.h>
27 #include <media/rc-map.h>
29 static struct rc_map_table medion_x10_or2x
[] = {
31 { 0x16, KEY_TEXT
}, /* "T" in a box, for teletext */
33 { 0x09, KEY_VOLUMEUP
},
34 { 0x08, KEY_VOLUMEDOWN
},
36 { 0x0b, KEY_CHANNELUP
},
37 { 0x0c, KEY_CHANNELDOWN
},
44 { 0x18, KEY_PVR
}, /* record symbol inside a tv symbol */
45 { 0x04, KEY_DVD
}, /* disc symbol */
46 { 0x31, KEY_EPG
}, /* a tv schedule symbol */
47 { 0x1c, KEY_TV
}, /* play symbol inside a tv symbol */
57 { 0x1b, KEY_MEDIA
}, /* Windows MCE button */
59 { 0x21, KEY_PREVIOUS
},
62 { 0x26, KEY_FORWARD
},
80 { 0x37, KEY_NUMERIC_STAR
},
81 { 0x38, KEY_NUMERIC_POUND
},
84 static struct rc_map_list medion_x10_or2x_map
= {
86 .scan
= medion_x10_or2x
,
87 .size
= ARRAY_SIZE(medion_x10_or2x
),
88 .rc_type
= RC_TYPE_OTHER
,
89 .name
= RC_MAP_MEDION_X10_OR2X
,
93 static int __init
init_rc_map_medion_x10_or2x(void)
95 return rc_map_register(&medion_x10_or2x_map
);
98 static void __exit
exit_rc_map_medion_x10_or2x(void)
100 rc_map_unregister(&medion_x10_or2x_map
);
103 module_init(init_rc_map_medion_x10_or2x
)
104 module_exit(exit_rc_map_medion_x10_or2x
)
106 MODULE_DESCRIPTION("Medion X10 OR22/OR24 RF remote keytable");
107 MODULE_AUTHOR("Anssi Hannula <anssi.hannula@iki.fi>");
108 MODULE_LICENSE("GPL");