Lux Sensor (TSL2561)

How to setup an Adafruit TSL2561 Lux 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 TSL2561 Lux Sensor: https://amzn.to/2SGwteQ SCHEMATIC: MODIFIED CODE: Original Git Project: https://github.com/ControlEverythingCommunity/TSL2561 # Distributed with a free-will license. # Use it any way you want, profit or … Read moreLux Sensor (TSL2561)

Vibration Sensor

Basic tutorial of how to setup a SW-420 Vibration 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 Vibration Sensors: https://amzn.to/2AzL0lC SCHEMATIC: CODE: #!/usr/bin/python import RPi.GPIO as GPIO import time #GPIO SETUP channel = 17 GPIO.setmode(GPIO.BCM) GPIO.setup(channel, GPIO.IN) def callback(channel): if GPIO.input(channel): … Read moreVibration Sensor

DHT11

Basic tutorial of how to setup a DHT11 temp/humidity 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 DHT11 Sensors- https://amzn.to/2RzojYB SCHEMATIC: CODE: Github: https://github.com/szazo/DHT11_Python

Lidar

How to setup a XV-11 Lidar with the raspberry pi. PARTS: RPI 3 – https://amzn.to/2VA9pQY 4 Amp Power Adapter – https://amzn.to/2CTptWu Breadboard – https://amzn.to/2H1ekHs Breadboard Power Supply – https://amzn.to/2AvjKon 120 pcs jumper cable: https://ebay.to/2VAb9cY Lidar mount – http://www.thingiverse.com/thing:1707495 Lidar Controller – https://www.getsurreal.com/shop?v=47e5dceea252 XV-11 Lidar – https://ebay.to/2yCIF8G CODE: Arduino IDE: https://www.arduino.cc/en/Main/OldSoftwareReleases#previous Get Surreal Tests/Scripts: https://www.getsurreal.com/product/xv-lidar-controller-v1-2?v=47e5dceea252

PIR Sensor

How to setup a PIR 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 PIR Sensor: https://amzn.to/2RFogdC LED Assortment – https://amzn.to/2RbLOYa Miny Breadboard – https://amzn.to/2Ffviz5 SCHEMATIC: CODE: import time import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) #GPIO.setwarnings(False) led1 = 17 led2 = 27 pirPin = … Read morePIR Sensor