• Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Need circuit help? Post them in the comments! I've answered over 50,000!

Blog | Categories | About | Contact | Calculators-online
You are here: Home / Arduino Projects / Arduino Tachometer Circuit for Precise Readings

Arduino Tachometer Circuit for Precise Readings

Last Updated on December 5, 2024 by Swagatam 4 Comments

A tachometer is a device that measures the RPM or angular velocity of a rotating body. It differs from speedometer and odometer as these devices deal with linear or tangential velocity of the body while tachometer a.k.a. “tach” deals with more fundamental the RPM.

By Ankit Negi

Tachometer is composed of a counter and a timer both of these working together provides the RPM.In our project we are going to do same, using our Arduino and some sensors we will setup both a counter and a timer and develop our handy and easy tach.

Prerequisites

Counter is nothing but a device or setup that can count any certain regular occurring event like passing of a dot in disc while in rotation. Initially the counters were built using the mechanical arrangement and linkages like gears, ratchets, springs etc.

But now we are using counter having more sophisticated and highly precise sensors and electronics.Timer is an electronic element that is able to measure the time interval between events or measure time.

In our Arduino Uno there are timers that not only keep track of time but also maintain some of the important functions of Arduino. In Uno we have 3 timers named Timer0, Timer1 and Timer2. These timers have following functions-• Timer0- For Uno functions like delay(), millis(), micros() or delaymicros().

• Timer1- For the working of servo library.

• Timer2- For functions like tone(), notone().

Along with these functions these 3 timers are also responsible for generating the PWM Output when analogWrite() command is used in the PMW designated pin.

Concept of Interrupts

In Arduino Uno a hidden tool is present which can give access to a whole lot of functioning to us known as Timer Interrupts.Interrupt is a set of events or instructions that are executed when called interrupting the current functioning of the device, i.e. no matter what codes your Uno was executing before but once an Interrupt is called Arduino execute the instruction mentioned in the Interrupt.

magnet on motor shaft
CIRCUIT2BDIAGRAM 1

Now Interrupt can be called at certain condition defined by the user using an inbuilt Arduino Syntax.We will be using this Interrupt in our project that makes our tachometer more resolute as well as more precise than the other Tachometer project present around the web.

Components required for this Tachometer project using Arduino

• Hall Effect Sensor (Fig.1)

hall effect sensor module

• Arduino Uno

Arduino UNO board

• Small magnet

small magnet

• Jumper wires

• Rotating Object (Motor shaft)

DC motor
MAGNET2BON2BSHAFT

Circuit Setup

• The setup for creating is as follows-

• In the shaft whose rotation speed is to be measured is fitted with a small magnet using glue gun or electrical tape.

• Hall Effect sensor has a detector in front and 3 pins for connections.

• The Vcc and Gnd pins are connected to 5V and Gnd pin of Arduino respectively. The Output pin of the sensor is connected to the digital pin 2 of the Uno to provide the input signal.

• All components are fixed in a mount board and Hall detector is pointed out from the board.

Programming

int sensor = 2; // Hall sensor at pin 2
volatile byte counts;
unsigned int rpm; //unsigned gives only positive values
unsigned long previoustime;
void count_function()
{ /*The ISR function
Called on Interrupt
Update counts*/
counts++;
}
void setup() {
Serial.begin(9600);
//Intiates Serial communications
attachInterrupt(0, count_function, RISING); //Interrupts are called on Rise of Input
pinMode(sensor, INPUT); //Sets sensor as input
counts= 0;
rpm = 0;
previoustime = 0; //Initialise the values
}
void loop()
{
delay(1000);//Update RPM every second
detachInterrupt(0); //Interrupts are disabled
rpm = 60*1000/(millis() - previoustime)*counts;
previoustime = millis(); //Resets the clock
counts= 0; //Resets the counter
Serial.print("RPM=");
Serial.println(rpm); //Calculated values are displayed
attachInterrupt(0, count_function, RISING); //Counter restarted
}

Upload the code.

Know the code

Our tachometer uses Hall Effect Sensor; Hall Effect sensor is based on Hall effect named after its discoverer Edwin Hall.

Hall Effect is phenomenon of generation of voltage across a current carrying conductor when a magnetic field is introduced perpendicular to the flow of current. This voltage generated due this phenomenon help in Input signal generation.As mentioned Interrupt will be used in this project, to call Interrupt we have to setup some condition. Arduino Uno has 2 conditions for calling for Interrupts-

RISING- When used this, Interrupt are called every time when the Input signal goes from LOW to HIGH.

FALING-When used this, Interrupt are called when signal goes from HIGH to LOW.

We have used the RISING, what happens is that when the magnet placed in the shaft or rotating object come close to Hall detector Input signal is generated and Interrupt are called in, Interrupt initiates the Interrupt Service Routine(ISR) function, which include increment in the counts value and thus count takes place.

We have used the millis() function of Arduino and previoustime (variable) in correspondence to setup the timer.

The RPM thus is finally calculated using the mathematical relation-

