donkeypart_ps3_controller icon indicating copy to clipboard operation
donkeypart_ps3_controller copied to clipboard

:bug: README error update

Open yannis-mlgrn opened this issue 11 months ago • 0 comments

i had a error, i couldn't turn with my joystick. set_steering() function return the good angle when i move the axis. The error was these line in the documentation :

 V.add(ctr,
      inputs=['cam/image_array'],
      outputs=['user/angle', 'user/throttle', 'user/mode', 'recording'],
      threaded=True)

we need to replace 'user/angle' by 'user/steering' Result :

            V.add(
                ctr,
                inputs=['cam/image_array'],
                outputs=['user/steering', 'user/throttle', 'user/mode', 'recording'],
                threaded=True
            )

I use the 5.1 version of donkeycar

yannis-mlgrn avatar Mar 23 '24 15:03 yannis-mlgrn