Robot Hexapod - Small and FAST!

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ก.ย. 2024
  • It can run! In this video we can see the hexapod walking and running, it does end up taking some damage but I managed to get a good shot of it running before breaking it too much!
    Don't forget to subscribe because in the next video I'm going to make it remote control!
    GitHub Code: github.com/Jus...
    3D Print files: www.thingivers...
    Music from #Uppbeat (free for Creators!):
    uppbeat.io/t/k...

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

  • @daleyarrow5358
    @daleyarrow5358 ปีที่แล้ว +5

    I think that it’s only fair that you consider entering Hexy into the special hexapod olympics instead. He’s got a gammy knee so he’s at a disadvantage!

    • @JustAnotherMakerChannel
      @JustAnotherMakerChannel  ปีที่แล้ว

      Hopefully when I get the remote control sorted I can make the walking a bit better too.

  • @messerschmidtfpv4419
    @messerschmidtfpv4419 8 หลายเดือนก่อน +2

    Thank you very much for the explanation and especially for the code

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

    This is some nice quality right here 😊

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

    hey man. I made my little robots have a webserver on board the esp32 and then expose the various values through the web page and allow for realtime adjustment that way.
    Pretty certain this was just a demo somewhere that I extended upon. Not hard to do. Easy to do things like steer crudely or even accurately depending on how you manage the info, and adjust things like global stride lengths or individual leg offsets in realtime for tuning. Hope it helps.

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

      Thank you, yes I was thinking of using Http Get/Put for my two way comms so it could be web based or ESP32 to ESP32.
      My biggest battle is how much power the little servos use but aren't really strong enough to carry more batteries, I might end up making a bigger one!

    • @twobob
      @twobob ปีที่แล้ว

      @@JustAnotherMakerChannel cool. yeah its doable anyway. Done it with bits of scrap

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

    You can program ESP32's over WIFI! There's an OTA code block you add to your sketch, Arduino IDE will send it and you'll never need to dissemble again. :)

  • @ahmedbenyoucef3238
    @ahmedbenyoucef3238 11 หลายเดือนก่อน +1

    Thank you very much for your explanation. Just one question: why does the robot deviate from its path when it is walking? I have a simulation about this kind of robot and I have the same problem.

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

    The Arch Nemesis - THE RADIATOR

  • @grahamnichols1416
    @grahamnichols1416 8 หลายเดือนก่อน +1

    How is your hexapod steering progressing (assuming you've had the time)?

    • @JustAnotherMakerChannel
      @JustAnotherMakerChannel  8 หลายเดือนก่อน +1

      Unfortunately I haven't had the time, I haven't uploaded a video in so long (until today) because I've just had so much going, some things not so good but mostly good things, i'm really hoping to get some momentum going in the channel again and this is definitely on the list, perhaps with something bigger and better though ;)

    • @grahamnichols1416
      @grahamnichols1416 8 หลายเดือนก่อน

      @@JustAnotherMakerChannel I hope the good things increase for you/. :)

  • @cesarpadilla8358
    @cesarpadilla8358 11 หลายเดือนก่อน

    just a question, how do you control multiple servos at the same time? or it is just because it is incredibly fast?...

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

    Hi, How can I get the stl files to print the hexapod😅

    • @JustAnotherMakerChannel
      @JustAnotherMakerChannel  7 หลายเดือนก่อน

      Hi, I've finally uploaded them, you can find them here:
      www.thingiverse.com/thing:6463619
      I'll also put this in the description.

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

    I kinda like how I wobbles 😂

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

    Subbed:
    void CartesianMove(double X, double Y, double Z){
    // Slap on the rest positions to Y and Z, because we ain't got time for zeros
    Y += Y_Rest;
    Z += Z_Rest;
    // Time to whip out some trigonometry, brace yourselves
    double J1 = atan(X / Y) * (180 / PI); // J1, just casually chilling in the XY plane
    // H, the hypotenuse in the XY plane. Pythagoras is spinning in his grave
    double H = sqrt((Y * Y) + (X * X));
    // L, the line from the origin to the point in 3D space. Pythagoras is now breakdancing
    double L = sqrt((H * H) + (Z * Z));
    // J3, the angle between J2 and J3. Law of cosines, eat your heart out
    double J3 = acos(((J2L * J2L) + (J3L * J3L) - (L * L)) / (2 * J2L * J3L)) * (180 / PI);
    // B, the angle between L and J2. Law of cosines, round two
    double B = acos(((L * L) + (J2L * J2L) - (J3L * J3L)) / (2 * L * J2L)) * (180 / PI);
    // A, the angle in the XZ plane. But Z rest is negative, so it's throwing a tantrum
    double A = atan(Z / H) * (180 / PI);
    // J2, the sum of B and A. But 'A' is negative at rest, so we're flipping the bird to subtraction
    double J2 = (B + A);
    // Finally, we update the position with our calculated angles. Take that, physics!
    UpdatePosition(J1, J2, J3);
    }
    ChatGPT4 commenting on your code in the style of the Quake square root hack. Yup... it can do that ;)
    Fun fun fun