How make a Voting Machine || Made with Arduino || Hindi
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