Live data from Hacker News

Ask HN: How do I get into robotics?

news.ycombinator.com

1–10 of 15 posts

Ask HN: How do I get into robotics?

#1
Hi,

FYI: Second year maths degree, work in Python and SQL, entry level knowledge of C and CPP.

I was inspired by the fluid movement displayed in the litter picker sort of arm one of the Boston Dynamic robots has and I would like to learn how to go about creating such a robot as a side project (just the arm). I want to know what resources I should look at to get started? I have no real experience soldering, EE or working with sensors. So some entry level projects recommendations may be best?

Thank you.

Re: Ask HN: How do I get into robotics?

#2
If you truly want to learn, I suggest joining a local FRC Robotics team as a new/junior mentor. If you simply ask the students to show you what they have been working on, you may be inspired to join in and help. You'll learn together... mechanical, electrical, programming, etc.

A short overview of what FIRST robotics is: https://www.youtube.com/watch?v=Jd29kzjclV0

A web based tool to search for local teams: https://www.firstinspires.org/team-event-search#type=teams&s...

I've been volunteering as a FIRST mentor for the last nine years and have learned more about robotics from the students than I did in my master's program or on my own.

Re: Ask HN: How do I get into robotics?

#3
post #2

If you truly want to learn, I suggest joining a local FRC Robotics team as a new/junior mentor. If you simply ask the students to show you what they have been working on, you may be inspired to join in and help. You'll learn together... mechanical, electrical, programming, etc. A short overview of what FIRST robotics is: https://www.youtube.com/watch?v=Jd29kzjclV0 A web based tool to search for local teams: https://w…

Thanks for the resources Jon, although unfortunately I am in the UK. I will however investigate if there is something similar over here.

If anyone else has information pertaining to how to begin working on small projects that would be great. Even just a list from the top of your head of things to learn in some chronological order.

Re: Ask HN: How do I get into robotics?

#5

The area of study you're looking for is called Kinematics and if you do want to go down the building an arm route, you'll need a more than passing familiarity with Electronics and microcontrollers, since you like python, a Raspberry Pi is probably the best choice.

Perfect, thanks!

Re: Ask HN: How do I get into robotics?

#6
One of the first projects I would start is look for Arduino related projects and other small hardware projects. Its best for cheap and simple electronics understanding. Learn how to use different sensors, modules or controllers.

After some time, you can take a look at more serious projects, such as robot-spiders, or robots manipulators.

Might you also be interested in buying cheap 3D printer, to make the parts such as gears or cases for your hardware projects.

After you are quite comfortable with electronics and hardware, you can make your own 3D printed robot, such as CM6 - Compliant 3D printed robotic arm [1] or WE-R2.4 Six-Axis Robot Arm [2].

Happy building!

[1] https://hackaday.io/project/180588-cm6-compliant-3d-printed-... [2] https://www.thingiverse.com/thing:3327968

Re: Ask HN: How do I get into robotics?

#7
Look into ROS and it's associated projects.

There are several different "compatible" arms which are good for learning.

https://www.ros.org/ https://github.com/ros

And as others have mentioned it wouldn't hurt to gain access to a 3d printer and possibly some other microcontroller kits.

Quite a few writeups out there if you do some searching around though.

Re: Ask HN: How do I get into robotics?

#8
Full disclosure: I'm just a hobbyist game dev with experience with arduino, and volunteering at my local robotics competition.

I would recommend getting into arduino. It's fun to buy little components, build little circuits, and see how your ability to program can have a physical manifestation.

As for programming concepts -- yes kinematics and inverse kinematics will allow you to move robotic limbs to certain points in real space.

And you'll find yourself wanting a larger conceptual framework to put those technical bits. That's where things like finite state machines, hierarchical finite state machines, behavior trees, and/or goal oriented action planners may come in handy. This grouping of concepts is often called "ai programming" but whatever you decide to call it, they're algorithms to decide what to do at any given slice of time.

Obviously follow your own path in this subject; follow the bits that resonate with you.

Re: Ask HN: How do I get into robotics?

#9
Awesome! There are a few different paths you can take, depending on what type of robotics you are interested in.

Consumer/Commercial robotics. These are things like Roombas and Robomows. The dominate type of engineer in these companies is embedded systems and firmware engineer. You should probably switch to an electrical or computer engineering and get experience with some robotics program at your school which is smaller scale and works with microcontrollers and C/C++.

Advanced robotics. Things like Boston Dynamics. These companies also have embedded system engineers, but it is more important to have high-level controls experience. You should look for a CS or other degree which includes control theory, Digital Signal Processing, and so on. A lot of universities have robotics programs (think DARPA challenge) and teams, definitely join one of those.

Good luck!

Re: Ask HN: How do I get into robotics?

#10
There is a field of study called Mechatronics that combined Mechanics and Electronics though that is not the only path

For more hobbyist stuff, join the Lego FIRST competitions though note that the Mindstorms product line has been recently discontinued though Educators may still be able to obtain the Spike set. Look into open source ROS operating system

E.g. control engineers can also get into robotics and it's better not to havea more broad degree in my humble opinion

Post reply on HN