Temp Sensor (ds18b20)

Basic tutorial of how to setup a DS18b20 temp 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 ds18b20 sensor – https://amzn.to/2M5yHSN SCHEMATIC: CODE: #!/usr/bin/env python import os def sensor(): for i in os.listdir('/sys/bus/w1/devices'): if i != 'w1_bus_master1': ds18b20 = i … Read moreTemp Sensor (ds18b20)

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