blob: b36e946a547f4b9d776ef7899d751dfa82df7a75 [file] [log] [blame]
Siarhei Vishniakou94db68e2019-06-12 09:59:59 -07001# Copyright (C) 2019 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#
16# Nintendo Switch Pro Controller - HAC-013 - Bluetooth
17#
18
19
20# Mapping according to https://developer.android.com/training/game-controllers/controller-input.html
21
22# Button labeled as "Y" but should really produce keycode "X"
23key 0x132 BUTTON_X
24# Button labeled as "B" but should really produce keycode "A"
25key 0x130 BUTTON_A
26# Button labeled as "A" but should really produce keycode "B"
27key 0x131 BUTTON_B
28# Button labeled as "X" but should really product keycode "Y"
29key 0x133 BUTTON_Y
30
31# Button labeled as "L"
32key 0x134 BUTTON_L1
33# Button labeled as "R"
34key 0x135 BUTTON_R1
35
36# No LT / RT axes on this controller. Instead, there are keys.
37# Trigger labeled as "ZL"
38key 0x136 BUTTON_L2
39# Trigger labeled as "ZR"
40key 0x137 BUTTON_R2
41
42# Left Analog Stick
43axis 0x00 X
44axis 0x01 Y
45# Right Analog Stick
46axis 0x03 Z
47axis 0x04 RZ
48
49# Left stick click (generates linux BTN_SELECT)
50key 0x13a BUTTON_THUMBL
51# Right stick click (generates linux BTN_START)
52key 0x13b BUTTON_THUMBR
53
54# Hat
55axis 0x10 HAT_X
56axis 0x11 HAT_Y
57
58# Mapping according to https://www.kernel.org/doc/Documentation/input/gamepad.txt
59# Minus
60key 0x138 BUTTON_SELECT
61# Plus
62key 0x139 BUTTON_START
63
64# Circle
65key 0x13d BUTTON_MODE
66
67# Home key
68key 0x13c HOME