Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Toll Tax system Using Arduino Project

Tags:

Toll Tax system Using Arduino circuit diagram

Toll Tax system Using Arduino and Ultrasonic sensor and Servo motor


In this article we will learn how to Toll tax system project using Arduino.
In the last post we will learn how to Interface Arduino with TCS3200 color sensor and LCD display. You can visit our website,
I hope you appreciate my work, let’s discuss about today’s project.

Components:

  1. Arduino Uno
  2. Ultra sonic sensor (HC-SR04)
  3. Servo motor
  4. Jumper wires

Construction…

  • Connect 5V pin and Reset pin of Arduino UNO with +ve
  • Connect GND pin of Arduino Uno with GND
  • Connect one terminal of servo motor with +ve
  • Connect 2nd terminal of Servo motor with GND
  • Connect Signal terminal of Servo motor with pin 9 of Arduino
  • Connect GND pin of Ultra sonic sensor with GND
  • Connect VCC pin of Ultra sonic sensor with +ve
  • Connect TR pin of Ultra sonic sensor with pin 3 of Arduino Uno
  • Connect pin 5 of Arduino Uno with the Echo pin of Ultra sonic sensor

Hardware Image…

Toll Tax system Using Arduino circuit diagram

Working…





We use Arduino Microcontroller for Toll tax system. In this system when some object like Car is near to briar Arduino program and Ultra sonic sensor sense this object and Up the briar.

Applications…

  1. Automated Toll Collection
  2. Traffic Management
  3. Toll Booth Automation
  4. RFID-Based Toll Collection
  5. Vehicle Classification

Advantages…

  1. Cost-Effective Solution
  2. Customization
  3. Low Power Consumption
  4. Real-Time Data Processing
  5. RFID Integration

Program code Images…

Toll Tax system Using Arduino program code

Toll Tax system Using Arduino program code




Toll Tax system Using Arduino program code

Program code…

#include

Servo myservo;

const int trigPin=3;

const int echoPin=5;

long tmeduration;

int distance;

void setup() {

myservo.attach(9);

pinMode(trigPin,OUTPUT);

pinMode(echoPin,INPUT);

Serial.begin(9600);

}

void loop() {

digitalWrite(trigPin,LOW);

delayMicroseconds(500);

digitalWrite(trigPin,HIGH);

delayMicroseconds(500);

digitalWrite(trigPin,LOW);

tmeduration=pulseIn(echoPin,HIGH);

distance=(0.034*tmeduration)/2;

if(distance

myservo.write(90);

}

else{

myservo.write(0);}

Serial.print("distance:");

Serial.println(distance);

delay(100);

}

The post Toll Tax system Using Arduino Project appeared first on projectiot123 is making esp32,raspberry pi,iot projects.

Share the post

Toll Tax system Using Arduino Project

×