Barcode Scanner

Basic tutorial of how to setup a USB barcode scanner 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 USB Barcode Scanner: https://amzn.to/2D8LvVu UPC Database: https://upcdatabase.org/ CODE: ***RUN SCRIPT IN SUDO*** #!/usr/bin/python import sys import requests import json api_key = "" #https://upcdatabase.org/ def barcode_reader(): """Barcode code obtained … Read moreBarcode Scanner

Thermal Camera (AMG8833)

Basic tutorial of how to setup an IR camera (AMG833) 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 AMG8833 IR Sensor: https://www.adafruit.com/product/3538 SCHEMATIC: SETUP/CODE: https://learn.adafruit.com/adafruit-amg8833-8×8-thermal-camera-sensor/raspberry-pi-thermal-camera

Sound Sensor

Basic tutorial of how to setup a sound 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 Sound Sensors: https://amzn.to/2FoZg4I 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 moreSound Sensor

RFID (RC522)

Basic tutorial of how to setup a RFID reader/writer (RC522) 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 RFID Sensor – https://amzn.to/2spaDRt SCHEMATIC: SDA <–> 24 SCK <–> 23 MOSI <–> 19 MISO <–> 21 IRQ <–> UNUSED GND <–> 6 RST … Read moreRFID (RC522)

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)