controlling lots of servos with a Raspberry Pi Pico

Поделиться
HTML-код
  • Опубликовано: 21 сен 2024

Комментарии • 45

  • @TheEmbeddedHobbyist
    @TheEmbeddedHobbyist 2 года назад +8

    Nice to see an example to show there is life outside libraries, this helps the beginner's understanding of how the hardware actually works. This could lead to them thinking I could increase the pwm frequency add an RC low pass filter and now I've got an analogue output. Nice video

    • @fredflintstone1
      @fredflintstone1 2 года назад +2

      Meow!!!!!!!!!!!!!!!!!!!!!!

    • @andymouse
      @andymouse 2 года назад +1

      @@fredflintstone1 Squeak !

    • @andymouse
      @andymouse 2 года назад +1

      good idea !

    • @fredflintstone1
      @fredflintstone1 2 года назад +1

      @@andymouse Cheese!!!!!!!!!!!!!!!!!!!!!!!

  • @RandomBitzzz
    @RandomBitzzz Год назад +1

    Great example of how to do this. Nuggets like this are great as starting points for bigger, more complex projects.

  • @jimlynch9390
    @jimlynch9390 5 месяцев назад +1

    Thank you. I really enjoy watching these types of videos.

  • @Videogame9559
    @Videogame9559 9 месяцев назад +2

    Thanks for this your only one explained you don't need servo driver board it's usually one servo running. I've got skulls jaw moving up and down on poreject skull.

  • @retireeelectronics2649
    @retireeelectronics2649 2 года назад +1

    That was good for a chuckle, 15 servos and a pico, very nice.

  • @oracid
    @oracid Год назад +1

    Thank you very much !

  • @Videogame9559
    @Videogame9559 9 месяцев назад +1

    That great news I only need 3 servo to work and. Could not get PAC9685 servo control board to work.
    I'll give it a go thanks great video

  • @andymouse
    @andymouse 2 года назад +1

    Nice and to the point !

  • @fredflintstone1
    @fredflintstone1 2 года назад +1

    What a fun video and informative great🙂

  • @frankowalker4662
    @frankowalker4662 2 года назад +1

    Cool. Nice rats nest. :)

  • @shroomy7199
    @shroomy7199 2 года назад +1

    I like this

  • @Bob_Burton
    @Bob_Burton 2 года назад +2

    08:20 I was surprised to see a value of 9000 microseconds used as the top value in the for loop because I am under the impression that the top value for a servo should be 2000 microseconds

    • @conorstewart2214
      @conorstewart2214 2 года назад +2

      That value is not microseconds, it is the number that the hardware pwm module counts to. The hardware PWM here is using a 16 bit counter and has a frequency of 50 Hz that means that 50 times per second that counter counts up to 65535 (there are 65535 counts per 20 ms), so then you can divide the period of 50 Hz (1/50) with the value it counts to (65535), which gives you that every count equals 305 ns, now if you multiply that by 9000 counts you get 2747 microseconds. It could be done better to get you exactly what you need like 2500 microseconds would be 8192 counts, here they probably just chose a round value like 9000 and went out of range of the servos, which isnt recommended.

    • @conorstewart2214
      @conorstewart2214 2 года назад +1

      Also different servos sometimes use different min and max values, sometimes they can get better resolution if they go from like 0.5 ms to 2.5 ms or something like that, rather than the standard range of 1 ms to 2 ms, by going to 0.5 - 2.5 ms they get double the resolution.

  • @aqib2000
    @aqib2000 Год назад +1

    This is a good beginning but I was hoping for 2 simultaneously operation not just one after the other

    • @pileofstuff
      @pileofstuff  Год назад +1

      That's not much different. Just send the same value to multiple servos at the same time.

    • @aqib2000
      @aqib2000 Год назад

      @@pileofstuff that’s not what I meant

  • @jyvben1520
    @jyvben1520 2 года назад +1

    great demo, adding the power board was essential, the base for an 8 legged (16 feet) insect or a snake ...
    could be remote controlled when used with a Pi Pico Wireless ...
    5 volts wasn't needed for the pico, does the servo need it ?
    a 1650 + stepdown convertor to 3.3V is probably enough to make it mobile.

    • @wrxs1781
      @wrxs1781 2 года назад +1

      If you delve into the realm of new model airplane controls running on 2.4 ghz, you can remote control up to a mile away, line of sight.

  • @nidzdotnet76
    @nidzdotnet76 3 месяца назад

    or just get a PCA9685 that has header pins for the servo plugs and use that to plug all the servos in and then interface it with the PICO.

    • @pileofstuff
      @pileofstuff  3 месяца назад +1

      There's plenty of valid ways to get to the same place.

  • @brettb.345
    @brettb.345 2 года назад +3

    My brain was in fact screaming “no, use an array with loops.” 😊

  • @kyleallred984
    @kyleallred984 2 года назад +1

    With the holidays approaching any projects planned for decor?

    • @pileofstuff
      @pileofstuff  2 года назад +1

      Wait... People think I actually plan ahead? 😉

    • @kyleallred984
      @kyleallred984 2 года назад +1

      @@pileofstuff well, more specifically has the wife asked for anything to be made😁

  • @tinygriffy
    @tinygriffy 2 года назад +2

    a robot playing some sort of string instrument perhaps ?

    • @pileofstuff
      @pileofstuff  2 года назад

      Or waving 16 surrender flags after trying for too long...

  • @ArjanvanVught
    @ArjanvanVught 2 года назад +1

    Although I am not in favor of the Pico, I do still like the video :-)

  • @dtec30
    @dtec30 2 года назад +1

    hmm wonder if you could make a servo analogue clock

    • @pileofstuff
      @pileofstuff  2 года назад +1

      As long as you spread the numbers around 180 degrees on the display (or add some gearing) it should be possible.
      Though the hands wound need to "rewind" to the start each day.

  • @ericblenner-hassett3945
    @ericblenner-hassett3945 2 года назад +1

    defining individually or a loop setting an array is ineficient compared to HEX data.. and way beyond most ' beginner ' videos and totally take away from 16 servos on one Pi PICO being adressed individually.

  • @whodatdere1
    @whodatdere1 2 года назад +1

    1337 Great time

    • @jyvben1520
      @jyvben1520 2 года назад +1

      13:37 is the end of the video

    • @whodatdere1
      @whodatdere1 2 года назад

      @@jyvben1520 Look up 1337 meaning. You'll understand what I mean :)

  • @user.A9
    @user.A9 7 месяцев назад

    Micropython or circuitpython?

    • @pileofstuff
      @pileofstuff  7 месяцев назад +1

      In this case, I was using micropython.

  • @kndskjnjdsksns
    @kndskjnjdsksns Год назад

    is it ok with 360 degrees?

    • @pileofstuff
      @pileofstuff  Год назад

      I would assume so - I don't have any 360 degree servos to experiment with.

  • @ZenHulk
    @ZenHulk 8 месяцев назад

    Why don't you all stop believing that a 9gram servo is a servo its nothing can do nothing works for nothing, most of them don't work out of the box.... LETS PUT 10 25kg or 40kg servos on the raspberry pi and watch it explode. i am so tired of 9gram servos being the test for everyone who thinks they're making a good video.

    • @pileofstuff
      @pileofstuff  8 месяцев назад +1

      The 9 gram ones are really cheap, which makes them approachable for beginners.
      The better ones can become prohibitively expensive if your project needs more than couple.
      Regardless, the control method is the same, so this demonstration is still valid no matter which servomotors you prefer to use.