Skip to main content

Posts

Showing posts with the label Raspberry Pi

DIY Raspberry pi security system

 Hey,  In today's blog we are going to make a security system using Raspberry pi. REQUIRED COMPONENT: Raspberry pi Raspberry pi camera Power supply unit Micro SD card Wifi dongle  Installing the Raspberry Pi Camera Firstly before we do anything, we need to have a Raspberry Pi camera. In this tutorial, I use the regular IR camera, and it works fine however if it gets dark it can’t see at all. (Which is probably not much good for a security camera). If you’re after for more information check out my  Raspberry Pi camera  guide for everything you need to know. Secondly, we will need to install the camera (If you haven’t got one you can get one here), to do this go to the ribbon slot (the one directly behind the Ethernet port) using two fingers gently pull up on both sides of the connector. Now the connector is open insert the ribbon cable with the metal leads facing away from the Ethernet port. Make sure it is nicely lined up and then gently press back down on the c...

What is Kali Linux ?

  Kali Linux is a debian-based Linux distribution aimed at advance penetration testing and security auditing.Kali Linux contain several hundreds of tool which are geared towards various information security tasks, Such as Penetrations testing, Security research, Computer Forensics and Reverse engineering.

DIY Raspberry pi drone

  Hey, In today's blog we are going to make a drone using raspberry pi. STUFF YOU NEED : Drone frame Brushless motor×4 ESC × 4 Propeller × 4  Battery Raspberry pi 2 Battery monitor Multiwii Pi camera Wi fi key USB key SCHEMATIC: Raspberry pi with flight controller For install the two component at the same place we build a support who came on the top of the raspberry to place the multiwii (see picture). Install the raspberry with his support Put the multwii on the support with anti-vibration pad Conect the ESCs to the multiwii with the dedicated pins Next we will compile multiwii firmware into the board. To begin connect the multiwii board to your computer via USB To configure the multiwii: Download multiwii firmware from  https://code.google.com/p/multiwii/ Download arduino software from  https://www.arduino.cc/en/Main/Software Open arduino project "Multiwii.ino" Change arduino board in "Tools">"Board">"Arduino Mega 2560 or Mega ADK" Se...

Making a Voice control Bulb using Evive

  Hey, In today's blog we are going to make a voice control Bulb using Evive. STUFF YOU NEED: Stempedia Evive development board Relay board (generic) LED bulb Bulb holder HC-O5 or HM-10 Bluetooth module Connecting wires CIRCUIT DIAGRAM: REQUIRED CODE: Making electronics project is too pretty simple with Us. Join and make with Us.

DIY fingerprint based car ignition system

  Hey, In today's blog we are going to make a fingerprint based car ignition system. WHAT YOU NEED : Arduino nano R305 fingerprint sensor EM18 RFID reader 16×2 LCD display DC motor L293D motor driver Breadboard Connecting wire 12v battery CODE : #include <Adafruit_Fingerprint.h> #include <LiquidCrystal.h> char input[12]; int count = 0; int a = 0; const int rs = 6, en = 7, d4 = 2, d5 = 3, d6 = 4, d7 = 5; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); SoftwareSerial mySerial(12,11); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); void setup() {    pinMode(9,OUTPUT);    pinMode(10,OUTPUT);    digitalWrite(9,LOW);    digitalWrite(10,LOW);    Serial.begin(9600);    lcd.begin(16, 2);    lcd.setCursor(0, 0);    lcd.print( "   WELCOME TO       " );    lcd.setCursor(0, 1);    lcd.print( "  CIRCUIT DIGEST  ...