Skip to main content

Arduino Voting machine

Picture of Arduino Voting machine
This instructable will teach you to build a simple Arduino based Voting machine using simple components such as push buttons and LCD. The highlighting feature of this system is that Serial Monitor in Arduino IDE is used to perform the polling operation no other external applications needed.
Key Features:
  • Every step of polling operation will be under control of the supervisor.
  • Password enabled security system.
  • Poll results can be obtained instantly.
  • Voter will be aware of the candidate he is voting for.

Step 1: PARTS REQUIRED

Picture of PARTS REQUIRED
bread-board-wires.jpg
This simple project can be done with minimal components. The parts list are given below
  1. Arduino Uno - 1
  2. 16x2 LCD -1
  3. Push Buttons - As required
  4. Potentiometer 100k - 1
  5. Breadboard - 1
  6. Connecting Wires - As required.

Step 2: DESIGN

Picture of DESIGN
The design of the voting machine was given here. The Arduino reads the keypad input by the process of Polling. A 16x2 LCD was connected to the PORTD in 4 bit mode. This system will be operated by plugging the Arduino to the your PC and controlling using Serial monitor of Arduino IDE.

Step 3: PUT IT TOGETHER

Now connect the buttons to a breadboard as shown in the diagram. You can increase the number of buttons you use based on the number of candidates for the poll. Afix the LCD along with the potentiometer to the board and finish up all the connections as shown in the schematic design.

Step 4: ADD YOUR ARDUINO

Picture of ADD YOUR ARDUINO
Now connect your Arduino to buttons and LCD in the breadboard. You are now all set with the hardware.

Step 5: CODE AND WORKING OPERATION

You can read the detailed working operation and code in this websitehttp://www.gadgetronicx.com/arduino-based-voting-system/ . Upload the code to your arduino after obtaining it from that site.

Step 6: OPERATING WITH SERIAL MONITOR

Picture of OPERATING WITH SERIAL MONITOR
Now you are ready to go and operate your voting machine. Connect your Arduino to the PC using the USB. Now open the Serial monitor to conduct the poll. Enter the password to get access to the system.
V - Allow Voter to caste their vote
D - Display the Vote tally.
Take a look at the snap shot of serial monitor to get understanding of its working.

Step 7: WORKING VIDEO

See the outcome of this system in this video which is uploaded to official channel ofGadgetronicx .

Comments

Popular posts from this blog

Inverted Linear Quadtree: Efficient Top K Spatial Keyword Search

Inverted Linear Quadtree: Efficient Top K Spatial Keyword Search ABSTRACT: In this paper, With advances in geo-positioning technologies and geo-location services, there are a rapidly growing amount of spatiotextual objects collected in many applications such as location based services and social networks, in which an object is described by its spatial location and a set of keywords (terms). Consequently, the study of spatial keyword search which explores both location and textual description of the objects has attracted great attention from the commercial organizations and research communities. In the paper, we study two fundamental problems in the spatial keyword queries: top k spatial keyword search (TOPK-SK), and batch top k spatial keyword search (BTOPK-SK). Given a set of spatio-textual objects, a query location and a set of query keywords, the TOPK-SK retrieves the closest k objects each of which contains all keywords in the query. BTOPK-SK is the batch processing of sets...

A simple and reliable touch sensitive security system CODING

#include <REGX51.H> #include "lcd.c" #define MAX_DELAY() delay(65000) sbit Vibra_Sense=P3^1; sbit Buz=P1^0; void intro() {  lcd_init();  lcd_str("Touch Sensitive ",0x80);  lcd_str("Security System ",0xc0);  MAX_DELAY();MAX_DELAY();  lcd_clr();  }  void main()  { unsigned int i = 0, j= 0; intro();    while(1)    { lcd_str("Security Syst On",0x80); lcd_str("No Vibra Detectd",0xc0); Buz = 1; if(Vibra_Sense == 1) { while(Vibra_Sense == 1) delay(1000); } else { while(Vibra_Sense == 0) delay(1000); } Buz = 0; lcd_str("Vibraton Detectd",0xc0);delay(65000); while(1);    }  }

A Time Efficient Approach for Detecting Errors in Big Sensor Data on Cloud

A Time Efficient Approach for Detecting Errors in Big Sensor Data on Cloud Abstract                                                                                                                                                      ...