rc-medion-x10-or2x.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Medion X10 OR22/OR24 RF remote keytable
  3. *
  4. * Copyright (C) 2012 Anssi Hannula <anssi.hannula@iki.fi>
  5. *
  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.
  10. *
  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.
  15. *
  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.
  20. *
  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.
  24. */
  25. #include <linux/module.h>
  26. #include <media/rc-map.h>
  27. static struct rc_map_table medion_x10_or2x[] = {
  28. { 0x02, KEY_POWER },
  29. { 0x16, KEY_TEXT }, /* "T" in a box, for teletext */
  30. { 0x09, KEY_VOLUMEUP },
  31. { 0x08, KEY_VOLUMEDOWN },
  32. { 0x00, KEY_MUTE },
  33. { 0x0b, KEY_CHANNELUP },
  34. { 0x0c, KEY_CHANNELDOWN },
  35. { 0x32, KEY_RED },
  36. { 0x33, KEY_GREEN },
  37. { 0x34, KEY_YELLOW },
  38. { 0x35, KEY_BLUE },
  39. { 0x18, KEY_PVR }, /* record symbol inside a tv symbol */
  40. { 0x04, KEY_DVD }, /* disc symbol */
  41. { 0x31, KEY_EPG }, /* a tv schedule symbol */
  42. { 0x1c, KEY_TV }, /* play symbol inside a tv symbol */
  43. { 0x20, KEY_BACK },
  44. { 0x2f, KEY_INFO },
  45. { 0x1a, KEY_UP },
  46. { 0x22, KEY_DOWN },
  47. { 0x1d, KEY_LEFT },
  48. { 0x1f, KEY_RIGHT },
  49. { 0x1e, KEY_OK },
  50. { 0x1b, KEY_MEDIA }, /* Windows MCE button */
  51. { 0x21, KEY_PREVIOUS },
  52. { 0x23, KEY_NEXT },
  53. { 0x24, KEY_REWIND },
  54. { 0x26, KEY_FORWARD },
  55. { 0x25, KEY_PLAY },
  56. { 0x28, KEY_STOP },
  57. { 0x29, KEY_PAUSE },
  58. { 0x27, KEY_RECORD },
  59. { 0x0d, KEY_1 },
  60. { 0x0e, KEY_2 },
  61. { 0x0f, KEY_3 },
  62. { 0x10, KEY_4 },
  63. { 0x11, KEY_5 },
  64. { 0x12, KEY_6 },
  65. { 0x13, KEY_7 },
  66. { 0x14, KEY_8 },
  67. { 0x15, KEY_9 },
  68. { 0x17, KEY_0 },
  69. { 0x30, KEY_CLEAR },
  70. { 0x36, KEY_ENTER },
  71. { 0x37, KEY_NUMERIC_STAR },
  72. { 0x38, KEY_NUMERIC_POUND },
  73. };
  74. static struct rc_map_list medion_x10_or2x_map = {
  75. .map = {
  76. .scan = medion_x10_or2x,
  77. .size = ARRAY_SIZE(medion_x10_or2x),
  78. .rc_type = RC_TYPE_OTHER,
  79. .name = RC_MAP_MEDION_X10_OR2X,
  80. }
  81. };
  82. static int __init init_rc_map_medion_x10_or2x(void)
  83. {
  84. return rc_map_register(&medion_x10_or2x_map);
  85. }
  86. static void __exit exit_rc_map_medion_x10_or2x(void)
  87. {
  88. rc_map_unregister(&medion_x10_or2x_map);
  89. }
  90. module_init(init_rc_map_medion_x10_or2x)
  91. module_exit(exit_rc_map_medion_x10_or2x)
  92. MODULE_DESCRIPTION("Medion X10 OR22/OR24 RF remote keytable");
  93. MODULE_AUTHOR("Anssi Hannula <anssi.hannula@iki.fi>");
  94. MODULE_LICENSE("GPL");