todbot / CircuitPython_PS2Controller

CircuitPython library to read Sony PS2 and PS1 ("PSX") game controllers
MIT License
8 stars 0 forks source link

Motors do not turn off on PS2 gamepad #2

Open Crazy-Child opened 3 months ago

Crazy-Child commented 3 months ago

When enable_rumble=False is set, the motors on the PS2 gamepad do not turn off, they work constantly. also work with enable_rumble=True

todbot commented 3 months ago

Which PS2 controller are you using? (Exact make & model)

Crazy-Child commented 3 months ago

wireless PS2 SCPH-10015 GR

Crazy-Child commented 3 months ago

solved by explicitly indicating in the program ps2 = PS2Controller( dat=board.GP2, cmd=board.GP3, att=board.GP4, clk=board.GP5, enable_sticks=True, enable_rumble=True, enable_pressure=False, )

originally changed it in the library