mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 20:03:53 +08:00
joystick: revert max axes value (#25483)
revert this to 255
old-commit-hash: 16fe10e128
This commit is contained in:
@@ -41,7 +41,7 @@ class Joystick:
|
||||
def __init__(self):
|
||||
# TODO: find a way to get this from API, perhaps "inputs" doesn't support it
|
||||
self.min_axis_value = {'ABS_Y': 0., 'ABS_RZ': 0.}
|
||||
self.max_axis_value = {'ABS_Y': 1023., 'ABS_RZ': 255.}
|
||||
self.max_axis_value = {'ABS_Y': 255., 'ABS_RZ': 255.}
|
||||
self.cancel_button = 'BTN_TRIGGER'
|
||||
self.axes_values = {'ABS_Y': 0., 'ABS_RZ': 0.} # gb, steer
|
||||
self.axes_order = ['ABS_Y', 'ABS_RZ']
|
||||
|
||||
Reference in New Issue
Block a user