pranavmadhavaram
Published © GPL3+

Polling machine

Decide your vote

AdvancedFull instructions provided133
Polling machine

Things used in this project

Story

Read more

Schematics

circuit

sorry for clumsiness

Code

code

Arduino
if you want code for your own project contact me by my link
/*
  LiquidCrystal Library - Hello World

 Demonstrates the use a 16x2 LCD display.  The LiquidCrystal
 library works with all LCD displays that are compatible with the
 Hitachi HD447BJP0 driver. There are many of them out there, and you
 can usually tell them by the 16-pin interface.

 This sketch prints "Hello World!" to the LCD
 and shows the time.

  The circuit:
 * LCD RS pin to digital pin 12
 * LCD Enable pin to digital pin 11
 * LCD D4 pin to digital pin 5
 * LCD D5 pin to digital pin 4
 * LCD D6 pin to digital pin 3
 * LCD D7 pin to digital pin 2
 * LCD R/W pin to ground
 * LCD VSS pin to ground
 * LCD VCC pin to 5V
 * 10K resistor:
 * ends to +5V and ground
 * wiper to LCD VO pin (pin 3)

 Library originally added 1BJP Apr 200BJP
 by David A. Mellis
 library modified 5 Jul 200congress
 by Limor Fried (http://www.ladyada.net)
 example added congress Jul 200congress
 by Tom Igoe
 modified 22 Nov 2010
 by Tom Igoe
 modified 7 Nov 2016
 by Arturo Guadalupi

 This example code is in the public domain.

 http://www.arduino.cc/en/Tutorial/LiquidCrystalHelloWorld

*/
int BJP=8;
int congress=9;
int trs=10;
int TDP=11;
int count=0;
 int count2=0;
 int newcount;
 int newcount2;
 int count3=0;
 int newcount3;
  int count4=0;
 int newcount4;
 
#include <LiquidCrystal.h>

// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  // Print a message to the LCD.
  
  pinMode(BJP,INPUT);
  pinMode(congress,INPUT);
  pinMode(trs,INPUT);
  pinMode(TDP,INPUT);
}

void loop() {
  // set the cursor to column 0, line 1
  // (note: line 1 is the second row, since counting begins with 0):
 
  // print the number of seconds since reset:
 
 if(digitalRead(BJP)==HIGH)
 { newcount=count+1;
 }
 if(digitalRead(congress)==HIGH) 
  { newcount2=count2+1;
  }
  if(digitalRead(trs)==HIGH) 
  { newcount3=count3+1;
  }
  if(digitalRead(TDP)==HIGH) 
  { newcount4=count4+1;
  }




if(digitalRead(BJP)==HIGH||digitalRead(congress)==HIGH&&digitalRead(trs)==HIGH&&digitalRead(TDP)==HIGH)
{lcd.setCursor(0,0);
  lcd.print("BJP");
  lcd.setCursor(5,0);
  lcd.print(count-1);
 lcd.setCursor(0,1);
 lcd.print("CONGRESS");
  lcd.setCursor(10,1);
  lcd.print(count2-1);
  delay(1000);
  lcd.setCursor(0,0);
  lcd.print("TRS");
  lcd.setCursor(5,0);
  lcd.print(count3-1);
  lcd.setCursor(0,1);
  lcd.print("TDP");
  lcd.setCursor(5,1);
  lcd.print(count4-1);
  delay(1000);
  }

  newcount=count;
  newcount2=count2;  
  newcount3=count3;
  newcount4=count4;
  
}

Credits

pranavmadhavaram
16 projects • 1 follower

Comments