Project Denji

How to build a 17DOF biped robot controlled by the raspberry pi. PARTS: RPI Zero W (Barebones Kit) – https://goo.gl/fSioxP 4 Amp Power Adapter – https://goo.gl/js4Uc7 16GB Micro SD – https://goo.gl/FDqZal 120 pcs jumper cable – https://goo.gl/spWoaC Biped Kit (If link broken check aliexpress.com) – https://goo.gl/He5XPp Maestro Servo Controller – https://www.pololu.com/product/1354 Linear Bench Power Supply … Read moreProject Denji

Maestro Servo Controller

Basic tutorial of how to setup a Maestro Servo Controller with the Raspberry Pi. PARTS: RPI Zero W (Barebones Kit) – https://goo.gl/fSioxP 4 Amp Power Adapter – https://goo.gl/js4Uc7 16GB Micro SD – https://goo.gl/FDqZal 120 pcs jumper cable: https://goo.gl/spWoaC 5.5×2.1mm Male+Female DC Power Socket: https://goo.gl/NJ9r3P Micro USB to DC barrel converter: https://goo.gl/H5gdC2 Mini USB to USB … Read moreMaestro Servo Controller

AIY – Vision Kit

A comprehensive look at Google’s AIY Vision Kit. 0:00 – 5:55 Parts/Overview 5:56 – 8:00 Unboxing 8:01 – 46:00 Setup/Assembly 46:01 – 1:00:31 Testing/Examle Demos   Note: Component prices may vary GOOGLE’S REQUIRED PARTS LIST: AIY Vision Kit – https://amzn.to/2W2bYv5 RPI Zero W – https://amzn.to/2T0gZmd 16GB micro SD – https://amzn.to/2SFMwd3 Pi Camera V2 – https://amzn.to/2VZKfvm ADDITIONAL PARTS … Read moreAIY – Vision Kit

Tilt Sensor

Basic tutorial of how to setup a Tilt sensor with 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 Tilt Sensor: https://amzn.to/2FHIGw4 SCHEMATIC:   CODE: #!/usr/bin/env python import RPi.GPIO as GPIO channel = 21 GPIO.setmode(GPIO.BCM) GPIO.setup(channel, GPIO.IN, pull_up_down=GPIO.PUD_UP) def alert(ev=None): print("Tilt Detected") def … Read moreTilt Sensor

Accelerometer (ADXL345)

Basic tutorial of how to setup a ADXL345 Accelerometer with 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 ADXL345 Accelerometer: https://amzn.to/2TUEHjO SCHEMATIC: CODE: GITHUB LINK: https://github.com/adafruit/Adafruit_Python_ADXL345 Slightly Modified Script: # Simple demo of of the ADXL345 accelerometer library. Will print the X, … Read moreAccelerometer (ADXL345)