16 Channel Servo Controller

How to setup the Raspberry Pi to interface with multiple servos utilizing a 16 channel servo controller along with Adafruit’s Servo Driver Library. *Note – Servo Controller input voltage should be 5-6 volts instead of the suggested 9 volts PARTS: RPI 3 – https://amzn.to/2VA9pQY 4 Amp Power Adapter – https://amzn.to/2CTptWu 16GB micro SD – https://amzn.to/2SFMwd3 16-Channel Servo … Read more16 Channel Servo Controller

Light Emitting Diodes

Basic tutorial of how to interact with multiple LEDs on the raspberry pi. PARTS: RPI 3 – https://amzn.to/2VA9pQY 4 Amp Power Adapter – https://amzn.to/2CTptWu 16GB micro SD – https://amzn.to/2SFMwd3 120 pcs jumper cable: https://ebay.to/2VAb9cY LEDs and resistors kit: https://amzn.to/2RcI9Jv Breadboards: https://ebay.to/2RaA6Nv SCHEMATIC: CODE: import time import time import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) led1 = 17 led2 = 27 … Read moreLight Emitting Diodes