Introduction
Robots are all around us. They can be found building the products we use everyday, saving lives in surgical operations, exploring Mars, mowing our lawns or vacuuming our floors and in many more applications. While robotics is a broad field, it's easy to get started with the Raspberry Pi.
In this first of three guides, learn how to put together a super simple Raspberry Pi robot kit and start programming with Python.
Complete this guide to build your own two-wheeled robotic car that can move forwards, backwards, turn right and left!
In this first of three guides, learn how to put together a super simple Raspberry Pi robot kit and start programming with Python.
Complete this guide to build your own two-wheeled robotic car that can move forwards, backwards, turn right and left!
Tools
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
from gpiozero import Robot from time import sleep robot = Robot(left = (27, 17), right = (22, 23)) while True: robot.forward() sleep(1) robot.stop()
-
from gpiozero import Robot from time import sleep robot = Robot(left = (27, 17), right = (22, 23)) while True: robot.forward() sleep(1) robot.backward() sleep(1) robot.right() sleep(1) robot.left() sleep(1)
-