Skip to content
Snippets Groups Projects
Unverified Commit d3480702 authored by Narr the Reg's avatar Narr the Reg Committed by GitHub
Browse files

core/hid: Reduce gyro threshold even more

parent acbfb008
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ namespace Core::HID {
MotionInput::MotionInput() {
// Initialize PID constants with default values
SetPID(0.3f, 0.005f, 0.0f);
SetGyroThreshold(0.001f);
SetGyroThreshold(0.00005f);
}
void MotionInput::SetPID(f32 new_kp, f32 new_ki, f32 new_kd) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment