We've all got to start somewhere, and this quick guide will show you the basics of using a breadboard, a couple must-have tools for beginners, and we'll learn to turn a LED on and off using Python code on the Raspberry Pi.
This video is provided free of charge. If you enjoy what we do, please consider becoming a Patron so we can continue offering more great content. Support This Free Content
Get a Raspberry Pi: https://cat5.tv/pi
Get Your Maker Kit: https://cat5.tv/maker
The Code:
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.OUT)
GPIO.output(18, True)