How to create real-life robots?

Posted by Click Upvote on Stack Overflow See other posts from Stack Overflow or by Click Upvote
Published on 2009-02-12T03:16:32Z Indexed on 2010/04/07 9:13 UTC
Read the original article Hit count: 231

Filed under:
|
|
|
|

Even before I learnt programming I've been fascinated with how robots could work. Now I know how the underlying programming instructions would be written, but what I don't understand is how those intructions are followed by the robot.

For example, if I wrote this code:

object=Robot.ScanSurroundings(300,400);
if (Objects.isEatable(object))
{
   Robot.moveLeftArm(300,400);
   Robot.pickObject(object);
}

How would this program be followed by the CPU in a way that would make the robot do the physical action of looking to the left, moving his arm, and such? Is it done primarily in binary language/ASM?

Lastly, where would i go if I wanted to learn how to create a robot?

© Stack Overflow or respective owner

Related posts about robotics

Related posts about binary