controlling lots of servos with a Raspberry Pi Pico

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ก.ย. 2024

ความคิดเห็น • 45

  • @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.

  • @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!!!!!!!!!!!!!!!!!!!!!!!

  • @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...

  • @Videogame9559
    @Videogame9559 10 หลายเดือนก่อน +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

  • @jimlynch9390
    @jimlynch9390 5 หลายเดือนก่อน +1

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

  • @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.

  • @oracid
    @oracid ปีที่แล้ว +1

    Thank you very much !

  • @RandomBitzzz
    @RandomBitzzz ปีที่แล้ว +1

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

  • @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.

  • @retireeelectronics2649
    @retireeelectronics2649 2 ปีที่แล้ว +1

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

  • @nidzdotnet76
    @nidzdotnet76 4 หลายเดือนก่อน

    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  4 หลายเดือนก่อน +1

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

  • @fredflintstone1
    @fredflintstone1 2 ปีที่แล้ว +1

    What a fun video and informative great🙂

  • @frankowalker4662
    @frankowalker4662 2 ปีที่แล้ว +1

    Cool. Nice rats nest. :)

  • @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.

  • @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

  • @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.

  • @andymouse
    @andymouse 2 ปีที่แล้ว +1

    Nice and to the point !

  • @shroomy7199
    @shroomy7199 2 ปีที่แล้ว +1

    I like this

  • @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😁

  • @user.A9
    @user.A9 7 หลายเดือนก่อน

    Micropython or circuitpython?

    • @pileofstuff
      @pileofstuff  7 หลายเดือนก่อน +1

      In this case, I was using micropython.

  • @brettb.345
    @brettb.345 2 ปีที่แล้ว +3

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

    • @pileofstuff
      @pileofstuff  2 ปีที่แล้ว +1

      I know, I know... ;-)

  • @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 :)

  • @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.

  • @ArjanvanVught
    @ArjanvanVught 2 ปีที่แล้ว +1

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

  • @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.