It amazes me how you take this complex stuff (which might as well be rocket science to me) and make it approachable. Not many go in-depth into the coding like you do -- thank you for that!
It's a shame you stopped posting about this arm. Just to let you know; I have taken a great deal of inspiration from your arm and also your explanations of cycloidal drives. Love your designs and enthousiasm. Hope you'll post more!
I am currently a master’s student studying robotics and in my Industrial Robotics class last fall semester, we did extensive work on forward & inverse kinematics, dynamic modeling, and control of the 6-axis manipulator arm. But seeing the theory in action here is really fulfilling. This looks awesome. I would love to build one myself. Thank you for inspiring us!
My education is in automation and robotics. I just want to say that this channel is really, really good and relevant. I hope the algorithm picks it up so that more people will get to check it out. Keep up the good work! :)
I don't know how long you've been making videos, but as someone who is progressing into the world of robotics, this channel is fascinating. Keep up the great work!
Dude plz let us hear your awesome voice without skipping it. For us, non English languages this warm voice lets us feel heaven. 😍 I like all of your videos, the theme of videos, your character, the feeling of your room, the colours, and above of all, your science and the way you teach it to us, dude it's incredibe. Plz go on I'm waiting for your new works❤️❤️
First you show it. Then because you are awesome you wrote a book about it. And because you are also generous... You give it away to other tinkerers. You are a fresh breath of air and a gentleman. Well done!
No idea how this flew under the radar for so long. damn you youtube algorithm! Subscribed...but I see the uploads stopped. I hope you're doing well. thank you for sharing (and doing the work as 'people before me' so I can play with your code).
Your videos and projects are impressive! You also have a very soothing voice. Almost too-soothing, I probably have no idea what I'm talking about, but is there a fair amount of audio compression here? It almost feels like your rather-soothing voice blends into white noise and I have a rather difficult time concentrating on what you're saying. 😅I don't remember that being an issue in previous videos though, so I'm probably just crazy. Awesome stuff!
Great video, learning IK was super daunting, but worthwhile. IK looks more complicated then it actually is, but seeing the maths is a bit of a yikes! Essentially all you need to do is, loop through each joint treating the later joints of the chain as stiff, so all you need to do is solve a simple one joint problem. Then you move the joint a little fraction towards the target location, constrain by the hard limits and move on to the next joint. As you repeat the procedure multiple times through the chain, the end point gets closer and closer to the target position until you call it solved.
For those who are wondering, this method is called "gradient descent". It's an alternative to hard-solving the joint angles for the target end effector position, which saves you the time and effort of making a fully fleshed out IK model.
Holy coowww, thats great, and you are doing it not with paid software like Matlab but with open source free to use tools Thank you!! Just subscribed I wonder 2 things I do on matlab, if it can follow a trajectory now or if control algorithms like PID and so on be added to it
Dame well explained, i really like the efficiency of your video and editing skills. Speed learning. Never truly understood the inverted kinematics part untill now. And possible for any rotation placement translate software can handle it. Also make it into pure 3d axis gcode..
really impressive! one better soolution to the control problem is using omniverse Isaac Gym reinforcement learning - you can then trian a neural network to match any end-effector pose and if there is more than one solution you can reward the position you like best. You can then work on more advanced feature like adding things like camera tracking or gripping..
you would think there would be software that allows you to define the arm more easily then typing out an urdf file. You are doing very interesting work.
Hi Chis, there is software available to convert Fusion 360 models straight into URDF, but I felt that getting to grips with a simple URDF file would probably be more educational - it's nice to understand how things work before using automated tools.
@@roTechnic I use FreeCad which can create a step file, which I believe is a common format. I agree that it's nice to understand how things work. The value labels are not easily guessed at though, and I wonder if some specifications are missed just because you didn't know about them. Also in the rotate z access the value was 0,0,-1. Why -1 and not 1?
@@chrisBruner Yeah, some of the specifications were missed out to keep this a small and simple as possible - this in the minimum that was needed to make this work - I know you can do a lot more with URDF than I did here. the Z axis was -1 because it rotates anticlockwise, not clockwise. Have you seen any IK chains that take STEP files as input, as fusion also has the ability to output this format?
I would really like to do a traduction to spanish of this video; it has good concentred information to those who are interested in Robots Arms. Imagine how much people are losing information just because our spanish community has not too much videos like this. Maybe kids that are interested and don't understand well english.
Hello A very helpful and informative video I am currently building a robot arm myself, so I am wondering how the connection from the program to the hardware was realized. Do you use a microcontroller like a Rasparry Pi or how do you realize this connection? Best thanks and a cool colleague you have built😁
Can you please do a full tutorial of making the arm and then creating an AI programme for a task the arm completes, such as stacking objects but running on an AI so that it can react and adjust to different situations such as if a box is in the wrong start place of a stacking sequence or similar?
I used the UR3 robot in school. We were able to physically move the robot to a location we wanted and save that position. Made things super simple for tasks, wonder if you could do the same thing here
You really produce great content! Small question for the future, would it be possible in the software to use the controller to plan out a path and then store and repeat it?
@@roTechnic I subscribed to your channel and the github. I got Ros and Jupyter installed on Debian Buster trying to work out the details. Excited for the next video.
I don't remember exactly what is is, and can provide more info if interested, but I was doing a robot arm project (Simple MG995 servos), modeled it in fusion and found a really cool fusion to URDF converter asdon someone had made. It required me to flatten the hierarchy tree and joints first, but came out really well with ROS.
@@roTechnic I dont believe I can link without getting caught in the spam filter on youtube so can only give the search term of "fusion2urdf" which should bring it right up. Its a script hosted on github which has decent enough documentation, and while it hasnt been worked on in a small while I have no reason to believe it doesnt still work.
Wait a minute... it's already done? So I'm solving Denavit-Hartenberg parameters, kinematic decoupling, and Jacobians for nothing? What a fraud! Grat Video!
You were so close to beating the average youtube "i'm going to make a robot arm" series, but no, if you stop here at, the "I got an IK library to work with a controller" you'll be stuck slightly behind the average High School robotics class. Don't give up, you can do it, get yolo based tracking or something to push your series into the "advanced High School robotics" level.
great stuff! one question if you could guide me please... how does controller know the current angles between joints? do you have some measuring tools plugged into joint or you just maintain those angles throughout the runtime of the controller script (after each move, as a "state")? Thanks in advance!
That's really impressive. Could I ask for the software you use to show and control the urdf file in simulation? Thank you very much. Your videos inspire me so much.
Incredible motions! I'm pretty new to this robot and ROS thing and I have a question. The python script you use in this video, is it the same as the comercially available software like coppelia sim (I think it was called V-Rep back then)? I find the steps very similar and I'm more experienced with coppelia
not really, it does only one thing, converting the position to joint angles, whereas the software you mention has a lot more functions. I’ll be diving into simulation software in a future video
Thanks man! I had a problem had to add this import sys !{sys.executable} -m pip install ikpy !{sys.executable} -m pip install numpy !{sys.executable} -m pip install matplotlib !{sys.executable} -m pip install ipywidgets !{sys.executable} -m pip install ipympl in order to get it to work.
This is going to sound weird as hell...but I've watched several of your videos now, and every time I do...there's this little voice in the back of my head going "HE'S NOT REALLY BRITISH!!!" Now, naturally, I don't actually believe this little voice. "Why would anybody create a UA-cam channel where they release tons of content, all where they do an impeccable but fake british accent?", I ask myself. And that's about as far as I get. I then watch some awesome robotics or robotics-adjacent content...occasionally having to tell the little voice to shut up, and that you're not actually an American doing the most perfect British accent ever. You're not, are you? :P
"most of the hard work has already been done for us by the other people" This should be inscribed on every academic building 😆
...'done by other people' - Aristotle
I work as a robotics engineer, and these videos are awesome and I am sure you are inspiring so many people. Keep it up
you guys hiring?
It amazes me how you take this complex stuff (which might as well be rocket science to me) and make it approachable. Not many go in-depth into the coding like you do -- thank you for that!
It's a shame you stopped posting about this arm. Just to let you know; I have taken a great deal of inspiration from your arm and also your explanations of cycloidal drives. Love your designs and enthousiasm. Hope you'll post more!
I am currently a master’s student studying robotics and in my Industrial Robotics class last fall semester, we did extensive work on forward & inverse kinematics, dynamic modeling, and control of the 6-axis manipulator arm. But seeing the theory in action here is really fulfilling. This looks awesome. I would love to build one myself. Thank you for inspiring us!
Wow, thank you very much!
My education is in automation and robotics. I just want to say that this channel is really, really good and relevant. I hope the algorithm picks it up so that more people will get to check it out. Keep up the good work! :)
Wow, thank you!
I don't know how long you've been making videos, but as someone who is progressing into the world of robotics, this channel is fascinating. Keep up the great work!
Wow, thanks!
Dude plz let us hear your awesome voice without skipping it. For us, non English languages this warm voice lets us feel heaven. 😍 I like all of your videos, the theme of videos, your character, the feeling of your room, the colours, and above of all, your science and the way you teach it to us, dude it's incredibe. Plz go on I'm waiting for your new works❤️❤️
It's so impressive that you are able to explain such a complex topic in under 10 minutes:D Great! Subscribed!
Love your channel. So happy that you have started posting more often
thank you very much!
First you show it.
Then because you are awesome you wrote a book about it.
And because you are also generous... You give it away to other tinkerers.
You are a fresh breath of air and a gentleman. Well done!
I still wish you would come back to this though. So awesome!
aww yeah! new RoTechnic video! I'm absorbing every bit of your series because I'll want to add a robot arm to my DIY exploration rover project
BEST COMMENT EVER!!!
I've always been curious how they did the math for the robots at work. Definitely waiting eagerly for the next videos to build one of these at home!
Brillant! Love watching the Progress of your arm
thank you
Amazing quality content! There aren't enough UA-cam channels that cover robotic arms and manipulators in a simple way.
No idea how this flew under the radar for so long. damn you youtube algorithm! Subscribed...but I see the uploads stopped. I hope you're doing well. thank you for sharing (and doing the work as 'people before me' so I can play with your code).
A very good quality content!! Definitely subscribed . Thanks
SO easy to understand and follow for a beginner like me. Thank you so much for your work.
Amazing work!
The story telling style you're using makes the content easier to comprehend and digest
thank you
Okay, you got me as your new subscriber,, thanks for provide the source we needed,,
You have the coolest voice/accent combo I have ever heard! Oh, and I loved the video as well:)
Totaly educating. I hope you keep to share more videos especially about dynamics and kinematics.
Using ROS, particularly MoveIt, you can extend your control. It helps solve all problems you mentioned in the end. And trajectory control can be added
I'm definitely planning to use ROS and MoveIt, but it's a long road to get there!
Your videos and projects are impressive! You also have a very soothing voice. Almost too-soothing, I probably have no idea what I'm talking about, but is there a fair amount of audio compression here? It almost feels like your rather-soothing voice blends into white noise and I have a rather difficult time concentrating on what you're saying. 😅I don't remember that being an issue in previous videos though, so I'm probably just crazy. Awesome stuff!
Thanks. I'm afraid the audio is straight from the mic - no compression or anything. Maybe I just need to speak more clearly!
MAN! At first i thought it was me, i've already got an A in industrial robotics and while preparing the exam i listened all day joy division...so cool
very cool and inspirational, thank you for this video series :)
Glad you enjoyed it!
Very cool video!! Thanks for sharing.
Great video, learning IK was super daunting, but worthwhile. IK looks more complicated then it actually is, but seeing the maths is a bit of a yikes! Essentially all you need to do is, loop through each joint treating the later joints of the chain as stiff, so all you need to do is solve a simple one joint problem. Then you move the joint a little fraction towards the target location, constrain by the hard limits and move on to the next joint. As you repeat the procedure multiple times through the chain, the end point gets closer and closer to the target position until you call it solved.
Thanks, you've inspired me to give it a go!
For those who are wondering, this method is called "gradient descent". It's an alternative to hard-solving the joint angles for the target end effector position, which saves you the time and effort of making a fully fleshed out IK model.
Holy coowww, thats great, and you are doing it not with paid software like Matlab but with open source free to use tools
Thank you!! Just subscribed
I wonder 2 things I do on matlab, if it can follow a trajectory now or if control algorithms like PID and so on be added to it
Amazing ! Great ingenuity and entertainment !
thank you Philip!
Dame well explained, i really like the efficiency of your video and editing skills. Speed learning.
Never truly understood the inverted kinematics part untill now.
And possible for any rotation placement translate software can handle it. Also make it into pure 3d axis gcode..
really impressive! one better soolution to the control problem is using omniverse Isaac Gym reinforcement learning - you can then trian a neural network to match any end-effector pose and if there is more than one solution you can reward the position you like best. You can then work on more advanced feature like adding things like camera tracking or gripping..
you would think there would be software that allows you to define the arm more easily then typing out an urdf file. You are doing very interesting work.
Hi Chis, there is software available to convert Fusion 360 models straight into URDF, but I felt that getting to grips with a simple URDF file would probably be more educational - it's nice to understand how things work before using automated tools.
@@roTechnic I use FreeCad which can create a step file, which I believe is a common format. I agree that it's nice to understand how things work. The value labels are not easily guessed at though, and I wonder if some specifications are missed just because you didn't know about them. Also in the rotate z access the value was 0,0,-1. Why -1 and not 1?
@@chrisBruner Yeah, some of the specifications were missed out to keep this a small and simple as possible - this in the minimum that was needed to make this work - I know you can do a lot more with URDF than I did here. the Z axis was -1 because it rotates anticlockwise, not clockwise.
Have you seen any IK chains that take STEP files as input, as fusion also has the ability to output this format?
I would really like to do a traduction to spanish of this video; it has good concentred information to those who are interested in Robots Arms.
Imagine how much people are losing information just because our spanish community has not too much videos like this. Maybe kids that are interested and don't understand well english.
That sounds like a great idea
Interesting and easy way to do IK :)
I probably try your solution !!
Hello
A very helpful and informative video
I am currently building a robot arm myself, so I am wondering how the connection from the program to the hardware was realized. Do you use a microcontroller like a Rasparry Pi or how do you realize this connection?
Best thanks and a cool colleague you have built😁
Can you please do a full tutorial of making the arm and then creating an AI programme for a task the arm completes, such as stacking objects but running on an AI so that it can react and adjust to different situations such as if a box is in the wrong start place of a stacking sequence or similar?
Impressive! Nice work!
I used the UR3 robot in school. We were able to physically move the robot to a location we wanted and save that position. Made things super simple for tasks, wonder if you could do the same thing here
You really produce great content!
Small question for the future, would it be possible in the software to use the controller to plan out a path and then store and repeat it?
thank you. and yes, but that’s the next video!
@@roTechnic I subscribed to your channel and the github. I got Ros and Jupyter installed on Debian Buster trying to work out the details. Excited for the next video.
Gotta appreciate that Joy Division T-shirt
Robots, robots will tear us apart again.
Big fan of your content. Hello from Ukraine btw
thank you. hello from the UK!
I don't remember exactly what is is, and can provide more info if interested, but I was doing a robot arm project (Simple MG995 servos), modeled it in fusion and found a really cool fusion to URDF converter asdon someone had made.
It required me to flatten the hierarchy tree and joints first, but came out really well with ROS.
Oh, that sounds super useful! If you remember what it was, I'd love to know!
@@roTechnic I dont believe I can link without getting caught in the spam filter on youtube so can only give the search term of "fusion2urdf" which should bring it right up.
Its a script hosted on github which has decent enough documentation, and while it hasnt been worked on in a small while I have no reason to believe it doesnt still work.
thank you. I’ll give it a go.
So nice!! Thanks a lot!!
Great video!!
I am building robot as well, I wonder do you have some tutorial or guide how to link the IKPY with arduino?
Wait a minute... it's already done? So I'm solving Denavit-Hartenberg parameters, kinematic decoupling, and Jacobians for nothing? What a fraud!
Grat Video!
You were so close to beating the average youtube "i'm going to make a robot arm" series, but no, if you stop here at, the "I got an IK library to work with a controller" you'll be stuck slightly behind the average High School robotics class. Don't give up, you can do it, get yolo based tracking or something to push your series into the "advanced High School robotics" level.
Heyy please next will how do you intergrate with hardware part ? Please make separate video on it moveit package also........
I'm planning a video on ROS and MoveIt, but I think that'll be a series in itself, as it's quite a big topic
I would put a lcd screen on joystick to show x y z current position
Awesome!
Easy to understand content!!!!!!!!!!!!!!!!!1
What is the Jupiter stuff you're doing I've never seen this before outside of ml stuff
great stuff! one question if you could guide me please...
how does controller know the current angles between joints? do you have some measuring tools plugged into joint or you just maintain those angles throughout the runtime of the controller script (after each move, as a "state")?
Thanks in advance!
in the previous video I show how I linked magnetic angle sensors to each joint
That's really impressive. Could I ask for the software you use to show and control the urdf file in simulation?
Thank you very much. Your videos inspire me so much.
it’s github.com/ihuicatl/jupyterlab-urdf
@@roTechnic thanks a lot. Pls keep your health and upload more video in the future.
Hi,
amazing video! I just cant get Ikpy inported in jupiterlab how would I do that ?
very helpful!
Incredible motions! I'm pretty new to this robot and ROS thing and I have a question. The python script you use in this video, is it the same as the comercially available software like coppelia sim (I think it was called V-Rep back then)? I find the steps very similar and I'm more experienced with coppelia
not really, it does only one thing, converting the position to joint angles, whereas the software you mention has a lot more functions. I’ll be diving into simulation software in a future video
@@roTechnic oh great! can't wait for that! Thanks for the reply!
Amazing.
how did you visualize urdf in jupiter?
Hello dude
Can you help me calculate the inverse kinematic equations of my 9dof robot?
I just wanna say your voice is fuckin majestic.
can we use Claude to write these?
Is it arduino atmega2560 + ramps baord based?
Thanks man! I had a problem had to add this
import sys
!{sys.executable} -m pip install ikpy
!{sys.executable} -m pip install numpy
!{sys.executable} -m pip install matplotlib
!{sys.executable} -m pip install ipywidgets
!{sys.executable} -m pip install ipympl
in order to get it to work.
Dude... What about the orientation of the end effector this is not finished yet
Dude, I've got to have something for the next video!
2:11 lies. in no way can you derive .072 from any combination or operations of the numbers on the screen.
how about saving points and moving in loop ? :)
That would be really easy to add :)
@@roTechnic is your ros on windows or ubuntu ?
@@povilasvaiciulis7931 not running ros for any of this yet, but I'm working on it for future videos - on windows
Subbed ✅
Muito bom !
This is going to sound weird as hell...but I've watched several of your videos now, and every time I do...there's this little voice in the back of my head going "HE'S NOT REALLY BRITISH!!!"
Now, naturally, I don't actually believe this little voice. "Why would anybody create a UA-cam channel where they release tons of content, all where they do an impeccable but fake british accent?", I ask myself.
And that's about as far as I get. I then watch some awesome robotics or robotics-adjacent content...occasionally having to tell the little voice to shut up, and that you're not actually an American doing the most perfect British accent ever.
You're not, are you? :P
love how he talks
bro send me the program cause I need to a school project, Please(; v ;)
Can't you just link it to an AI and let it figure it out?
that’s a great idea for a video!
The way you take your time to explain the details is what I love the most about your videos 😍😍❤️ . Do not waste another day > Promo-SM !