DIY Analog USB Handbrake

  Рет қаралды 30,477

VelociMech

VelociMech

Күн бұрын

Пікірлер: 55
@kaskiiiii
@kaskiiiii 7 күн бұрын
How strong is the magnet and how expensive it was
@carlosbacasoto102
@carlosbacasoto102 4 жыл бұрын
Thank you so much!, I did my own Handbrake inspirited in your video. I need around 3.5 kg to pressure to move all the way.
@flamejame
@flamejame 5 жыл бұрын
EPIC! mate you've just given me an alternative way of mounting a sensor when i hacked up an old joystick and somehow fitted it into a car hydro e-brake. worked great until one of the wires pulled out the pcb and has sat on shelf since XD thank you very much :)
@velocimech273
@velocimech273 5 жыл бұрын
You are welcome mate....
@hakantunal8270
@hakantunal8270 3 жыл бұрын
Arduino code nedir ????
@maulanamulya3
@maulanamulya3 3 жыл бұрын
please tell me, what is behind white tape at the end of cable, near female socket, resistor or capacitor?or just cable..thank you..
@Donlasean
@Donlasean 2 жыл бұрын
say im using the same hall sensor but new micro from a old handbrake do I have to rewire or change code?? I wanna make the move but scared to make a mistake
@snizemedia2286
@snizemedia2286 4 жыл бұрын
Where do i get these microchip?
@jsl82837
@jsl82837 4 жыл бұрын
For more realistic feeling i recommend using a fader
@TheSamkostas
@TheSamkostas 3 жыл бұрын
Nice job. Can u give dimension and bold measurments?
@ArjunKumar-oo9ik
@ArjunKumar-oo9ik 4 жыл бұрын
WHAT WAS THE SIZE OF BOLTS/NUTS,THICKNESS OF SHEET USED?
@samburanamg4747
@samburanamg4747 4 жыл бұрын
Can I do the above for pedals and handbreak in one Arduino..? Can you make a video on that..?
@sandroelbosca811
@sandroelbosca811 3 жыл бұрын
Bellissimi progetti , grazie di condividerli, Bravo
@tahirballikaya213
@tahirballikaya213 4 жыл бұрын
could you please share the code as a text file
@ethhics
@ethhics 5 жыл бұрын
Great build, I hope you tightened the nut that holds the brake to the spring though... :)
@velocimech273
@velocimech273 5 жыл бұрын
Ha ha.thanks buddy. Definitely that needs to be tightened...
@ProscritoIvan
@ProscritoIvan 4 жыл бұрын
I can use tenstar robot pro mega32u4 is cheapest than arduino ? Is the same code of arduino ?
@marcinbujok8576
@marcinbujok8576 2 жыл бұрын
why in my case it doesn`t work linear? it works just like button (0-1)
@atmflawzin262
@atmflawzin262 4 жыл бұрын
Did you solder the wires to the p micro or did you use butt splice as well
@zguic6421
@zguic6421 4 жыл бұрын
Hello, can you share with me the DiRT2 handbrake setting map, thank you.
@hakantunal8270
@hakantunal8270 3 жыл бұрын
Ardiona kaynak neresi????
@hakantunal8270
@hakantunal8270 3 жыл бұрын
Arduino code nedir kutuphane nerde??
@TheoXydias_PerlaCoffeeTrailer
@TheoXydias_PerlaCoffeeTrailer 2 жыл бұрын
have you come ever to error
@KAJJTAN
@KAJJTAN 2 жыл бұрын
//--Libraries--// #include "Joystick.h"
@TheoXydias_PerlaCoffeeTrailer
@TheoXydias_PerlaCoffeeTrailer 2 жыл бұрын
@@KAJJTAN i found the solution my arduino ide had a problem so i put the code on th main program and worked after that
@krl0ncho
@krl0ncho 5 жыл бұрын
Can you share the link where you downloaded the code please?. There are many links for Joysticks in Github.
@Nicsos123
@Nicsos123 5 жыл бұрын
well done 👍
@velocimech273
@velocimech273 5 жыл бұрын
Thanks mate...😊
@carlosbacasoto102
@carlosbacasoto102 5 жыл бұрын
However you did a great job!
@velocimech273
@velocimech273 5 жыл бұрын
Thanks alot....😊
@adamclifton4706
@adamclifton4706 5 жыл бұрын
I lose FFB in FH4 when i plug my usb ebrake in my pc, it doesnt want to register two usb devices :( but if i unplug it, i get all the ffb back on my t300, so confusing why it wont work together nicely
@punk0tta
@punk0tta 3 жыл бұрын
Did you fixed it? I also get a handbrake made by Arduino Micro. And now i have the same problem
@joaopedrocasarindearaujo8251
@joaopedrocasarindearaujo8251 2 жыл бұрын
my project, only different values #include void setup() {pinMode(A0, INPUT); Joystick.begin();} const int pintToButtonMap = A0; void loop() {int pot = analogRead(A0); int mapped = map(pot,0,1023,0,255); {Joystick.setThrottle(mapped);}
@MRMD1srl
@MRMD1srl 5 жыл бұрын
excelent craftmanship bro.. i would DIY one myself if i had the resources
@velocimech273
@velocimech273 5 жыл бұрын
Thanks alot bro....☺
@carlosbacasoto102
@carlosbacasoto102 5 жыл бұрын
Can I use A3144pcb instead ky024? And I see that you have a dead zone and a little range of movement not how when you use a potenciometer linear.
@velocimech273
@velocimech273 5 жыл бұрын
Yes you can. But make sure that the sensor output signal is analog or not. Some of the hall sensors outputs are digital. Dead zone can avoid using powerful magnet and appropriate distance between sensor and magnet
@zguic6421
@zguic6421 4 жыл бұрын
Very good project, can you share the Arduino code with me, thank you.
@peichzgz
@peichzgz 4 жыл бұрын
#include 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.setThrottle(mapped);} }
@szymonganczarczyk7686
@szymonganczarczyk7686 4 жыл бұрын
// Create Joystick Joystick_ Joystick; void setup() {pinMode(A3, INPUT); Joystick.begin();} const int pinToButtonMap = A3; void loop() {int pot = analogRead(A3); int mapped = map(pot,525,870,0,255); {Joystick.setThrottle(mapped);}} here is good code
@hakantunal8270
@hakantunal8270 3 жыл бұрын
Kutuphane neresi acaba kod kaynak copy paste yapicam
@blaize0475
@blaize0475 4 жыл бұрын
how to make it worked in forza horizon 4? Because I tried using mine it registered in other game but in fh4 not assigning.
@ohwheezy4479
@ohwheezy4479 3 жыл бұрын
You need a third party software
@adisapta
@adisapta 3 жыл бұрын
perfect..thx man
@riccardobusatto3326
@riccardobusatto3326 5 жыл бұрын
What tipe of Arduino do you use?
@velocimech273
@velocimech273 5 жыл бұрын
Its arduino pro micro
@riccardobusatto3326
@riccardobusatto3326 5 жыл бұрын
Can I use an Arduino nano?
@velocimech273
@velocimech273 5 жыл бұрын
@@riccardobusatto3326 only arduino pro micro and leanardo board have the direct usb compatibility as a joystic
@riccardobusatto3326
@riccardobusatto3326 5 жыл бұрын
Thanks
@Spelljammer1
@Spelljammer1 4 жыл бұрын
@@velocimech273 Inspired to make my first joystick mod after seeing this. Is there a particular advantage to arduino pro vs leobodnar boards?
@rseguras
@rseguras 4 жыл бұрын
can you help me please, i have this error: Arduino:1.8.9 (Windows 10), Tarjeta:"Arduino/Genuino Micro" J:\Escritorio\sketch_mar19a\sketch_mar19a.ino: In function 'void setup()': sketch_mar19a:7:4: error: 'Joystick' was not declared in this scope Joystick.begin();} ^ J:\Escritorio\sketch_mar19a\sketch_mar19a.ino: In function 'void loop()': sketch_mar19a:15:2: error: 'Joystick' was not declared in this scope {Joystick.setThrottle(mapped);} } ^ exit status 1 'Joystick' was not declared in this scope i use this lines: #include void setup() {pinMode(A3, INPUT); Joystick.begin();} const int pinToButtonMap = A3; void loop() {int pot = analogRead(A3); int mapped = map(pot,525,870,0,255); {Joystick.setThrottle(mapped);}}
@velocimech273
@velocimech273 4 жыл бұрын
Which arduino board are you using? Is it the same as in the video?
@sirflaps7619
@sirflaps7619 2 жыл бұрын
for anyone having this problem try adding Joystick_ Joystick between #include and void setup()
@muhammedaliakbal6070
@muhammedaliakbal6070 5 ай бұрын
@@sirflaps7619 Joystick_ Joystick;
@SteveAndrewsGaming1973
@SteveAndrewsGaming1973 3 жыл бұрын
Well done my friend , check out my sequential shifter I have just made 👍🏻
DIY Loadcell Handbrake UrbanSTEIN
5:38
UrbanGRIT
Рет қаралды 12 М.
I made a fake CRT TV with a LASER
16:05
bitluni
Рет қаралды 469 М.
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 170 МЛН
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 28 МЛН
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 20 МЛН
Lamborghini vs Smoke 😱
00:38
Topper Guild
Рет қаралды 54 МЛН
How to get better at DiRT Rally
11:47
FreekShow
Рет қаралды 562 М.
MAKE THIS EASY USB HANDBRAKE | SIM RACING | DIY | E-BRAKE
6:52
amstudio
Рет қаралды 1,7 МЛН
I built a custom sim racing handbrake out of LEGO
3:25
Koenkun Bricks
Рет қаралды 14 М.
I've made brake rotors out of Lead, Aluminium, and Copper.
13:44
The ULTIMATE Sim Racing Shifter Buyer's Guide - 2023 Edition
10:09
Levier de vitesse USB - DIY (PC)
6:53
eeBud
Рет қаралды 2,8 М.
HOW TO MAKE A USB ANALOG HANDBRAKE  | SIM RACING DIY EBRAKE
10:25
amstudio
Рет қаралды 1,5 МЛН
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 170 МЛН