Пікірлер
@subraynirvaneshwar8476
@subraynirvaneshwar8476 15 күн бұрын
Bro firmware please
@Faris.R
@Faris.R 17 күн бұрын
Where's ur website dck head???
@karersio7062
@karersio7062 21 күн бұрын
you can make it faster with an rpi pico and klipper i
@АлександрК-ы2к
@АлександрК-ы2к 21 күн бұрын
Здравствуйте, подскажите пожалуйста, в этой модели кулера одинаковые или разные?
@RealRenko
@RealRenko Ай бұрын
YOO UPLOAD EP 4 ARE YOU DEAD
@siunhi450
@siunhi450 Ай бұрын
138 / 5.000 hi. i followed your instructions but i have a problem that a motor at my pin 5 is not working. i hope you can help me.
@lalbabugupta8380
@lalbabugupta8380 2 ай бұрын
Website not working, please share drive link for stl files
@patrickboyd8368
@patrickboyd8368 2 ай бұрын
@minilab3d is there anyway to fix the links so we can get them in 2024? Every attempt says the site can't be accessed.
@hum.ortales1753
@hum.ortales1753 2 ай бұрын
My display stoped working 2004 lcd display when I print from sd card it is rebooting
@BibhasMandal73
@BibhasMandal73 3 ай бұрын
very poor build quality and not at all professional. The project is incomplete without any RC plane flight videos controlling from the same built TX/RX
@rizvanrazi4698
@rizvanrazi4698 3 ай бұрын
Does this calibration required every time we start drone or it is for only one time
@Andy-df5fj
@Andy-df5fj 3 ай бұрын
Is there a formula to calculate the Kv ratio between connecting the same windings delta versus wye?
@-Gunnarsson-
@-Gunnarsson- 3 ай бұрын
I always use 16 teeth pulleys. More torque and resolution
@nathrm
@nathrm 4 ай бұрын
mark my words YU CANNOT, I have tried and failed but it was fun.
@airoflex
@airoflex 4 ай бұрын
Everything is ok, I found a link from the second author.
@airoflex
@airoflex 4 ай бұрын
the link to the sketch does not work
@omidmalekzadeh3812
@omidmalekzadeh3812 4 ай бұрын
It was very useful Video, Thank u✌️👌🤌
@rohithrocks8530
@rohithrocks8530 4 ай бұрын
can i use 1000kv brushless motors for that body cause i love this one 🤩 please respond
@paweniewpisze8037
@paweniewpisze8037 6 ай бұрын
Interesting project, but links not works. Where can I download stuff about receiver and transmitter? Pleasure.
@maninderkaur3970
@maninderkaur3970 8 ай бұрын
Thank you so much, dude, you dont even know how much you helped me :)
@Gamingtax
@Gamingtax 8 ай бұрын
Please give me code
@thunderthumbs42069
@thunderthumbs42069 7 ай бұрын
/*ESC calibration sketch; author: ELECTRONOOBS */ #include <Servo.h> #define MAX_SIGNAL 2000 #define MIN_SIGNAL 1000 #define MOTOR_PIN 9 int DELAY = 1000; Servo motor; void setup() { Serial.begin(9600); Serial.println("Don't forget to subscribe!"); Serial.println("ELECTRONOOBS ESC calibration..."); Serial.println(" "); delay(1500); Serial.println("Program begin..."); delay(1000); Serial.println("This program will start the ESC."); motor.attach(MOTOR_PIN); Serial.print("Now writing maximum output: (");Serial.print(MAX_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); Serial.println("Turn on power source, then wait 2 seconds and press any key."); motor.writeMicroseconds(MAX_SIGNAL); // Wait for input while (!Serial.available()); Serial.read(); // Send min output Serial.println(" "); Serial.println(" "); Serial.print("Sending minimum output: (");Serial.print(MIN_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); motor.writeMicroseconds(MIN_SIGNAL); Serial.println("The ESC is calibrated"); Serial.println("----"); Serial.println("Now, type a values between 1000 and 2000 and press enter"); Serial.println("and the motor will start rotating."); Serial.println("Send 1000 to stop the motor and 2000 for full throttle"); } void loop() { if (Serial.available() > 0) { int DELAY = Serial.parseInt(); if (DELAY > 999) { motor.writeMicroseconds(DELAY); float SPEED = (DELAY-1000)/10; Serial.print(" "); Serial.println("Motor speed:"); Serial.print(" "); Serial.print(SPEED); Serial.print("%"); } } }
@ftechshorts6398
@ftechshorts6398 9 ай бұрын
Please give the code, because your website isn’t opening.
@ahmadmoshtaq6756
@ahmadmoshtaq6756 9 ай бұрын
Hi sir I uploaded software to receiver but it doesn't generate the MPU4060. So please reply me guidenc?
@obereats4765
@obereats4765 9 ай бұрын
Here is the code guys i found it some how /*ESC calibration sketch; author: ELECTRONOOBS */ #include <Servo.h> #define MAX_SIGNAL 2000 #define MIN_SIGNAL 1000 #define MOTOR_PIN 9 int DELAY = 1000; Servo motor; void setup() { Serial.begin(9600); Serial.println("Don't forget to subscribe!"); Serial.println("ELECTRONOOBS ESC calibration..."); Serial.println(" "); delay(1500); Serial.println("Program begin..."); delay(1000); Serial.println("This program will start the ESC."); motor.attach(MOTOR_PIN); Serial.print("Now writing maximum output: (");Serial.print(MAX_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); Serial.println("Turn on power source, then wait 2 seconds and press any key."); motor.writeMicroseconds(MAX_SIGNAL); // Wait for input while (!Serial.available()); Serial.read(); // Send min output Serial.println(" "); Serial.println(" "); Serial.print("Sending minimum output: (");Serial.print(MIN_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); motor.writeMicroseconds(MIN_SIGNAL); Serial.println("The ESC is calibrated"); Serial.println("----"); Serial.println("Now, type a values between 1000 and 2000 and press enter"); Serial.println("and the motor will start rotating."); Serial.println("Send 1000 to stop the motor and 2000 for full throttle"); } void loop() { if (Serial.available() > 0) { int DELAY = Serial.parseInt(); if (DELAY > 999) { motor.writeMicroseconds(DELAY); float SPEED = (DELAY-1000)/10; Serial.print(" "); Serial.println("Motor speed:"); Serial.print(" "); Serial.print(SPEED); Serial.print("%"); } } }
@RogueValleyTCG
@RogueValleyTCG 10 ай бұрын
But how many hours did it take you lol
@Tuchix10
@Tuchix10 11 ай бұрын
Hi i have a question, what is the measure of your screwdriver? T8?
@bluexvenom200
@bluexvenom200 11 ай бұрын
Bro can you please give the circuit and code transmitter and receiver of that drone pls bro
@bluexvenom200
@bluexvenom200 11 ай бұрын
I want the circuit diagram and the parts list
@bluexvenom200
@bluexvenom200 11 ай бұрын
Bro the website is not working pls help
@fahadahmed4694
@fahadahmed4694 11 ай бұрын
Bro you're using 7.4 v battery now. On what voltage do these motors aew working? 3.7 or 7.4?
@AlSTORIES777
@AlSTORIES777 Жыл бұрын
New link please
@peteregg4304
@peteregg4304 Жыл бұрын
Bro your prusa! When’s the next part coming? Your website doesn’t work either.
@ourchannel8215
@ourchannel8215 Жыл бұрын
for flysky
@brianngigi-k3l
@brianngigi-k3l Жыл бұрын
Who can help with the code
@thunderthumbs42069
@thunderthumbs42069 7 ай бұрын
/*ESC calibration sketch; author: ELECTRONOOBS */ #include <Servo.h> #define MAX_SIGNAL 2000 #define MIN_SIGNAL 1000 #define MOTOR_PIN 9 int DELAY = 1000; Servo motor; void setup() { Serial.begin(9600); Serial.println("Don't forget to subscribe!"); Serial.println("ELECTRONOOBS ESC calibration..."); Serial.println(" "); delay(1500); Serial.println("Program begin..."); delay(1000); Serial.println("This program will start the ESC."); motor.attach(MOTOR_PIN); Serial.print("Now writing maximum output: (");Serial.print(MAX_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); Serial.println("Turn on power source, then wait 2 seconds and press any key."); motor.writeMicroseconds(MAX_SIGNAL); // Wait for input while (!Serial.available()); Serial.read(); // Send min output Serial.println(" "); Serial.println(" "); Serial.print("Sending minimum output: (");Serial.print(MIN_SIGNAL);Serial.print(" us in this case)");Serial.print(" "); motor.writeMicroseconds(MIN_SIGNAL); Serial.println("The ESC is calibrated"); Serial.println("----"); Serial.println("Now, type a values between 1000 and 2000 and press enter"); Serial.println("and the motor will start rotating."); Serial.println("Send 1000 to stop the motor and 2000 for full throttle"); } void loop() { if (Serial.available() > 0) { int DELAY = Serial.parseInt(); if (DELAY > 999) { motor.writeMicroseconds(DELAY); float SPEED = (DELAY-1000)/10; Serial.print(" "); Serial.println("Motor speed:"); Serial.print(" "); Serial.print(SPEED); Serial.print("%"); } } }
@ashloverscn
@ashloverscn Жыл бұрын
Hello sir can you please help me i am trying to make a rc reciever and tx but there is a probe Both nrf are working with test code and communication success but tx rx code is not working Cannot bind What is the prob and yes i used soft spi not hardware so i am sure hardware is ok and soft spi works pins connected properly Its bayang reciever code And multi protocol goebish module Ppm sequence confirmed and tested by code They are all correctly oriented In RTEA oder is corrected in the code and matches reciever ppm Rudder left+Aeleron left So i amsure its ok Even there is ppm fail 0 Wn i dont give correct stick order There fore its not pairing can you help me checking the code plz 😢
@fuhadrock6370
@fuhadrock6370 Жыл бұрын
Your website doesn't work anymore.plz fix it I need your code
@dericklong6191
@dericklong6191 Жыл бұрын
On the tail end close to the top is it printing a bridge over top of nothing?
@yakupow
@yakupow Жыл бұрын
Absolutely waste of time. İ will block this chanel for wasting my time
@dineshshanbhag4119
@dineshshanbhag4119 Жыл бұрын
Hiii we are also planning to made a drone for final project of engineering will you help in this i need guidance
@fuhadrock6370
@fuhadrock6370 Жыл бұрын
Plz give me the code.. And I can't access it to your website..
@abrahamgonzales1101
@abrahamgonzales1101 Жыл бұрын
what is vps?
@gersonmoreno9978
@gersonmoreno9978 Жыл бұрын
Hello, can you upgrade the ram in this model?
@4sinsgaming150
@4sinsgaming150 Жыл бұрын
You mauritian ??!
@minimauzt
@minimauzt Жыл бұрын
Just a Raspberry Pi Cost nearly 100 haha 😂😅
@osamabinlaggin69
@osamabinlaggin69 Жыл бұрын
Can someone help me put here. Awhile ago I disassembled my matebook 13 to clean and change the thermal paste. After reconnecting the battery when i tried to turn it on the keyboard light turned on for a couple of seconds than turned off and the laptop wouldn't boot. After troubleshooting for awhile i got frustrated and left it alone and when i tried to boot it again after 15-20 minutes it turned on fine. Recently I had to disassemble it again for thermal paste change and now I'm facing the same problem again. Can someone please tell me if there is a specific procedure to bootup after disconnecting and reconnecting the battery, i can't seem to figure it out.
@TheVersatileMindMedia
@TheVersatileMindMedia Жыл бұрын
Website that is supposed to list all the components isn't the correct site. Please correct this so that the components can be known and make one ourselves.
@rrcreations392
@rrcreations392 Жыл бұрын
Bro the transmitter code is not opening
@saurabh9xs
@saurabh9xs Жыл бұрын
Mujhe bhi ek chahiye 🎉🎉🎉😂😂😂 kitne ka hai
@skyline4394
@skyline4394 Жыл бұрын
Hi can you make a gimbal
@jokoproject
@jokoproject Жыл бұрын
link corrupt bro