Generic Playseat challenge handbrake

Generic Playseat challenge handbrake

thingiverse

For electronics and stuff you need: 1 x KY-024 Linear Magnetic Hall Sensor 1 x TZT Pro Micro ATmega32U4 or any other clone dimensions are around 36mm x 15mm 3 x Arduino jumper female cables 1 x Micro USB cable. Single or a few 8 mm magnets 2 x 688 bearings 1 x spring from a 3D printer 1 x M8 bolt, washer and a nut with bare shaft 2 x M8 bolts and nuts for mounting 14 x M4 nuts and bolts 1 x M4 bold with bare shaft for spring to sit on and also a nut. If anyone will actually wants to make this I might update on exact bolts' dimensions. P.S. Also arduino code: // Analog eBrake-Handbrake // PIN A0 to 10k pot output or. Hall sensor analog reading (KY-035; KY-024) - Throttle Axis // Use with Arduino ProMicro, LillyPad,... // This is modified version with just one active axis to avoid conflicts in game. remove the brackets(#)include <Joystick.h> Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, 0, 0, // Button Count, Hat Switch Count false, false, false, // X, Y, Z false, false, false, // Rx, Ry, Rz false, false, // rudder, throttle false, true, false); // accelerator, brake, steering void setup() { pinMode(A0, INPUT); Joystick.begin(); } const int pinToButtonMap = A0; void loop() { int pot = analogRead(A0); int mapped = map(pot,0,1023,0,255); Joystick.setBrake(mapped); }

Download Model from thingiverse

With this file you will be able to print Generic Playseat challenge handbrake with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Generic Playseat challenge handbrake.