Тёмный
No video :(

Continuous Rotation Servo Motors and Arduino (Lesson #11) 

Science Buddies
Подписаться 291 тыс.
Просмотров 54 тыс.
50% 1

Опубликовано:

 

25 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@mjukiz
@mjukiz Год назад
This series is great. Thanks a lot for putting the time and effort into making these tutorials!
@angelosnegkas
@angelosnegkas Год назад
Thank you! Just what I was looking for!
@jacksonfarhat3742
@jacksonfarhat3742 5 месяцев назад
Love these videos, keep up the good work. Though I was wondering, where do you buy your parts, and also what parts should I consider buying if I am starting to get into Arduino?
@Science.Buddies
@Science.Buddies 5 месяцев назад
SparkFun and Adafruit are both great vendors for hobbyist electronics. You can also buy most things on Amazon, but there are so many parts available that sometimes it can be confusing and harder to find what you want.
@coolguyz1016
@coolguyz1016 5 месяцев назад
What parts would you consider buying when starting out?
@Science.Buddies
@Science.Buddies 5 месяцев назад
If you are just starting and want to learn the basics, then at minimum you want a starter kit that has an Arduino, USB cable, breadboard, jumper wires, LEDs, resistors, and buttons. That will be enough for you to follow the first few videos in our tutorial series. Beyond that, there are more expensive intermediate and advanced starter kits that include additional sensors and motors etc. It depends on how much money you want to spend up front vs having to buy more parts later. If you plan to learn more eventually it may be worth just buying one of the bigger starter kits now.
@timotheethibault3223
@timotheethibault3223 10 месяцев назад
Nice video
@zaccora8831
@zaccora8831 2 месяца назад
how do i make it not dependant to computer as in like I want it to be powered by a battery so that it can move on it's own without the connection of the computer?
@Science.Buddies
@Science.Buddies 2 месяца назад
Check out this video! ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-I7MrL5Q7zvY.htmlsi=okMzc6IpDMzdPtb0
@juanmakabayan6577
@juanmakabayan6577 7 месяцев назад
Thanks bro!
@NA-jy4zd
@NA-jy4zd 4 месяца назад
Is there a way to remove the range mentioned at 2:40? The servo I am using only has one velocity for every 10 power, and I want it to increase linearly. Is there another type of servo to use?
@Science.Buddies
@Science.Buddies 4 месяца назад
We can't say for sure, it would depend on the specs of the individual servo.
@wajdanali3738
@wajdanali3738 5 месяцев назад
Sir can we use the delay function in the Arduino to make this motor rotate for sometime in one direction and then in opposite?
@Science.Buddies
@Science.Buddies 5 месяцев назад
Yes you can!
@rankz3362
@rankz3362 Год назад
bro thnx!!
@dicegamenetwork
@dicegamenetwork 4 месяца назад
1:50 I used the Sweep example code and removed all code in the loop. The sevo barely moves then stops moving. Any idea as to why it might happen? How can I look at the header file in a file editor? Thanks
@Science.Buddies
@Science.Buddies 4 месяца назад
If you remove the code in the loop, then you still have the myservo.attach(9); line in the setup function that will run. This may cause the servo to move briefly depending on its position before the code started. As for other Arduino IDE questions, you are better off asking on the official Arduino forums.
@dicegamenetwork
@dicegamenetwork 4 месяца назад
@@Science.Buddies the problem was I jumped around in the video and realized i have 180 servos and not 360
@kadirhaldenbilen6149
@kadirhaldenbilen6149 8 месяцев назад
Can you make the motor make for example 15 full turns (360 x 15) and then stop. Then later make reverse 10 full turns (360 x 10) and stop?
@Science.Buddies
@Science.Buddies 8 месяцев назад
You would need to either time how long it takes to make a turn (which can vary if there is a load on the motor) or use something called an encoder for feedback control to count how many times it turns.
@kadirhaldenbilen6149
@kadirhaldenbilen6149 8 месяцев назад
@@Science.Buddies So then it is just a DC motor. You have almost no control over it.
@Science.Buddies
@Science.Buddies 8 месяцев назад
For a continuous rotation servo, you have control over its speed, but not its angular position. A positional servo (which we have a separate tutorial on) lets you control the angle but it won't go through continuous full 360 degree rotations. To get position feedback and control for a continuous rotation servo, you need additional information from an encoder which measures the motor's position (unfortunately we don't have a tutorial on that yet).
@kadirhaldenbilen6149
@kadirhaldenbilen6149 8 месяцев назад
@@Science.Buddies I know how a normal servo works and how you can get angular position. But without angular position (or at least number of 360 turn) information, it is no more a servo. Just like a dc motor with gear reduction and a driver on board. Because you can do that "encoder control" with any dc motor. Actually there are dc motors with built-in encoders available at very appropriate prices.
@Furaein
@Furaein Год назад
bro stop degree 90 no stopped ??
@hemendrasakpal4307
@hemendrasakpal4307 9 месяцев назад
How can I make the cotinuous servo turn just 90 degrees in either direction
@Science.Buddies
@Science.Buddies 9 месяцев назад
If you want to turn exactly 90 degrees, it would be better to use a positional servo. You could approximate it with a continuous servo by timing how long it takes the servo to turn 90 degrees and using delays to turn it on for a certain amount of time.
@railduck
@railduck 9 месяцев назад
@@Science.BuddiesYou can use servo.h library to control it accurately, you dont need to do it thru delay commands
@Science.Buddies
@Science.Buddies 9 месяцев назад
The servo library is written for positional servos - if you use it with a continuous rotation servo, you will control the speed of the servo, not its position.
@adisonadison4868
@adisonadison4868 5 месяцев назад
Sir from were can we buy this
@Science.Buddies
@Science.Buddies 5 месяцев назад
These servo motors are available from a variety of stores online, they can be hard to find at physical stores.
@hanabi7514
@hanabi7514 6 месяцев назад
IS IT POSSIBLE TO SET THE SERVO MOTOR IN A SPECIFIC TIME? LIKE AN ALARM, IS IT POSSIBLE TO ROTATE IT WHEN THE SPECIFIC TIME CAME?
@Science.Buddies
@Science.Buddies 6 месяцев назад
Hi - to do this you would need a "real time clock" (RTC) add-on for the Arduino UNO R3. The Arduino UNO R4 contains a built-in real-time clock: docs.arduino.cc/tutorials/uno-r4-minima/rtc/
@utkarshmalviya6298
@utkarshmalviya6298 4 месяца назад
​@@Science.Buddies Please make a video on 'how to control a servo with RTC library '
@humzajohnson8096
@humzajohnson8096 5 месяцев назад
what do i put in the loop function, i suck at coding
@teovanlung-oa
@teovanlung-oa 5 месяцев назад
You dont need the loop function if you only use this for testing the continuous servo, if you want to adjust the speed while its rotating or you have other components, then you can use the loop function
@humzajohnson8096
@humzajohnson8096 5 месяцев назад
sorry, can u explain why i dont need a loop function and why id need one if other componenets were atttached? Thanks for ur help so far and the quick response!@@teovanlung-oa
@Science.Buddies
@Science.Buddies 5 месяцев назад
Hi - if you are new to Arduino, we recommend starting at the beginning of our tutorial series (linked in the description), which will explain more about what the setup and loop functions do.
@pranitengineer2080
@pranitengineer2080 4 месяца назад
where is the sourse code
@Science.Buddies
@Science.Buddies 4 месяца назад
You can find example code here: wiki-content.arduino.cc/en/Tutorial/LibraryExamples/Sweep
@pihie
@pihie 6 месяцев назад
for some reason it moves very slowly when gets speed 90
@rikkie4244
@rikkie4244 6 месяцев назад
have you found the solution? tried setting its speed to 93??
@dea6492
@dea6492 Год назад
I Thank 🫵
Далее
How to Use a Microphone with Arduino (Lesson #12)
9:34
HOW DID SHE DECIDE TO DO THIS?!
00:27
Просмотров 7 млн
Cute kitty gadgets 💛
00:24
Просмотров 11 млн
Whoa
01:00
Просмотров 20 млн
From Idea to Schematic to PCB - How to do it easily!
11:05
Servo Motors, how do they work?
15:12
Просмотров 1,9 млн
Using Servo Motors with Arduino
43:06
Просмотров 1,4 млн
Quick Guide to Servos
4:15
Просмотров 92 тыс.