Speed Through Analog Stick

I have a Logitech controller, and I have a code pieced together from other websites:

get controller

cont = GameLogic.getCurrentController()

get object that controller is attached to

obj = cont.owner

joy = cont.sensors[‘Walk’]

aXis = joy.axisvalues(1)

move game object

obj.applyMovement( 0.0, 0.0, [aXis[1] * 0.00001)

Yet I can’t get my character to move at all, let alone with analog stick speed. Can anyone help? Thanks.

Attachments

Free Platform.blend (559 KB)