SteamController: Add initial DS4 support (with Gyro, Accel, Trackpads and Haptics)

This commit is contained in:
Kamil Trzciński 2023-02-10 11:05:23 +01:00
parent 862d7afec5
commit 70237ad9d4
13 changed files with 739 additions and 33 deletions

View file

@ -37,6 +37,7 @@ namespace SteamController
var nextReset = stopwatch.Elapsed.Add(UpdateResetInterval);
X360.Start();
DS4.Start();
while (threadRunning)
{
@ -58,6 +59,7 @@ namespace SteamController
}
X360.Stop();
DS4.Stop();
}
public void Stop()