WIKI Fixes

This commit is contained in:
Lazorne 2024-01-18 11:08:11 +01:00
parent 814b68f654
commit e97a0e0168
7 changed files with 222 additions and 12 deletions

View file

@ -8,13 +8,13 @@ A few of them also require Windows only software to configure various inputs and
If you own a Racing Controller the best solution is just to try it on Linux via the Steam Deck Dock or a Linux PC and see if it works as expected.<br> If you own a Racing Controller the best solution is just to try it on Linux via the Steam Deck Dock or a Linux PC and see if it works as expected.<br>
If it does work on Linux and it supports xinput, we see no reason why it should not work on RetroDECK. If it does work on Linux and it supports xinput, we see no reason why it should not work on RetroDECK.
If you have a Flight Controller that did not work on Linux but have found a way to make it work:<br> If you have a Racing Controller that did not work on Linux but have found a way to make it work:<br>
- Contribute udev rules to the [game-devices-udev codeberg](https://codeberg.org/fabiscafe/game-devices-udev) - Contribute udev rules to the [game-devices-udev codeberg](https://codeberg.org/fabiscafe/game-devices-udev)
- Contribute to the Oversteer project - Contribute to the Oversteer project
- (Optional) Inform the RetroDECK team on how you got it working on discord. - (Optional) Inform the RetroDECK team on how you got it working on discord.
**Oversteer** ## The Oversteer Project
The [OverSteer Project](https://github.com/berarma/oversteer) is trying to manage support multiple Steering Wheels on Linux. It is still in the early stages of development. The [OverSteer Project](https://github.com/berarma/oversteer) is trying to manage support multiple Steering Wheels on Linux. It is still in the early stages of development.
@ -23,15 +23,10 @@ It doesn't provide hardware support, you'll still need a driver module that enab
Most wheels will work but won't have FFB without specific drivers that support that feature. Most wheels will work but won't have FFB without specific drivers that support that feature.
## Steering Wheels, Pedals and Gear Shifters ## Steering Wheels, Pedals and Gear Shifters
<img src="../../wiki_images/controllers/racing-kit.png" width="250"> <img src="../../../wiki_images/controllers/racing-kit.png" width="250">
- Steering Wheel - Steering Wheel
- Pedals - Pedals
- Gear Shifter - Gear Shifters
All of them needs seperate driver modules and udev rules to work.

View file

@ -0,0 +1,84 @@
# Toys-to-life Controllers
Toys-to-life Controllers is a broad category that encompasses the vast majority of mostly first party controllers that are used to connect collectable toys figures that can via the controller interact with the game.
## LEGO Dimensions
### LEGO ToyPad
<img src="../../wiki_images/controllers/lego-toypad.png" width="250">
#### Steam Input Support
No
#### Linux Kernel Support
Yes, it is an NFC reader USB device.
#### Emulator usecase
RPCS3
#### How-to configure the Toypad
##### Add the udev rule for the Toypad
You will need root privlages for this.
Open a Terminal Window and execute the following command to add the udev rule:
```bash
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0241", MODE="0666"' | sudo tee -a /etc/udev/rules.d/71-toypad.rules > /dev/null
sudo udevadm control --reload-rules
```
It should now work in RetroDECK for Lego Dimensions in the RPCS3 emulator.
##### Some tips
Before you launch Lego Dimensions from RetroDECK you need to keep the following things in mind:
- The ToyPad must be connected to the USB Port Before launching the game in RetroDECK and RPCS3
- The ToyPad must be connected to a USB Port that gives it enough power to run.
Additional Steam Deck information:
- The Steam Deck's USB-C port does not transmit enough power for the ToyPad, you will need use dock or use a powered USB-C hub.
## Skylanders
### Portal of Power
<img src="../../wiki_images/controllers/portal-of-power.png" width="250">
The Portal of Power is used for the Skylanders game Series.
#### How to configure
WIP
### Traptanium Portal
<img src="../../wiki_images/controllers/traptanium-portal.png" width="250">
The Traptanium Portal is used for the game Skylanders: Trap Team.
#### How to configure
WIP
## Disney Infinity
### Infinity Base
<img src="../../wiki_images/controllers/disney-infinity-base.png" width="250">
#### How to configure
WIP
## Kamen Rider Summonride
### Summonrider Portal
<img src="../../wiki_images/controllers/kamen-rider-summonride-portal.png" width="250">
#### How to configure
WIP

View file

@ -0,0 +1,84 @@
# Toys-to-life Controllers
Toys-to-life Controllers is a broad category that encompasses the vast majority of mostly first party controllers that are used to connect collectable toys figures that can via the controller interact with the game.
## LEGO Dimensions
### LEGO ToyPad
<img src="../../wiki_images/controllers/lego-toypad.png" width="250">
#### Steam Input Support
No
#### Linux Kernel Support
Yes, it is an NFC reader USB device.
#### Emulator usecase
RPCS3
#### How-to configure the Toypad
##### Add the udev rule for the Toypad
You will need root privlages for this.
Open a Terminal Window and execute the following command to add the udev rule:
```bash
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0241", MODE="0666"' | sudo tee -a /etc/udev/rules.d/71-toypad.rules > /dev/null
sudo udevadm control --reload-rules
```
It should now work in RetroDECK for Lego Dimensions in the RPCS3 emulator.
##### Some tips
Before you launch Lego Dimensions from RetroDECK you need to keep the following things in mind:
- The ToyPad must be connected to the USB Port Before launching the game in RetroDECK and RPCS3
- The ToyPad must be connected to a USB Port that gives it enough power to run.
Additional Steam Deck information:
- The Steam Deck's USB-C port does not transmit enough power for the ToyPad, you will need use dock or use a powered USB-C hub.
## Skylanders
### Portal of Power
<img src="../../wiki_images/controllers/portal-of-power.png" width="250">
The Portal of Power is used for the Skylanders game Series.
#### How to configure
WIP
### Traptanium Portal
<img src="../../wiki_images/controllers/traptanium-portal.png" width="250">
The Traptanium Portal is used for the game Skylanders: Trap Team.
#### How to configure
WIP
## Disney Infinity
### Infinity Base
<img src="../../wiki_images/controllers/disney-infinity-base.png" width="250">
#### How to configure
WIP
## Kamen Rider Summonride
### Summonrider Portal
<img src="../../wiki_images/controllers/kamen-rider-summonride-portal.png" width="250">
#### How to configure
WIP

View file

@ -0,0 +1,3 @@
# About Toys-to-life Controllers
Toys-to-life Controllers is a broad category that encompasses the vast majority of mostly first party controllers that are used to connect collectable toys figures that can via the portal interact with the game.

View file

@ -0,0 +1,42 @@
### LEGO ToyPad
<img src="../../../wiki_images/controllers/lego-toypad.png" width="250">
Used for the game Lego Dimensions
### Steam Input Support
No
### Linux Kernel Support
Yes, it is an NFC reader USB device.
### Emulator usecase
`RPCS3` `Xenia`
## How to configure
`RPCS3` is the only emulator that supports the Toypad as of this writing.
### Prerequisite: add the udev rule for the Toypad
You will need root privlages for this.
Open a Terminal Window and execute the following command to add the udev rule:
```bash
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0241", MODE="0666"' | sudo tee -a /etc/udev/rules.d/71-toypad.rules > /dev/null
sudo udevadm control --reload-rules
```
It should now work in RetroDECK for Lego Dimensions in the RPCS3 emulator.
### RPCS3 - Lego ToyPad Tips
Before you launch Lego Dimensions from RetroDECK you need to keep the following things in mind:
- The ToyPad must be connected to the USB Port Before launching the game in RetroDECK and RPCS3
- The ToyPad must be connected to a USB Port that gives it enough power to run.
Additional Steam Deck information:
- The Steam Deck's USB-C port does not transmit enough power for the ToyPad, you will need use dock or use a powered USB-C hub.

View file

@ -236,8 +236,10 @@ nav:
- Singstar - Microphone: wiki_controllers/music/singstar-microphone.md - Singstar - Microphone: wiki_controllers/music/singstar-microphone.md
- Taiko Drum & Bachi: wiki_controllers/music/taiko-drum-bachi.md - Taiko Drum & Bachi: wiki_controllers/music/taiko-drum-bachi.md
- SORT ME: - Controllers - Racing (WIP) 🏎️:
- Racing - Controllers (WIP): wiki_controllers/controllers-racing.md - About Racing Controllers: wiki_controllers/racing/about-racing.md
- Toys-to-life - Controllers (WIP): wiki_controllers/controllers-toys-to-life.md
- Controllers - Toys-to-life (WIP) 🧸:
- About Toys-to-life Controllers: wiki_controllers/toystolife/about-toys-to-life.md