Arduino / Teensy 6 DOF / Axis Robotic Arm Inverse Kinematics - Update

Поділитися
Вставка
  • Опубліковано 15 жов 2016
  • Here is an update on my Arduino / Teensy 3.2 inverse kinematics project.
    The 6 DOF robotic arms servos are controlled by the Teensys PWM pins. The display shows the current and target angles. It also displays the robots current pose.
    I created a simple instruction language to control the robot from a computer over serial. The commands are in the format:
    Q R0 10 R 1 25 R3 5
    Q - queue in command
    R0 10 - rotate joint 0 to 10 degree
    Q M00 V10 R0 10
    Q - queue in command
    M00 - set movement method to P2P (M01 - linear ...)
    V10 - set angle velocity to 10deg/sec
    R0 10 - rotate joint 0 to 10 degree
    I also mounted the robot to a concrete base, because it kept moving around when at high speed :D
    You can find the Robot controller here on GitHub: github.com/glumb/mrc
    Den Roboterarm kann man in unserem Shop kaufen: micropede.de/shop/mp-robot-kit
  • Наука та технологія

КОМЕНТАРІ • 188

  • @mauriziovetere1956
    @mauriziovetere1956 3 роки тому +2

    The kinematic chain that composes the actuating sistem is impressive!

  • @gabrielgomezdelatorreparod9521
    @gabrielgomezdelatorreparod9521 6 років тому +5

    Hi friend, Awesome project, i want to know, how did the weights of the servomotors affected the IK , did you make some adjustments due to those weights? Because i want to build a bigger arm with bigger motors thats the reason i want to know what type of adjustments should i make. Thanks in advance, keep it up!

  • @fouzanjaved5441
    @fouzanjaved5441 3 роки тому +1

    Cool video about the robotic arm robot, Amazing video.

  • @israelngoy4199
    @israelngoy4199 3 роки тому +2

    did you use any external power supply, if yes can you please explain how you determined the voltage needed to power all your servos?

  • @abrahammagnifico9538
    @abrahammagnifico9538 5 років тому +3

    ho to eleminate the servo jitter with capacitors ? explain please,, with schematics if available, thanks

  • @hi-techinspectionservicesl2547
    @hi-techinspectionservicesl2547 5 років тому +1

    I bought one of these robotic arms I didn't receive it yet but does it come with assembly instructions? How do you add compactors to the servos to smooth the action?

  • @PhG1961
    @PhG1961 7 років тому +1

    EXCELLENT Video !!!

  • @Pengulin
    @Pengulin 4 роки тому

    coolest and highest quality robot arms I've ever seen, just wish the parts were cheaper

  • @TheNamelessOne12357
    @TheNamelessOne12357 4 роки тому

    Could you, please, add a PIO configuration for Arduino Uno or Mega. Teensy is not available here and I was unable to compile the MRC for AVR MCU.

  • @Ikenium
    @Ikenium 5 років тому

    Sorry for bumping this up, but does your code include the game controller interface? Thank you

  • @byronprice817
    @byronprice817 4 роки тому +1

    Hello friend, great work! I have a very similar robot arm kit however, it came with no included assembly instructions and I have reached out to the company but to no avail. Would it be possible for you to post a build tutorial if you recorded yourself doing so but if not would you be willing to send me the build instructions? Thanks!

  • @infinityy3721
    @infinityy3721 2 роки тому

    This is my dream project bro.

  • @Iacobos
    @Iacobos 6 років тому +3

    Looks great! Do you have a list of the hardware you used? I see the servo below.

  • @tae898
    @tae898 6 років тому

    Nice video! what's the current draw btw? Can you also tell me what kind of power supply did you use? Thanks.

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      +Taewoon Kim it’s about max 1A per servo. Only when starting to rotate though. I am using a 6V6A switching power supply

  • @martinkolar6527
    @martinkolar6527 3 роки тому

    Awesome! You should sell them again! What does KJH stand for?

  • @ChupoCro
    @ChupoCro 5 років тому

    Hi, it seems to me that to preserve the angle between the two longest rods (the one with the 'KJH' and the next one which is oval) when you rotate the 'KJH rod', the motor which moves the lever parallel to the 'KJH rod' (the one at the lower left side) has to move too. Am I right? In other words, if you move just the motor which rotates the 'KJH rod' (the one at the lower right side) and all other motors are still, then the angle between the 'KJH rod' and the oval rod will change - and if you want to preserve the angle between the 'KJH rod' and the oval rod when rotating the 'KJH rod' then you have to rotate both lower side motors at the same time by the same angle meaning the lower left motor must follow the lower right motor. That is, the angle between the 'KJH rod' and the oval rod is changed by the *relative* rotation of the lower left motor with respect to the lower right motor.

  • @MontageReflex
    @MontageReflex 7 років тому

    awesome! just curious, why is there shaking with the robot? is that due to the stepper motors having some play in them?
    cool video

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      theconsumer 1 thanks! :) I first thought it was due to noise in the control signal or the weak power supply. Actually, it turned out that one broken servo was causing high peaks in the power consumption.
      The shaking is gone now. The movement is still not super smooth, since the servos have a deadband of 5us. I am going to switch to hall sensor based servos soon.

  • @thomashiemstra
    @thomashiemstra 7 років тому +7

    Which method did you use to solve the inverse kinematics? Position and orientation decoupled? Did you use the DH convention?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +5

      I used an algebraic approach for the wrist and geometric to solve the remaining angles. I did not use DH convention, but that may be a good idea to follow a standard. The IK works for all kinds of robots (see my other video: ua-cam.com/video/tSry9HfZKh8/v-deo.html). I watched your videos, looks like you also work on 6 DOF IK. We could join forces :D. I plan to open source my version soon, after I did some cleanup.

    • @thomashiemstra
      @thomashiemstra 7 років тому

      I'd love to see your source code, currently I'm doing all the calculations on the arduino but it cannot use doubles so I have some work left to do.

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +4

      I just published a JavaScript version of the kinematics: github.com/glumb/kinematics
      C++ is basically the same logic. Ill add a link when I finished the project.

    • @amthakkaamthakka7595
      @amthakkaamthakka7595 7 років тому

      Hey Thomas, I am trying to implement similar 6 dof IK, Had a couple of questions where I am stuck.. Can we discuss? My email id is aakash@ucsc.edu! Thanks :D My current progress can be seen at: www.aakasht.com/Robotics/driver.html

    • @amthakkaamthakka7595
      @amthakkaamthakka7595 7 років тому

      Hey Maximilian, Great stuff! I am trying to implement similar 6 dof IK, Had a couple of
      questions where I am stuck.. Can we discuss? My email id is
      aakash@ucsc.edu! Thanks :D My current progress can be seen at:
      www.aakasht.com/Robotics/driver.html

  • @cybercrazy1059
    @cybercrazy1059 5 років тому

    wo bekommt man eine Bauanleitung für diesen Roboterarm? Hab die Blechteile auch aus China bekommen aber ohne Bauanleitung...

  • @seth8034
    @seth8034 7 років тому +2

    Hey great job! I have started working on my own robotic arm recently. I know how to program the servos and have everything set up, however I have never done anything as "fancy" as this! I usually hot glue stuff and it's not pretty. Do you have a video or any tips on how I can learn how to make a metal body like yours? I really would like to step up the materials and methods I use to be more professional than just hot glue but I'm not sure where to get the materials.

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +3

      +Seth F thank you! Actually, we have a small online shop where we sell the robots micropede.de .The metal body is laser cut and m3 screws are used to fasten the parts. You could design the parts and ask a local lasercutting company to cut the pieces for you.

    • @seth8034
      @seth8034 7 років тому

      Thanks!

  • @darrenwatson1539
    @darrenwatson1539 6 років тому

    Neat stuff. I'm new to Arduino. Just getting started. I'm really wanting to take on building this exact arm and I have no ideal where to begin. I have my IDE, a Arduino compatable MEGA 2560 R3, but, I haven't started coding That's something Ive still got to get my head wrapped around first and I'm getting ready to order the arm ket. . Could I trouble you for a parts list? Just a simple list of all of the hardware you used to build it and maybe some pointers. Things to avoid and such. And are you planning to make your Sketch for this project available?

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      Hey, the robot controllers source code is available on GitHub github.com/glumb/mrc

  • @sato4kaiba
    @sato4kaiba 7 років тому

    Due to the speed in which your moving the servos, the decrease in current problem is correct. However, using some capacitors will be a waste of time. Get two super capacitors for the whole system. Use one for the controller on the 5V side like a 5.5v 1.0 Farad, increase your servo supply to either 6V - 7.2 V and use a super cap on the power supply side for the servos. The other option is to get a 6v 7.2 AH lead acid battery. Its about $15 and can be charged it with an auto battery charger. This will be a better solution.
    A super cap can be made by using two or more capacitors but have some calculations to the design due to current surging. The lead acid battery is a better solution. You can also use lil-poly or lithium polymer battery configurations but a special trickle charging unit is required and a fire proof charging bag is needed.
    Hope my two cents help

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      Satobatsu Kaiba thanks for your help. I Switched to a more powerful power supply with 1A per Servo. Still the capacitors seem to be useful to smoth the high starting current.

  • @i-make-robots
    @i-make-robots 7 років тому

    Nice! How did you make the metal parts?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +1

      Hey, I did not make the metals parts myself. They were laser cut in a factory.

  • @pd.dataframe2833
    @pd.dataframe2833 6 років тому

    what do you call those stand off like long hexagonal female bolts that are keeping the arm plates at right distances

  • @jake_runs_the_world
    @jake_runs_the_world 6 років тому +1

    This soo cool!

  • @tapcity-iosandroidgameplay9946
    @tapcity-iosandroidgameplay9946 4 роки тому

    what type of servo do u use?

  • @pd.dataframe2833
    @pd.dataframe2833 6 років тому

    what are parts in the rotatory joints other than bearings...i mean what did you use to lock bearing in place

  • @wesleycains6111
    @wesleycains6111 6 років тому

    cool bit of dancing will you be putting a spindle on it and is it the atmega you used many thanks wes

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      Wesley Cains I’m using a teensy microkontroller. Unfortunately the robot is not rigid/stiff enough for handling a spindle

  • @morbidfancy1
    @morbidfancy1 5 років тому +3

    Amazing :)

  • @AlexSadman
    @AlexSadman 5 років тому

    cool, but how many kg he can use?

  • @EOjeda-pw6tj
    @EOjeda-pw6tj 6 років тому

    Hi Maximilian. Do you think you can get at least 0.2mm of repeatability in the movements

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      Hi, unfortunately there is no way to get sub mm precision out of Hobby servo based robots. The slack in the servos gearbox combined with a 30cm lever is about 1-2 mm. Event with halleffect servos it’s not likely.

  • @Etienne85
    @Etienne85 4 роки тому +1

    nice sound track

  • @fouzanjaved5441
    @fouzanjaved5441 3 роки тому +1

    Sir, can I used the acrylic robotic arm project instead of that robotic arm project that you just made?. Sir, can I used the inverse kinematics s' coding that you just provide me, can I apply the code that you have just given to me and can I use that programming code that you have just given to me in the new acrylic robotic arm? Can the new acrylic robotic arm works, when I upload the given code you just provide, can the new acrylic robotic arm works or not? Please reply to my questions. Thank you, sir.

  • @arayarock1
    @arayarock1 7 років тому +1

    What programs do you use to compile and control the robot?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +2

      Moises Araya I am using PlatformIO to compile the code and transfer it to the Teensy. Controlling is done via GCode like instructions

    • @arayarock1
      @arayarock1 7 років тому +1

      Could you make a video showing how to use the libraries correctly for the robot to work?

  • @berkayonayl2136
    @berkayonayl2136 2 роки тому

    Hi friend, very good job, I want to do this but with step motors. I need to learn inverse knematic equations. How can I find out this equations to find the location of the endpoint.

    • @MaximilianBeck
      @MaximilianBeck  2 роки тому

      You find a GitHub Repo with the IK in the video description

  • @samialfarra4275
    @samialfarra4275 7 років тому

    tank you so much . how can i make this arm more accurate ? change servos or put stepper instead . what type of motor to make bedt accurate ?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      You could use better servos with lower deadband. Steppers are event better but would require position feedback.

    • @samialfarra4275
      @samialfarra4275 7 років тому

      +Maximilian Beck please can suggest me motor model i want to use this arm to drawing . pleae can you give me error rate 2 mm or more ?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      +Sami Alfarra look for KST MS series

  • @4VPme
    @4VPme 7 років тому

    Great stuff, please tell me few things. What kind of servos are those, and are those aluminium sheets 2mm thick?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +1

      The bigger ones are just regular MG996R the smaller ones are SG91R. Actually, ​it's metal, 1.4mm.

    • @4VPme
      @4VPme 7 років тому

      Impressive, I never thought those servos could handle the weight. So, what kind of voltage regulator did you use? I believe they're working on 6V and probably consuming at least 1A per servo. I can't rly see, but did you use some servo shield for 12 bit resolution?
      I apologize if being rude with those straight forward questions, but those are crucial info that I need for my project.
      P.S Your arm design is on spot, I like how you made counterweight with that servo.

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      4VPme Correct, I am using a 6V 6A power supply. I switched to a teensy 3.2 for controlling the servos directly using the PWM pins. 12bit resolution is not really necessary, since the servos deadband is about 5us or 0.9 degree. I bought some hall effect servos for better accuracy but did not have the time to install them.
      Thanks, but I did not design the mechanics of this arm, I am working on the controller.
      May I ask what project you are working on? 🤖

    • @4VPme
      @4VPme 7 років тому

      Sure, I'm on this project where I, basically, have to build a robot arm from the scratch, including all, modeling, building and programming so...yeah, it will be challenging.
      Anyhow, thank you for info you provided me with, I'm sure it will prove helpful. :)

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      +4VPme Nice, sounds like a very interesting project! I wish you much success :)

  • @pythongui5199
    @pythongui5199 3 роки тому

    Fantastic.....it would be great integrate with a GUI programming to control the arm moviments. Congratulations, its just fantastic.

    • @MaximilianBeck
      @MaximilianBeck  3 роки тому

      Thanks 😊 I actually built a GUI github.com/glumb/robot-gui the file RemoteRobot.js can be used to interface with the robot. In addition I also built an RoboDK Plugin to control the robot.

    • @aszmajdzinski
      @aszmajdzinski 6 місяців тому

      Hello,@@MaximilianBeck
      Thank you for sharing your code. Are values in default configuration in repo the same as for the robot in the video?

    • @MaximilianBeck
      @MaximilianBeck  6 місяців тому

      @@aszmajdzinski Hi Adam, Its now over 7 years, so I'm not 100% sure, but this was the type of robot I programmed the controller for. So I assume they should match.

  • @mevlutaydn7800
    @mevlutaydn7800 6 років тому

    Hi, what type of power supply did you use ? Voltage and Current value ?

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      6V6A. Rule of thumb is 1A per servo. But less may be sufficient, too. Depending on the load and how many are moving at the same time.

    • @mevlutaydn7800
      @mevlutaydn7800 6 років тому

      thx for info. I am using 4 996r servos , 2 995 servos. I will use two adapter first is 6v3.6a second is 6v 1a

    • @lamgoctam
      @lamgoctam 5 років тому

      what type of power supply did you use? I got 6v but only 2A.

  • @davebullock6991
    @davebullock6991 2 роки тому

    I have the kid for this arm, but can't find any assembly instructions. Any suggestions?

    • @MaximilianBeck
      @MaximilianBeck  2 роки тому

      micropede.de/products/mp-robot-kit/files/mp-r-ab-montageanleitung.pdf

  • @3dprintwiz378
    @3dprintwiz378 7 років тому

    Hi, I just wanted to ask how you did your arduino script so that the servos do not jump/jerk to a default position when first time it is attached or turned on. It's just so annoying when, I send the command attached to my servos on arduino, my servos jumps violently to a default angle. Thanks.

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      You can 'writeMicroseconds' before you call attach. Besides that they always move to the frequency you set them to. I made a small gist that pulses the servo with different us values until it reaches the target. Its a bit jerky but moves slower than fullspeed: gist.github.com/glumb/c427c628690991ddc4b2be0c0b23a138

    • @3dprintwiz378
      @3dprintwiz378 7 років тому

      Thank you very much, I'll try it out.

    • @melissaeckardt8767
      @melissaeckardt8767 7 років тому

      did it work for you? I'm wanting to try this also.

    • @3dprintwiz378
      @3dprintwiz378 7 років тому

      It does not work for me, even when I do a write command to servos before attaching them, they will still jump to a default position. The work around I did , is to have my robot arm position conveniently at a default position, normally at a no. 7 sort of shape/position, before I initialize the bot so the jerky movement is eliminated since all servos is at its initial/default positions already.

    • @melissaeckardt8767
      @melissaeckardt8767 7 років тому

      yea, I've been doing that also.

  • @dev_salom
    @dev_salom 7 років тому +1

    😍

  • @albertovalentini2351
    @albertovalentini2351 7 років тому

    Have you used Arduino to control the display?

  • @TutocarloCV
    @TutocarloCV 7 років тому +1

    nice

  • @muhammadyousufeisa3982
    @muhammadyousufeisa3982 2 місяці тому

    will you provide the caluculations of invese kinematics

  • @arvindswami6547
    @arvindswami6547 7 років тому +1

    nyc one bro

  • @14types
    @14types 2 роки тому

    for what this jerky movements?

  • @0mdshuvo0
    @0mdshuvo0 2 роки тому

    Background music name?

  • @leonorconego8940
    @leonorconego8940 3 роки тому

    Hello! First of all congratulations for this work, it's so good!
    Would you give me permission to use some shots of this video in a video in which I'm working on? I've looked for something similar on 'Storyblocks' but I can't find footage like this. Thank you in advance =)

    • @MaximilianBeck
      @MaximilianBeck  3 роки тому

      Hi, what kind of video are you working on?

    • @leonorconego8940
      @leonorconego8940 3 роки тому

      ​@@MaximilianBeck it's a teaser (1minute maximum) which intends to promote an activity my faculty (Faculty of Engeneering of University of Porto) is going to do with high school students next month. So basically I need to find footage of robotic arms and a DIY arduino Line Follower Car. I've seen other videos of yours and you actually have even better footage for this purpose. So if you could provide me any of it, it would mean a lot.

    • @MaximilianBeck
      @MaximilianBeck  3 роки тому

      @@leonorconego8940 sure, feel free to use footage from my videos for this purpose 🙂

    • @leonorconego8940
      @leonorconego8940 3 роки тому

      @@MaximilianBeck HUGE thank you!
      And I wish you success! I can see long hours of work and effort in each video

  • @-DINESHKUMARSN
    @-DINESHKUMARSN 2 роки тому

    Hi brother , this is dinesh student of ROBOTIC AND AUTOMATION department from INDIA
    Could you share me the code used in this arm, I just ask this to you because of the fast acceleration of arm and this would help me in completing the project

  • @shubhamshah9963
    @shubhamshah9963 6 років тому +1

    very fantastic...!!!! specia;;ythe screen...

  • @mykolatetiuk6661
    @mykolatetiuk6661 3 роки тому

    Luv it

  • @tushar3385
    @tushar3385 5 років тому

    Sir how to selected the motors? How did you found the torque require ?

    • @MaximilianBeck
      @MaximilianBeck  5 років тому

      tushar chaudhari i just calculated F*distance (F weight of the robot itself + desired load, distance maximum robot reach)

    • @tushar3385
      @tushar3385 5 років тому

      Didn’t you considered effect of inertia?

    • @MaximilianBeck
      @MaximilianBeck  5 років тому

      Not for this model robot

    • @tushar3385
      @tushar3385 5 років тому

      Ok thank you sir

  • @michaelringer5644
    @michaelringer5644 4 роки тому

    Benutzt dieser Roboter DH Parameter oder Matrizen für das berechnen der FK/IK?

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому

      Der Robotercontroller ist open source, siehe Videobeschreibung. Keiner meiner IKs nutzt die DH Konvention.
      IK mittels geometrischem Ansatz, Hand via Vektorrechnung.

    • @michaelringer5644
      @michaelringer5644 4 роки тому

      ​@@MaximilianBeck Was bräuchte man zusätzlich noch wenn man dein Kit kaufen würde?

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому

      @@michaelringer5644 Leider haben wir die Sparte Hobbyrobotik eingestellt und werden die Produkte nicht wieder einlagern.

    • @michaelringer5644
      @michaelringer5644 4 роки тому

      @@MaximilianBeck Schade war wirklich gut dokumentiert auf der Seite.

    • @michaelringer5644
      @michaelringer5644 4 роки тому

      @@MaximilianBeck Wüsstest du welcher von diesen hier am nähesten an deinen heran kommt, oder besser ist?
      Roboter 1
      www.ebay.de/itm/6DOF-Metal-Mechanical-Robotic-Arm-Frame-Kit-for-Robot-Smart-Car-Arduino-SCM-DIY/252779108847?hash=item3adacf19ef:g:vskAAOSw4CFYqqZu
      Roboter 2:
      www.ebay.de/itm/New-6-Axis-Robot-Arm-6DOF-Robotic-Arm-Industrial-Mechanical-Arm-Only-xs90-SZ/153325641742?hash=item23b2eba00e:g:hAIAAOSw~2VcLHLF

  • @daumantaskriauciunas1215
    @daumantaskriauciunas1215 5 років тому

    Where can finde arduino code, which i can upload in arduino apps?

  • @did3d523
    @did3d523 5 років тому

    mother board at 1cm to tuch alumi,nium on table Boom!

  • @gowtham-qj7qg
    @gowtham-qj7qg 3 роки тому

    😍😍😍

  • @amrali5290
    @amrali5290 7 років тому +1

    Name of servo motors please.

    • @MaximilianBeck
      @MaximilianBeck  7 років тому +3

      Amrev Ali MG996R

    • @AzwadAbid
      @AzwadAbid 7 років тому

      I'm glad that you could pull it off with such a budget servo motor. Well done!
      Now I can trust on buying this model as well ^_^. Thanks!

  • @alexshmidt4297
    @alexshmidt4297 7 років тому

    maximilian, can you sell plan for this arm or sell this arm?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      Actually, we sell the robot arm at micropede.de 🤖 😀

    • @alexshmidt4297
      @alexshmidt4297 7 років тому

      Maximilian Beck price? can you do this for cnc router?

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      +alex shmidt it is not possible to use this robot for CNC. It is not rigid and accurate enough.

  • @bonk9623
    @bonk9623 6 років тому

    where i can find instruction for assembly this?

    • @MaximilianBeck
      @MaximilianBeck  6 років тому +1

      micropede.de/shop/mp-robot-kit#downloads

    • @nurulaqilahherman9359
      @nurulaqilahherman9359 4 роки тому

      @@MaximilianBeck do you know on how to control torque on servo motor? Or important parameter to control servo motor torque?

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому +1

      Nurul Aqilah Herman the current running through a motors coils determine the magnetic field and thus torque it produces. Stepper motors are usually rated for max current. Servos however are mostly rated for voltage and thus current is determined by its internal resistance. So use more voltage to get more torque. Still considering the limits.

    • @nurulaqilahherman9359
      @nurulaqilahherman9359 4 роки тому

      @@MaximilianBeck Tqq!!

    • @PiefacePete46
      @PiefacePete46 4 роки тому

      @@MaximilianBeck : So... gradually increase the voltage until smoke alarm sounds, then decrease it a little? ;o)

  • @mohamedabdulakrim5052
    @mohamedabdulakrim5052 5 років тому

    Can this used on arduino uno

    • @MaximilianBeck
      @MaximilianBeck  5 років тому +1

      mohamed abdulakrim no, too little flash memory

  • @ahmedeslamsalman2155
    @ahmedeslamsalman2155 7 років тому

    please tell me what's the lengths of your links

  • @showdown9947
    @showdown9947 7 років тому

    Will you share kinematic solutions ? :)

    • @MaximilianBeck
      @MaximilianBeck  7 років тому

      You can find the kinematics in JavaScript on GitHub: github.com/glumb/kinematics
      I will publish the C++ code soon. the logic is the same :)

  • @ArtamisBot
    @ArtamisBot 2 роки тому

    I'm having someone make me one of those to use for myself

  • @user-ps8rc3ri5l
    @user-ps8rc3ri5l 7 років тому

    You can send drawings

  • @sakaaktif1602
    @sakaaktif1602 4 роки тому

    Bang bikin robot pinto otomatis pake sensor gerak

  • @anonymousgamers5481
    @anonymousgamers5481 4 роки тому

    hey i need its 3d CAD model. Can you provide the link plz?

    • @syedshaheer7227
      @syedshaheer7227 4 роки тому

      mention your email address and I will talk to this guy...

  • @rudra.g578
    @rudra.g578 3 роки тому

    Bro please share the code i will study it.

    • @MaximilianBeck
      @MaximilianBeck  3 роки тому +1

      Yo m8, please look in the description. You will find a link to GitHub :)

  • @asharharoon6899
    @asharharoon6899 4 роки тому

    What is the payload of the arm?

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому +2

      ~ 200 - 300g

    • @asharharoon6899
      @asharharoon6899 4 роки тому

      @@MaximilianBeck Can you send me its cad model for 3D print?

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому

      Ashar Haroon the arm is laser cut from Metal. I don’t think you can print it unfortunately.

    • @asharharoon6899
      @asharharoon6899 4 роки тому

      @@MaximilianBeck I can laser cut it. If I only had the cad files of the part. I can CNC it

    • @MaximilianBeck
      @MaximilianBeck  4 роки тому

      Ashar Haroon micropede.de/link/mp-robot-a-cad i made some cad for visualisation only. Maybe you can use this as starting point. Pw micropede

  • @SwarthySkinnedOne
    @SwarthySkinnedOne 7 років тому

    So that's like going to be the skeletal electro dyno mechanism to a small scale dinosaur for it to jerk and lunge for them half-eaten Mc Donalds cheese burgers dropped on the ground to swallow whole?

  • @yakine13
    @yakine13 6 років тому

    hoooo man... i have a great project that we can work on...

    • @MaximilianBeck
      @MaximilianBeck  6 років тому

      What are you building?

    • @yakine13
      @yakine13 6 років тому

      Maximilian Beck something that the net never saw yet...
      my biggest problem is figuring out how to build the shoulder.
      But for now I'm finishing my exams, and in a few week I will contact you again.
      It's a character for my UA-cam channel (not with this account) that will for sure buzz, I would like to show you the project after, and if you like it we can do it together.
      To get an approximate idea of it , google "claptrap robot" and "glados robot" then mix the 2 of them
      And tell me if you already have a good feeling for this :)

  • @richcollins513
    @richcollins513 5 років тому +2

    damn music epidemic

  • @williamhuang5942
    @williamhuang5942 2 роки тому

    Hanzhen harmonic gear , over 30 years experience ,,robot gear reducer

  • @zelmanfeig5404
    @zelmanfeig5404 2 роки тому

    If this robot is controlled by software, not remote control, then stay away from it, it is dangerous.