-
Notifications
You must be signed in to change notification settings - Fork 63
fix(Hardware Support): Add 8bitdo Pro3 #624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
HikariKnight
wants to merge
1
commit into
ShadowBlip:main
Choose a base branch
from
HikariKnight:8bitdoPro3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| # yaml-language-server: $schema=https://raw.githubusercontent.com/ShadowBlip/InputPlumber/main/rootfs/usr/share/inputplumber/schema/composite_device_v1.json | ||
| # Schema version number | ||
| version: 1 | ||
|
|
||
| # The type of configuration schema | ||
| kind: CompositeDevice | ||
|
|
||
| # Name of the composite device mapping | ||
| name: 8BitDo Pro 3 | ||
|
|
||
| # Only use this profile if *any* of the given matches matches. If this list is | ||
| # empty, then the source devices will *always* be checked. | ||
| # /sys/class/dmi/id/product_name | ||
| matches: [] | ||
|
|
||
| # Only allow a single source device per composite device of this type. | ||
| single_source: false | ||
|
|
||
| # Maximum number of source devices per CompositeDevice. | ||
| maximum_sources: 2 | ||
|
|
||
| # One or more source devices to combine into a single virtual device. The events | ||
| # from these devices will be watched and translated according to the key map. | ||
| source_devices: | ||
| # Dinput/SteamInput Mode | ||
| - group: gamepad | ||
| blocked: true | ||
| evdev: | ||
| name: "8BitDo Pro 3" | ||
| vendor_id: "2dc8" | ||
| product_id: "6009" | ||
| capability_map_id: dinput_generic | ||
| - group: gamepad | ||
| hidraw: | ||
| vendor_id: 0x2dc8 | ||
| product_id: 0x6009 | ||
| interface_num: 0 | ||
| # XInput/Receiver Mode | ||
| - group: gamepad | ||
| blocked: true | ||
| evdev: | ||
| name: "8BitDo Ultimate 2 Wireless Controller" | ||
| vendor_id: "2dc8" | ||
| product_id: "310b" | ||
| - group: gamepad | ||
| hidraw: | ||
| vendor_id: 0x2dc8 | ||
| product_id: 0x310b | ||
| interface_num: 0 | ||
|
|
||
| # The target input device(s) to emulate by default | ||
| target_devices: | ||
| - gamepad | ||
| - mouse | ||
| - keyboard | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section is carried over from the ultimate 2 and should be removed