• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Circuit Ideas for You

Get free circuit ideas online.

  • Home
  • Privacy Policy
  • About
Home » Arduino GPS Based Speedometer Circuit

Arduino GPS Based Speedometer Circuit

Last updated on 15 September 2025 by Admin-Lavi Leave a Comment

Anyone want to check speed of bike, car or any moving vehicle?

With Arduino and GPS module we can make small but cheap DIY speedometer.

This project for Arduino GPS Based Speedometer Circuit is easy and fun.

It shows real-time speed on LCD using GPS satellite data.

No need of big or complex sensors only Arduino, GPS and LCD are needed.

We can see speed anywhere and anytime if GPS gets clear signal from sky.

Circuit Coding:

#include <SoftwareSerial.h>
#include <TinyGPS++.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>

TinyGPSPlus gps;
SoftwareSerial gpsSerial(4, 3); // RX, TX
LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address 0x27, 16x2 LCD

void setup() {
  Serial.begin(9600);
  gpsSerial.begin(9600);
  lcd.init();
  lcd.backlight();
  lcd.print("Speedometer");
}

void loop() {
  while (gpsSerial.available() > 0) {
    gps.encode(gpsSerial.read());
    if (gps.speed.isUpdated()) {
      float speed = gps.speed.kmph();
      lcd.setCursor(0,1);
      lcd.print("Speed: ");
      lcd.print(speed);
      lcd.print(" km/h ");
    }
  }
}

Code Explanation:

  • The coding part is very simple.
  • We uses TinyGPS++ library to read GPS data and get speed.
  • SoftwareSerial helps Arduino talk to GPS on different pins.
  • LiquidCrystal library shows speed on 16×2 LCD.
  • Arduino first reads GPS data all the time.
  • If GPS gives new speed then Arduino change it to km/h and print on LCD.
  • Code runs in loop, so speed updates real-time.

Circuit Working:

Arduino GPS Based Speedometer Circuit Diagram

Parts List:

ComponentQuantity
Arduino Nano1
NEO6M GPS Module1
1.3 inch I2C OLED display1
Adapter power supply1

The circuit is very simple.

Arduino is the main brain in this circuit.

GPS module gets satellite signals and sends location data to Arduino.

Arduino calculates speed from the change in GPS coordinates using TinyGPS++ library.

The I2C LCD shows speed in km/h.

No extra sensors needed because GPS gives both location and speed.

Arduino reads GPS data and calculates speed and then sends speed to LCD to display.

GPS module receives latitude and longitude from satellites.

Arduino reads this data continuously.

Arduino calculates speed in km/h using TinyGPS++.

I2C LCD shows real-time speed updating every second or faster depending on GPS signal.

Project works anywhere outside with clear sky, because GPS needs direct satellite signals.

We can also add LED or buzzer to alert if speed is high.

How to Build:

To build a Arduino GPS Based Speedometer Circuit follow the below steps for connections:

  • Take all parts as from circuit diagram.
  • Connect GPS module pin VCC to Arduino 5V.
  • Connect GPS module pin GND to Arduino GND.
  • Connect GPS module pin TX to Arduino RX or RX0.
  • Connect GPS module pin RX to Arduino TX or TX1.
  • Connect OLED display pin VCC to Arduino 5V.
  • Connect OLED display pin GND to Arduino GND.
  • Connect OLED display pin SCL to Arduino A5.
  • Connect OLED display pin SDA to Arduino A4.
  • Connect power – to Arduino GND.
  • Connect power + to Arduino VIN.

Conclusion:

This is a simple Arduino GPS Based Speedometer Circuit

It shows real-time speed on LCD using GPS satellite data.

Circuit is small, cheap and easy to build.

Perfect project for learning electronics and Arduino.

Ride safe and check your speed anytime!

References:

Using Arduino and GPS module to show speed

Filed Under: Arduino Projects, Sensors and Detectors

About Admin-Lavi

Lavi is a B.Tech electronics engineer with a passion for designing new electronic circuits. Do you have questions regarding the circuit diagrams presented on this blog? Feel free to comment and solve your queries with quick replies

Previous Post: « Arduino Based Motion Dog Barking Alarm Circuit

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar




Categories

  • Alarm Circuits (34)
  • Amplifier Circuits (67)
  • Arduino Projects (42)
  • Audio Circuits (95)
  • Automobile Circuits (19)
  • Battery Charger Circuits (48)
  • Free Energy (13)
  • Heater and Temperature Controllers (10)
  • High Voltage (1)
  • Indicator Circuits (39)
  • Inverter Circuits (13)
  • LDR Circuits (15)
  • LED and Lamps (116)
  • Meters and Testers (28)
  • Motor Controllers (18)
  • Oscillator Circuits (34)
  • Power Supply Circuits (92)
  • Remote Control Circuits (6)
  • Security and Protection (25)
  • Sensors and Detectors (89)
  • Solar Circuits (17)
  • Timer Circuits (30)
  • Transistor Circuits (57)
  • Transmitter Circuit (12)
  • Tutorials (5)
  • Water Level Controller (4)

Recent Posts

  • Arduino GPS Based Speedometer Circuit
  • Arduino Based Motion Dog Barking Alarm Circuit
  • Arduino Based Entry Exit Monitoring Circuit
  • Water Quality Test Circuit using Arduino and Turbidity Sensor
  • Arduino with Non Contact Liquid Sensor Circuit

Recent Comments

  1. Admin-Lavi on Constant Voltage, Constant Current Battery Charger Circuit
  2. Bill on Constant Voltage, Constant Current Battery Charger Circuit
  3. Admin-Lavi on Long Range FM Transmitter Circuit (2km)
  4. Sina on Long Range FM Transmitter Circuit (2km)
  5. Admin-Lavi on Long Range FM Transmitter Circuit (2km)

Copyright © 2025 | New Circuit Ideas