mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 13:57:39 +00:00
SteamController: Fix PS button and Gyro support for DS4
Make DS4 fields be readonly and optimise DS4 packets.
This commit is contained in:
parent
eed1453daf
commit
00a30cbf5c
5 changed files with 65 additions and 54 deletions
|
|
@ -48,8 +48,8 @@ namespace SteamController.Devices
|
|||
public readonly SteamAxis AccelY = new SteamAxis(0x1A);
|
||||
public readonly SteamAxis AccelZ = new SteamAxis(0x1C);
|
||||
public readonly SteamAxis GyroPitch = new SteamAxis(0x1E);
|
||||
public readonly SteamAxis GyroYaw = new SteamAxis(0x20);
|
||||
public readonly SteamAxis GyroRoll = new SteamAxis(0x22);
|
||||
public readonly SteamAxis GyroRoll = new SteamAxis(0x20);
|
||||
public readonly SteamAxis GyroYaw = new SteamAxis(0x22);
|
||||
public readonly SteamAxis LeftTrigger = new SteamAxis(0x2C);
|
||||
public readonly SteamAxis RightTrigger = new SteamAxis(0x2E);
|
||||
public readonly SteamAxis LeftThumbX = new SteamAxis(0x30) { Deadzone = 5000, MinChange = 10, DeltaValueMode = Devices.DeltaValueMode.AbsoluteTime };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue