pinnacle-color.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pinnacle-color.h - Keytable for pinnacle_color Remote Controller
  2. *
  3. * Imported from ir-keymaps.c
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. #ifdef IR_KEYMAPS
  11. static struct ir_scancode pinnacle_color[] = {
  12. { 0x59, KEY_MUTE },
  13. { 0x4a, KEY_POWER },
  14. { 0x18, KEY_TEXT },
  15. { 0x26, KEY_TV },
  16. { 0x3d, KEY_PRINT },
  17. { 0x48, KEY_RED },
  18. { 0x04, KEY_GREEN },
  19. { 0x11, KEY_YELLOW },
  20. { 0x00, KEY_BLUE },
  21. { 0x2d, KEY_VOLUMEUP },
  22. { 0x1e, KEY_VOLUMEDOWN },
  23. { 0x49, KEY_MENU },
  24. { 0x16, KEY_CHANNELUP },
  25. { 0x17, KEY_CHANNELDOWN },
  26. { 0x20, KEY_UP },
  27. { 0x21, KEY_DOWN },
  28. { 0x22, KEY_LEFT },
  29. { 0x23, KEY_RIGHT },
  30. { 0x0d, KEY_SELECT },
  31. { 0x08, KEY_BACK },
  32. { 0x07, KEY_REFRESH },
  33. { 0x2f, KEY_ZOOM },
  34. { 0x29, KEY_RECORD },
  35. { 0x4b, KEY_PAUSE },
  36. { 0x4d, KEY_REWIND },
  37. { 0x2e, KEY_PLAY },
  38. { 0x4e, KEY_FORWARD },
  39. { 0x53, KEY_PREVIOUS },
  40. { 0x4c, KEY_STOP },
  41. { 0x54, KEY_NEXT },
  42. { 0x69, KEY_0 },
  43. { 0x6a, KEY_1 },
  44. { 0x6b, KEY_2 },
  45. { 0x6c, KEY_3 },
  46. { 0x6d, KEY_4 },
  47. { 0x6e, KEY_5 },
  48. { 0x6f, KEY_6 },
  49. { 0x70, KEY_7 },
  50. { 0x71, KEY_8 },
  51. { 0x72, KEY_9 },
  52. { 0x74, KEY_CHANNEL },
  53. { 0x0a, KEY_BACKSPACE },
  54. };
  55. DEFINE_LEGACY_IR_KEYTABLE(pinnacle_color);
  56. #else
  57. DECLARE_IR_KEYTABLE(pinnacle_color);
  58. #endif