Posts

Showing posts from May, 2018

How make a Voting Machine || Made with Arduino || Hindi

Image
How make a Voting Machine || Made with Arduino || Hindi Learn how you can make your own voting machine within few minutes Material Needed:- Arduino Board 4 x Push Button 4 x 10k Resistor LCD with i2c Interference  Wires Breadboard/ Veroboard CODES Copy the Codes or Download it from Drive Click here to download the codes from drive #include < Wire . h > #include < LiquidCrystal_I2C . h > LiquidCrystal_I2C lcd ( 0x3F , 20 , 4 ) ;   // set the LCD address int votes [ 4 ] = { 0 , 0 , 0 , 0 } ; char inbyte ; String pwd = "PASSWORD" ;                          //Default Password String inpt = "" ; boolean flag = false ; boolean securitygranted = false ;            int i ; void setup ( ) {   Serial . begin ( 9600 ) ;                     //Begin serial communication   lcd . init ( ) ; // Initializes the interface to the LCD screen   lcd . backlight ( ) ;     pinMode ( 2 , INPUT

How to make Distance Meter using Ultrasonic Sensor || Made with Arduino || Ultrasonic Sensor || Hindi

Image
How to make Distance Meter using Ultrasonic Sensor || Made with Arduino || Ultrasonic Sensor Learn how you can make your own Distance meter using Arduino and Ultrasonic sensor Material Needed:- Arduino UNO Ultrasonic Sensor LCD with i2c interfearnce Jumper Wire Wiring:- Wiring of Ultrasonic Sensor -----> Arduino Vcc      ----------->   5v GND    -----------> GND TRIG   ----------->   D7 ECHO ----------->   D8 Wiring of LCD with i2c -----> Arduino Vcc      ----------->   5v GND    -----------> GND SDA     ----------->   A4 SCL     ----------->   A5 Coding:- /* * Distance Meter Using Ultrasonic Sensor * for more visit * http://bit.ly/diyareebyoutube */ //libraries for LCD #include < Wire . h > #include < LiquidCrystal_I2C . h > LiquidCrystal_I2C lcd ( 0x3F , 16 , 2 ) ;   // set the LCD address to 0x27 for a 16 chars and 2 line display int pingPin = 7 ; //Pin diclaration
Image
How to make Remote Light || How to Build Your Own PCB at a very low cost In my previous video i have shown you how to make remote light using Arduino so today i will tell you how you can make a remote light without using arduino   Materials Needed:- CD4017 ic transistor BC547 transistor BC557 Resistor 4.7k ohm (2pcs) Resistor 1k ohm Resistor 100ohm Resistor 100k ohm Capacitor 1uf Relay 6volt diode 40007 TSOP 1738 (ir sensor) PCB (from jlcpcb.com ) Schematic:- Watch the Video:-