Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. # 8Bitdo NES30 Pro - http://8bitdo.com/ - http://8bitdo.com/nes30pro/
  2. # Firmware v1.71 - http://8bitdo.com/nes30pro/Firmware.html - http://download.8bitdo.com/Firmware/Pro/
  3.  
  4. input_driver = "udev"
  5. input_device = "8Bitdo NES30 Pro Joystick"
  6. input_device_display_name = "8Bitdo NES30 Pro BT(POWER+R1)"
  7.  
  8. # Hex vid:pid is found using "dmesg -w" or "tail -f /var/log/syslog" and converted to Decimal using http://www.binaryhexconverter.com/hex-to-decimal-converter
  9. # Hex vid:pid = 3820:0009 -> Decimal vid:pid = 14368:9
  10. input_vendor_id = 14368
  11. input_product_id = 9
  12.  
  13. input_b_btn = "1"
  14. input_y_btn = "4"
  15. input_select_btn = "10"
  16. input_start_btn = "11"
  17. input_a_btn = "0"
  18. input_x_btn = "3"
  19. input_l_btn = "6"
  20. input_r_btn = "7"
  21. input_l2_btn = "8"
  22. input_r2_btn = "9"
  23. input_l3_btn = "13"
  24. input_r3_btn = "14"
  25. input_r_x_plus_axis = "+2"
  26. input_r_x_minus_axis = "-2"
  27. input_r_y_plus_axis = "+3"
  28. input_r_y_minus_axis = "-3"
  29.  
  30. input_b_btn_label = "B"
  31. input_y_btn_label = "Y"
  32. input_select_btn_label = "Select"
  33. input_start_btn_label = "Start"
  34. input_a_btn_label = "A"
  35. input_x_btn_label = "X"
  36. input_l_btn_label = "L1"
  37. input_r_btn_label = "R1"
  38. input_l2_btn_label = "L2"
  39. input_r2_btn_label = "R2"
  40. input_l3_btn_label = "Left Thumb"
  41. input_r3_btn_label = "Right Thumb"
  42. input_r_x_plus_axis_label = "Right Analog Right"
  43. input_r_x_minus_axis_label = "Right Analog Left"
  44. input_r_y_plus_axis_label = "Right Analog Down"
  45. input_r_y_minus_axis_label = "Right Analog Up"
  46.  
  47. # Bluetooth Mode(POWER+R1) D-pad = Joystick and Left Analog = Buttons.
  48. input_up_axis = "-1"
  49. input_down_axis = "+1"
  50. input_left_axis = "-0"
  51. input_right_axis = "+0"
  52. input_l_x_plus_btn = "h0right"
  53. input_l_x_minus_btn = "h0left"
  54. input_l_y_plus_btn = "h0down"
  55. input_l_y_minus_btn = "h0up"
  56.  
  57. input_up_axis_label = "D-Pad Up"
  58. input_down_axis_label = "D-Pad Down"
  59. input_left_axis_label = "D-Pad Left"
  60. input_right_axis_label = "D-Pad Right"
  61. input_l_x_plus_btn_label = "Left Analog Right"
  62. input_l_x_minus_btn_label = "Left Analog Left"
  63. input_l_y_plus_btn_label = "Left Analog Down"
  64. input_l_y_minus_btn_label = "Left Analog Up"
  65.  
  66. # -------------------------------------------------------------------------------------------------------------------------------------------------
  67. # If RetroArch do NOT detect the controller when connected via Bluetooth and won't even recognize manual binding,
  68. # fix it by adding this udev rule (the line below WITHOUT the # symbol at the beginning!) to "/etc/udev/rules.d/10-local.rules" and reboot.
  69. # SUBSYSTEM=="input", ATTRS{name}=="8Bitdo NES30 Pro Joystick", MODE="0666", ENV{ID_INPUT_JOYSTICK}="1"
  70. # -------------------------------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement