Arduino Based Inductance Meter

When you are in direct need of measuring the inductance but you got no multimeter or not even an oscilloscope to do that, here we got you covered, as we are going to build a very cheap and easy Inductance Meter by utilising the Arduino microcontroller. The procedure is accurate with a scope from 80uH to 30000uH, but it should be working for much larger or a bit small inductors. Also, we made a Capacitance Meter Using Arduino in a previous article.

Project

Arduino Based Inductance Meter

Circuit Diagram

Inductance Meter Circuit Diagram

Components Required

  • Arduino Nano
  • 16×2 LCD Display
  • I2C LCD Display
  • LM339 Comparator IC
  • 1uF Non-Polar Capacitor (x2)
  • Resistor (150Ω, 330Ω)
  • 1N4007 PN Diode
  • Connection Wire
  • Breadboard
  • 5V Power Supply

About LM339 Comparator IC

Microcontrollers can’t precisely analyse Analog signals. The Atmega328 ADC is capable of sampling Analog signals at 9600hz or 1ms, which is fast but not enough for the project. So we have to use the chip that’s capable of turning real-world signals into basic digital signals, the LM339 comparator which switches faster than a normal LM741 op-amp.

What is an LC Circuit?

An inductor parallelly set with a capacitor is called an LC circuit, it will make a sound like a ringing bell. It doesn’t matter what frequency is used or how hard a bell is struck, it will still ring at its certain resonating frequency. We will strike the LC bell electronically, wait it out to make the things resonate, and then measure it. Some internal resistance is observed, so it’s confirmed as an RLC circuit

After that, as the voltage on the LC circuit becomes positive, the LM339 will float, which can be raised high up using a pull-up resistor. As the voltage on the LC circuit become negative, the LM339 will put its output to the ground.

We will then apply a pulse signal to the LC circuit. We will use 5 volts from the Arduino. Then we can change the voltage from 5 volts to 0 volts directly. This change will make the circuit resonate and create a cushioned sinusoidal signal that oscillates at the resonant frequency. Then what we need to do is to measure that frequency. And we will later use that to get the inductance value, Arduino will be used to measure the frequency and calculate the value.

Inductance Meter first equation

we could get the value of L because we know the frequency F that we’ve just measured and we also know the values of the capacitor C because it’s a component that we’ve selected. All we need is to obtain L from this equation.

Inductance Meter second equation

The wave here is a true sinusoidal wave, it spends equal time above zero volts and below zero volts. This means that the comparator will turn it into a square wave with a duty of 50%, and pulse In(pin, HIGH, 5000); will measure the time in microseconds elapsed rising edge to the falling edge. This measurement can be doubled to get the period and the inverse of the period is the frequency. As the circuit is resonating, this frequency is the resonating frequency.

As this is an RLC circuit and as it got internal resistance, it won’t be able to change any characteristics of the resonating frequency. The RLC can still resonate but the amplitude will end. If the resistance is low the RLC will tend to latch onto the precise resonating frequency more quickly.

PCB Design

After designing the schematic diagram of the Inductance Meter circuit, the assembled components and wiring are too clumsy and looked very unprofessional. In fact, the wiring also has a chance of loose connection. To give it a clean and professional look and also to compress the size, I decided to build its PCB prototype using EasyEDA software as it is so simple to use. Now come to the main part, where we need to order our PCB prototype. I always prefer PCBWay for their quality assurance, fastest delivery and also for 24/7 customer support.

PCB View

Inductance Meter 2D View
2D View
Inductance Meter 3D View
3D View

Why I Choose PCBWay as My First Preference?

I’ve done several runs with PCBWay and am happy with the results, it’s good quality. It is one of the most experienced PCB manufacturing companies based in China with an experience of more than a decade in the field of PCB prototype and fabrication. PCBWay has always been committed to technological innovation and meeting the needs of their customers from different industries in terms of quality, delivery, cost-effectiveness and any other demanding requests. The etching, solder mask, and hole sizes are all done well and that is what matters to me. It takes a few hours for a design to get approved and then a couple of days to finish and ship. With more than a decade in the field of PCB prototypes and fabrication, PCBWay has proved its assurance from time to time. They always look at the customer’s needs from different regions in terms of quality, on-time delivery, cost-effectiveness and any other demanding requests.

PCBWay Gold Finish
PCBWay Thickness

These PCBs were manufactured by PCBWay and the finish quality really impressive, especially with the gold finish path. If you want to finish your product faster you could also ask PCBWay to make a panelized order where you receive multiple PCBs in a single panel. With this, you will also receive SMT Stencil from PCBWay, saving you time and effort. All the orders are high quality and could select a lot of settings such as thickness, flexible PCB, the colour of the solder masks, the number of layers, material, surface finish and more.

PCBWay different types of solder masks

How to Order PCB from PCBWay?

Working Principle of Arduino Based Inductance Meter

Here in the Inductance Meter, we apply a 5 volts pulse on the LC circuit using Arduino digital pin D13 for some time. After that, the pulse is stopped and the circuit will start to resonate. The comparator will give a square signal output with the same frequency that the Arduino will measure by using the pulse in function as it measures the time between each pulse of the square wave. After that, it will calculate the value and print it on the LCD screen.

Now We have to apply 5 volts to the LM339 comparator. Then connect ground to pin 12 of the LM339 and 5 volts to pin 3. Comparator input pin 2 will be used here. The negative input will be pin 6 of the LM339 and the positive pin 7. The output is pin 1 which is the pin marked with a black dot. The pin number increases counterclockwise. Connect the comparator output to the pin D11 of the Arduino. Connect the pin D13 from the microcontroller through a 150 ohms resistor and a diode to the LC circuit. Input the next code and we are good to go.

Arduino Code

To compile this code you need to install the LiquidCrystal_I2C.h library first.

Leave a Comment