RPM= Counts/Time taken Converting the milliseconds to minutes and rearrangement we gets to the formula= 60*1000/(millis() - previoustime)*counts.

The delay(1000) determines the time interval after which the value of RPM will be updated on the screen, you can adjust this delay according to your needs.

This value of RPM obtained can be further used to calculate the tangential velocity of the rotating object using the relation- v= (3.14*D*N)/60 m/s.

The value of RPM can also be used to calculate the distance travelled by a rotating wheel or disc.

Instead of printing values to Serial monitor this device can be made more useful by connecting a LCD display (16*2) and battery for better usage.

You'll also like:

  • 1.  PIC Tutorial- From Registers to Interrupts
  • 2.  Password Controlled AC Mains ON/OFF Switch
  • 3.  2.4 GHz 10 Channel Remote Control Switch Circuit
  • 4.  Simple Digital Water Flow Meter Circuit using Arduino
  • 5.  Cellphone Controlled Dog Feeder Circuit
  • 6.  GSM Fire SMS Alert Project

About Swagatam

I am an electronics engineer with over 15 years of hands-on experience. I am passionate about inventing, designing electronic circuits and PCBs, and helping hobbyists bring their projects to life. That is why I founded homemade-circuits.com, a website where I share innovative circuit ideas and tutorials. Have a circuit related question? Leave a comment.... I guarantee a reply!

Previous Post: « Stepper Motor Driver Circuit using IC 555
Next Post: Digital Capacitance Meter Circuit Using Arduino »

Reader Interactions

Comments

  1. Sharoj Al Hasan says

    August 14, 2017 at 6:01 am

    Sir
    Can u give me a circuit
    Which can auto cutt of When Volt below 4 v

    i need this circuit for 9v rechargeable battery

    Reply
    • Swagatam says

      August 14, 2017 at 1:49 pm

      Sharoj,

      4V cannot be the lower threshold for a 9V batt, it should be 8V,

      anyway you can try the second design from the following design:

      https://www.homemade-circuits.com/2012/07/make-6v-4ah-automatic-battery-charger.html

      Reply
  2. sharojalhasan says

    August 12, 2017 at 5:41 am

    Dear

    please give me a circuit diagram That uninterup Dc power supply 9v volt.
    battery 3.7 volt . Power supply 5v

    if power supply gone then Power supply will be continue to my 9v modem by battery …

    Reply
    • Swagatam says

      August 12, 2017 at 8:12 am

      you can refer to the following design

      https://www.homemade-circuits.com/2013/03/simple-dc-ups-circuit-for-modemrouter.html

      Reply

Need Help? Please Leave a Comment! We value your input—Kindly keep it relevant to the above topic! Cancel reply

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

Primary Sidebar

Subscribe to New Circuit Ideas

Categories

  • Arduino Projects (87)
  • Audio and Amplifier Projects (132)
  • Automation Projects (17)
  • Automobile Electronics (101)
  • Battery Charger Circuits (82)
  • Datasheets and Components (102)
  • Electronics Theory (143)
  • Free Energy (37)
  • Games and Sports Projects (11)
  • Grid and 3-Phase (19)
  • Health related Projects (25)
  • Home Electrical Circuits (12)
  • Indicator Circuits (14)
  • Inverter Circuits (87)
  • Lamps and Lights (142)
  • Meters and Testers (69)
  • Mini Projects (46)
  • Motor Controller (64)
  • Oscillator Circuits (27)
  • Pets and Pests (15)
  • Power Supply Circuits (108)
  • Remote Control Circuits (50)
  • Security and Alarm (64)
  • Sensors and Detectors (100)
  • Solar Controller Circuits (59)
  • Temperature Controllers (42)
  • Timer and Delay Relay (49)
  • Transmitter Circuits (29)
  • Voltage Control and Protection (37)
  • Water Controller (36)

Calculators

  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator
  • Filter Capacitor Calculator
  • Buck Converter Calculator
  • Boost Converter Calculator
  • Solar Panel, Inverter, Battery Calculator
  • Wire Current Calculator
  • SMPS Transformer Calculator
  • IC SG3525, SG3524 Calculator
  • Inverter LC Filter Calculator

People Also Search

555 Circuits | 741 Circuits | LM324 Circuits | LM338 Circuits | 4017 Circuits | Ultrasonic Projects | SMPS Projects | Christmas Projects | MOSFETs | Radio Circuits | Laser Circuits | PIR Projects |

Recent Comments

  • Swagatam on Simple Delay Timer Circuits Explained
  • Swagatam on The Role of Inductor Coil in SMPS
  • Swagatam on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA
  • Swagatam on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA
  • Victor on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA

Company

  • Privacy Policy
  • Cookie Policy
  • About Me
  • Contact
  • Disclaimer
  • Copyright
  • Videos
  • Sitemap

Social Profiles

  • Twitter
  • YouTube
  • Instagram
  • Pinterest
  • My Facebook-Page
  • Quora
  • Stack Exchange
  • Linkedin
  • © 2025 · Swagatam Innovations