1 /* LME2510 remote control
4 * Copyright (C) 2010 Malcolm Priestley (tvboxspy@gmail.com)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <media/rc-map.h>
13 #include <linux/module.h>
16 static struct rc_map_table lme2510_rc
[] = {
17 /* Type 1 - 26 buttons */
28 { 0x10ed43, KEY_POWER
},
29 { 0x10ed46, KEY_SUBTITLE
},
30 { 0x10ed06, KEY_PAUSE
},
31 { 0x10ed03, KEY_MEDIA_REPEAT
},
32 { 0x10ed02, KEY_PAUSE
},
33 { 0x10ed5e, KEY_VOLUMEUP
},
34 { 0x10ed5c, KEY_VOLUMEDOWN
},
35 { 0x10ed09, KEY_CHANNELUP
},
36 { 0x10ed1a, KEY_CHANNELDOWN
},
37 { 0x10ed1e, KEY_PLAY
},
38 { 0x10ed1b, KEY_ZOOM
},
39 { 0x10ed59, KEY_MUTE
},
41 { 0x10ed18, KEY_RECORD
},
42 { 0x10ed07, KEY_EPG
},
43 { 0x10ed01, KEY_STOP
},
44 /* Type 2 - 20 buttons */
55 { 0xbf00, KEY_POWER
},
56 { 0xbf04, KEY_MEDIA_REPEAT
}, /* Recall */
57 { 0xbf1a, KEY_PAUSE
}, /* Timeshift */
58 { 0xbf02, KEY_VOLUMEUP
}, /* 2 x -/+ Keys not marked */
59 { 0xbf06, KEY_VOLUMEDOWN
}, /* Volume defined as right hand*/
60 { 0xbf01, KEY_CHANNELUP
},
61 { 0xbf05, KEY_CHANNELDOWN
},
63 { 0xbf18, KEY_RECORD
},
65 /* Type 3 - 20 buttons */
77 { 0x44, KEY_MEDIA_REPEAT
}, /* Recall */
78 { 0x4a, KEY_PAUSE
}, /* Timeshift */
79 { 0x47, KEY_VOLUMEUP
}, /* 2 x -/+ Keys not marked */
80 { 0x43, KEY_VOLUMEDOWN
}, /* Volume defined as right hand*/
81 { 0x46, KEY_CHANNELUP
},
82 { 0x40, KEY_CHANNELDOWN
},
88 static struct rc_map_list lme2510_map
= {
91 .size
= ARRAY_SIZE(lme2510_rc
),
92 .rc_type
= RC_TYPE_NEC
,
93 .name
= RC_MAP_LME2510
,
97 static int __init
init_rc_lme2510_map(void)
99 return rc_map_register(&lme2510_map
);
102 static void __exit
exit_rc_lme2510_map(void)
104 rc_map_unregister(&lme2510_map
);
107 module_init(init_rc_lme2510_map
)
108 module_exit(exit_rc_lme2510_map
)
110 MODULE_LICENSE("GPL");
111 MODULE_AUTHOR("Malcolm Priestley tvboxspy@gmail.com");