Пікірлер
@Happymylife623
@Happymylife623 2 ай бұрын
where can I find the models?
@beaumontlivingston8084
@beaumontlivingston8084 2 ай бұрын
Easy fix. But you might want to get a pigtail after the Arduino. Maybe go with a marine jack mounted in the box wall. Water tight, don't have to gain physical access, and won't kill another board mounted socket.
@NeedToDIY
@NeedToDIY 2 ай бұрын
Yeah that would be wise, as always I undestimate how many times I need to update the firmware before getting everything working properly 😅 🤣🤣🤣.
@Lazyan_dbored
@Lazyan_dbored 2 ай бұрын
Dudeee that happened to me soooo many times when i use arduino micro, same reaction
@TheCameron230
@TheCameron230 2 ай бұрын
Thats some ghetto crap right there now boi
@thegingerpowerranger
@thegingerpowerranger 2 ай бұрын
Did you sit on it?
@NeedToDIY
@NeedToDIY 2 ай бұрын
Nope, Hint: You can guess If you know what is the device with the chain.⛓️
@thegingerpowerranger
@thegingerpowerranger 2 ай бұрын
Is it a fifty shades of grey reference?
@NeedToDIY
@NeedToDIY 2 ай бұрын
🤣🤣🤣🤣 bro
@user-it4nu7im1v
@user-it4nu7im1v 2 ай бұрын
​@@NeedToDIYgotta be honest that is such a awesome shed, gantry crane and 4 point hoist/block tackle And then there's a electric bike with a cheap electronics, mean no offence but take it to a professional to get a cable soldered directly to the board to prevent it ripping pins in future and just mount the exit usb interface on the bottom of the hard plastic case so you don't have to open it when you need to and it stays water proof Maybe chuck a cap on it actually because puddles would splash up.
@NeedToDIY
@NeedToDIY 2 ай бұрын
@user-it4nu7im1v you know you stuff, the good part of working on a place like that is that I can use the tools to do my bull 💩.
@JustJosh20
@JustJosh20 2 ай бұрын
Nicely Done! Thats good stuff
@Power_Marko
@Power_Marko 4 ай бұрын
It won´t work with your circuit plan because there is no PIN 5 in your Corsair sketch. It has to be assigned there. You have done that...otherwise your relais wouldn´t work on power off - but you don´t show in your video. CH1 and CH2 go to Dout? I think they have to go on DIN
@NeedToDIY
@NeedToDIY 4 ай бұрын
Sorry about missing that in the video, maybe I did it later, There are 2 way of doing that, I'll see if I can retrieve me sketch but I'm not sure, 1 is hook the digital pin to the function, when the function is connected the arduino will turn on the relay, 2, the relay is supplied by the 5vdc from the usb, if the pc turn off the relay will shut down. Atm I'm not living at my place so I'm not 100% if I can check what I did
@Power_Marko
@Power_Marko 4 ай бұрын
@@NeedToDIY I know...i finally found out :-) Don´t worry
@officialmanimfk7220
@officialmanimfk7220 4 ай бұрын
coding pls
@NeedToDIY
@NeedToDIY 4 ай бұрын
// Motor 1 const int motor1Pin1 = 10; // IN1 on the H-bridge const int motor1Pin2 = 9; // IN2 on the H-bridge // Motor 2 const int motor2Pin1 = 8; // IN3 on the H-bridge const int motor2Pin2 = 6; // IN4 on the H-bridge void setup() { // Set all the motor control pins to outputs pinMode(motor1Pin1, OUTPUT); pinMode(motor1Pin2, OUTPUT); pinMode(motor2Pin1, OUTPUT); pinMode(motor2Pin2, OUTPUT); } void loop() { // Spin Motor 1 forward digitalWrite(motor1Pin1, HIGH); digitalWrite(motor1Pin2, LOW); // Spin Motor 2 forward digitalWrite(motor2Pin1, HIGH); digitalWrite(motor2Pin2, LOW); delay(2000); // Run motors for 2 seconds // Reverse Motor 1 digitalWrite(motor1Pin1, LOW); digitalWrite(motor1Pin2, HIGH); // Reverse Motor 2 digitalWrite(motor2Pin1, LOW); digitalWrite(motor2Pin2, HIGH); delay(2000); // Run motors in reverse for 2 seconds // Stop Motors digitalWrite(motor1Pin1, LOW); digitalWrite(motor1Pin2, LOW); digitalWrite(motor2Pin1, LOW); digitalWrite(motor2Pin2, LOW); delay(2000); // Wait for 2 seconds before next loop }
@TornoyfresadoraRD
@TornoyfresadoraRD 5 ай бұрын
Hello, how can you use this by injecting a pulse and direction signal from grbl?
@NeedToDIY
@NeedToDIY 5 ай бұрын
You mean something, that was supposed to use an stepper motor? I should maybe make 2 separate boards or firmware functions, and you change the position set everytime you receive a signal, adding on subtracting depending on the direction
@TornoyfresadoraRD
@TornoyfresadoraRD 5 ай бұрын
@@NeedToDIY It's just like this, one Arduino board runs the grbl firmware and the other runs the PID code, the problem is that on KZbin only tutorials appear to manipulate the servo motors with a potentiometer
@NeedToDIY
@NeedToDIY 5 ай бұрын
@TornoyfresadoraRD the one that manage the PID, should receive the signal and direction signal and move the DC motor accordingly, but what the purpose of the servo motor in this case? You have both dc and servo motor?
@TornoyfresadoraRD
@TornoyfresadoraRD 5 ай бұрын
@@NeedToDIY I have homemade DC servo motors, the project is a homemade CNC
@myshticaanimo2169
@myshticaanimo2169 5 ай бұрын
Little cooking 🔥
@elektromekanik7240
@elektromekanik7240 6 ай бұрын
It is calibrated, but it does not reach the desired size. I tried all the methods of using the encoder motor pins, but it didn't work.
@murtadhaalkenani3876
@murtadhaalkenani3876 6 ай бұрын
BRILLIANT EXPLANATION
@Dewal4
@Dewal4 7 ай бұрын
Why mega is slower?
@integrationofmanandmachine4714
@integrationofmanandmachine4714 7 ай бұрын
Sick 🔥
@rikofri6375
@rikofri6375 8 ай бұрын
Hi, 2:59 after restarting Arduino, how do you know when the stop motor (when you searching for beginning). Can you please help with this part of the project. I am worring about damaging motor.
@overflowchannel4047
@overflowchannel4047 8 ай бұрын
Can you use everything of the cointroller, like gyroscope as well?
@topdiyprojects2846
@topdiyprojects2846 8 ай бұрын
Is that easy to code?
@NeedToDIY
@NeedToDIY 8 ай бұрын
Super easy as every other library just follow the example, there are 3 example depending if you want you receive data or send data to the controller
@topdiyprojects2846
@topdiyprojects2846 8 ай бұрын
@@NeedToDIY Like sending audio to the controller speaker?
@mohamedkhairy2304
@mohamedkhairy2304 8 ай бұрын
What’s the name of the library that you used?
@NeedToDIY
@NeedToDIY 8 ай бұрын
ps4Controller, you can find it in arduino library manager or github 👍👍👍
@abiepr_328
@abiepr_328 8 ай бұрын
Good lord, what are you going to do to that hard drive?
@NeedToDIY
@NeedToDIY 8 ай бұрын
Just backup, everytime throw away an old laptop I get a new backup disk 🤣🤣🤣
@waelbadr4724
@waelbadr4724 8 ай бұрын
What is the distance of this connection and what if esp replaced with nrf24l01
@NeedToDIY
@NeedToDIY 8 ай бұрын
I'm not familiar with nrf24l01but you can't use it, ps4 joypad works with bluetooth 😉
@NeedToDIY
@NeedToDIY 8 ай бұрын
I have to make so try for the distance, I think without obstacles maybe 30 meters
@waelbadr4724
@waelbadr4724 8 ай бұрын
@NeedToDIY I used two esp32 I got without obstacles 450m and nrf24l01 is 1km distance . 32 meters are way too short but for dual shock that's what I'm asking
@NeedToDIY
@NeedToDIY 8 ай бұрын
@waelbadr4724 yeah definitely radio transmitter is better than bluetooth for the range 👍👍
@sharifjonmunavarov7580
@sharifjonmunavarov7580 8 ай бұрын
Wow , I like it
@X7cF4
@X7cF4 8 ай бұрын
I remember doing stuff like that
@AB-bu8ti
@AB-bu8ti 9 ай бұрын
Fun video! Thanks for making it.
@anthonyleedickinson3491
@anthonyleedickinson3491 9 ай бұрын
I know this maybe a silly request. I would like to use a micro sd slot to plug usb into. How would I wire usb to a micro sd card to use on a raspberry pi device. Is it possible? I was thinking on either getting an sd to usb adapter and wire it so its male micro USB and female usb. May work depending on the chips etc on board
@hemantjaiswal5662
@hemantjaiswal5662 10 ай бұрын
Your vedio was amazing. I am your fan now !
@Teerapong2023Pim-th9iu
@Teerapong2023Pim-th9iu 11 ай бұрын
Thank you good chanel
@MateuszWiesioek
@MateuszWiesioek 11 ай бұрын
Hello, I have a problem with library, Can U please add link or name please? :) BTW Great Video!
@NeedToDIY
@NeedToDIY 11 ай бұрын
Hi mate, There a no library needed, what kind of error do you have?
@TechsScience
@TechsScience 11 ай бұрын
Well explained
@Robert_PinchOfBlack
@Robert_PinchOfBlack Жыл бұрын
How do I use this to open a gate? I have one of those clicking buttons where there is no on/off, only a doorbell like button that clicks. What do I need for that?
@NeedToDIY
@NeedToDIY Жыл бұрын
Give me more info, do you have a model of what you have?
@mirekcolakov1730
@mirekcolakov1730 Жыл бұрын
I was looking for how to make my own linear encoder and stumbled to your channel. Nice work!
@user-zz9to2lz6j
@user-zz9to2lz6j Жыл бұрын
hoooo
@okankurt5278
@okankurt5278 Жыл бұрын
If I were to give an example, the printing width of the epson i3200 head printing machine was 1870 mm or something, do we have a chance to reduce it to 60 cm?
@PeteDubler
@PeteDubler Жыл бұрын
a video of soldering is not much of a tutorial...
@victoriawong9521
@victoriawong9521 Жыл бұрын
could I use it separately?
@NeedToDIY
@NeedToDIY Жыл бұрын
Are you talking about channels of encoder? Yes you can, you will lose some resolution, what would you like to do?
@allacmc
@allacmc Жыл бұрын
Is possible share The Code ?
@NeedToDIY
@NeedToDIY Жыл бұрын
Ok I'll put the code in description maybe tomorrow but I'm not a good programmer so do not expect a well written code 👍
@okankurt5278
@okankurt5278 Жыл бұрын
Can I change the printing area, so can we extend it in code form, then mechanically?
@thefilmbysiri
@thefilmbysiri Жыл бұрын
hi , can we use the Node Mcu board for this project
@franciscoanconia2334
@franciscoanconia2334 Жыл бұрын
even if the strips are about 1mm the resolution is much higher since they have an analog output.
@pankajB66
@pankajB66 Жыл бұрын
Torx screwdriver + the nuts are secured. You need to have a hole at the end of the screwdriver head. I am not able to open the hp printer, hp wireless mouse, Nikon battery charger because I am not able to find a proper set of such screwdriver heads.
@kijijikhalid601
@kijijikhalid601 2 жыл бұрын
great explanation, I really could understand it well. thank you
@NeedToDIY
@NeedToDIY 2 жыл бұрын
Thanks bro!
@gianluca85ita
@gianluca85ita 2 жыл бұрын
ciao Paolo ho un problema funziona pero il motore non ce la fa a girare l'ho messo a 12v e 24v ma non va se lo collego direttamente a 12volt all alimentatore funziona quando lo attacco al driver tenta a muoversi ma non ce la fa Qual è il problema?
@gianluca85ita
@gianluca85ita 2 жыл бұрын
complimenti
@salihkayis
@salihkayis 2 жыл бұрын
can you add a step dir pin
@drsaif343
@drsaif343 2 жыл бұрын
Thank you for the video, I tried the first part but with movment of the tray in bot directions the numbers kept rising without reduction when going in the opposit direction.???!!!
@drsaif343
@drsaif343 2 жыл бұрын
@@NeedToDIY its the one in the discrepancies but I changed pin 1 to pin 3 and changed what needed in the sketch and it works now.
@silvionovais2504
@silvionovais2504 2 жыл бұрын
Please build one to rewind speakers using this same electronics
@NeedToDIY
@NeedToDIY 2 жыл бұрын
Hi, Silvio I did not know what it meant to rewind speakers, so I watched some videos, correct me if I'm wrong but the electronics would already be ok, what should be changed is only the mechanics right?
@silvionovais2504
@silvionovais2504 2 жыл бұрын
@@NeedToDIY kzbin.info/www/bejne/bnymoJmBbseUhJo These videos are just to understand the concept of different possibilities of mechanics. *It is interesting that there is a programmable stop before the return of the yarn to build the second stage of the bobbin, this stop allows you to pass glue manually for those who wish kzbin.info/www/bejne/bKLNlHyOlqpqncU&ab_channel=Ampletos kzbin.info/www/bejne/r4jQgoisZs2ne7M&ab_channel=Luciano kzbin.info/www/bejne/b5zRi6SFZ6aqaM0 kzbin.info/www/bejne/gXzOk32ro7SAa5I I do not agree that the felt clamp that holds and guides the yarn is too close to the bobbin, this causes unwanted spaces in the process. As I said earlier, the tweezers must be delayed in relation to the loop that forms kzbin.info/www/bejne/nJi9loKbp5yreK8
@chuckfinley5206
@chuckfinley5206 2 жыл бұрын
When my son was 5 I gave him a copy machine from the 80s. Handed him a few tools and turned him loose. Took him several days to completely take it apart. Great way to keep a kid entertained.
@chuckfinley5206
@chuckfinley5206 2 жыл бұрын
@@NeedToDIY I recall when I was 8. I learned the difference between 9 volt DC and 120 ac. I'm 64 and still taking things apart. Got a place that gives me free electronics.
@ukargeo
@ukargeo 2 жыл бұрын
That's super cool
@NeedToDIY
@NeedToDIY 2 жыл бұрын
You are super cool
@AliensGotTheBeat
@AliensGotTheBeat 2 жыл бұрын
is this a closed loop? in your second sketch can the machine go back to the desired location if something stops it per say?
@NeedToDIY
@NeedToDIY 2 жыл бұрын
Yes, it is a closed loop. If the carriage is stopped, it will try to push into the direction of the desired position
@AliensGotTheBeat
@AliensGotTheBeat 2 жыл бұрын
@@NeedToDIY thank you so much!
@dilshanchethiya6342
@dilshanchethiya6342 2 жыл бұрын
Is roller encoder use same encoder on printhead carriage?