This is the 1st part of our LCR tutorial in which we are going to make an inductance meter. In the upcoming parts of this series, we will upload information and circuit diagrams of the capacitor and resistance meter. 

Inductance meter:

An inductance meter is used to measure the unknown inductor value. For more precision and accurate readings, we will use a microcontroller (Arduino) as the brain of the circuit.

Inductor meter idea:

We usually need an inductor to make tank circuits while working with radio frequency, power circuits, and amplifiers. But we cannot measure the value of the inductor in our simple multimeter. So, either we can buy one or DIY (make). LCR meters are too expensive, that’s why we are making this inductor meter.

Components required:

1) Arduino Uno 

2) LM339 OP-AMP 

3) 1N4007 diode

4) 150 ohm, 330ohm resistor

5) 16X2 LCD with I2C to reduce connections 

6) 5V battery 

7) 2x 100nF capacitors (non-polar)

8) Some jumper wires (if working with breadboard)

Circuit diagram:

inductor meter circuit diagram

Breadboard circuit:

inductor meter circuit diagram

Gerber files:

inductance meter using arduino

Gerber file link is given below to order Gerber files, Upload files to NextPcb and get your first PCB absolutely free of cost.

NextPCB is one of the most experienced PCB manufacturers in the world, focusing on PCB and PCBA for over 15 years, certified by  IATF16949, ISO 9001, ISO 14001, UL, RoHS, CQC and REACH. recently, NextPCB has acquired KiKiPCB, to celebrate this good news, NextPcboffers Up to 30% off for PCB orders, and Up to 20% off for PCBA orders, besides, every new customer could enjoy $0 prototyping PCB! 

Click to order now: https://www.nextpcb.com/midsummer-sale-on-nextpcb.html?code=sagarjm

By the way, NextPCB designed and developed a PCB design checker(for free now) to check the manufacturability of your file, click to have a try: https://www.nextpcb.com/nextdfm.html?code=sagarjm

Circuit details and working:

Circuit also has an OP-AMP; we are using LM339 due to its simplicity. Here, the Operation amplifier is used as a comparator, which measures the voltage at two instants and compares them. We will discuss the operational amplifier as a comparator at the end of this tutorial.

330ohm resistor is used as a pull-up resistor and connected to PIN 1 of the Lm339 to Arduino digital pin 11. 150ohm resistor is used after diode and further connected to digital pin 13 of the Arduino.

 We are using here 104number (2pcs) capacitor 0.2uf (one of 100Nf). The value 2.E-7 can be changed if you are using a different value capacitor. In which value 2 represents the capacitance value (0.2uf).

 We can change the op-amp to lm358, 741, or any other having the same configuration. But low noise operational amplifier is preferred more in this case.

Download files and diagrams: 

DOWNLOAD GERBER FILES DIAGRAMS AND CODE FROM HERE

Code details:

1) Initializing all the values:

2) Selecting the capacitor value:

3) Conversion of values milli-henry and micro-henry (mH and uH):

 4) Printing the result through serial monitor:

5) Printing the result through 16X2 LCD:

Arduino code:

//[code]

//Circuit and code is uploaded by Circuitkicker.com

//some important things:

// 1) If using Serial monitor to read the value of inductor then select 115200 boud.

// 2) Adjust the value by using fixed inductor by changing 2.E-7 line.

// 3) We will get acuurate readings because of many iteratations.

#include <Wire.h>

#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,20,4);  //sometimes the adress is not 0x3f. Change to 0x27 if it doesn't work.

//13 is the input to the circuit (connects to 150ohm resistor), 11 is the comparator/op-amp output.

double pulse, frequency, capacitance, inductance, inductance_mH;

void setup(){

  lcd.init();

  lcd.backlight();

  Serial.begin(115200); 

  pinMode(11, INPUT); //Input from the comparator output

  pinMode(13, OUTPUT);//output through a 150 ohm resistor to thr LC circuit

  Serial.println("HELLO SIR");

  delay(1000);

  Serial.println("Circuitkicker.com");

  delay(2500);

}

void loop(){

  digitalWrite(13, HIGH);

  delay(5);//give some time to charge inductor.

  digitalWrite(13,LOW);

  delayMicroseconds(100); //make sure resination is measured

  pulse = pulseIn(11,HIGH,5000);//returns 0 if timeout

  if(pulse > 0.1){ //if a timeout did not occur and it took a reading:

  capacitance = 2.E-7; // <- insert value here

  frequency = 1.E6/(2*pulse);

  inductance = 1./(capacitance*frequency*frequency*4.*3.14159*3.14159);

  inductance *= 1E6; //note that this is the same as saying inductance = inductance*1E6

  inductance_mH = inductance/1000;

  //Serial print

  Serial.print("High for uS:");

  Serial.print( pulse );

  Serial.print("\tfrequency Hz:");

  Serial.print( frequency );

  Serial.print("\tinductance uH:");

  Serial.println( inductance );

  delay(10);

  //LCD print

  lcd.clear();

  lcd.setCursor(0,0); 

  lcd.print("uH Inductance mH");

  lcd.setCursor(0,1); 

  lcd.print(inductance);

  lcd.setCursor(10,1); 

  lcd.print(inductance_mH);        

  delay(10);

  }

}

//[/code]

To Download I2C library:

i2c module

 This library is essential to the circuit if we are connecting a 16X2 LCD. For this, we need an I2C module having an address (0x3f or 0x27). Most probably 0x27 address is used. 

It helps to enter data serial wise so reduce the connections.

Inductance range of this meter:

This inductor meter is capable of measuring the small values like 1uH to significant values like 1Henery. Code is quite complex due to pulse rate function. But all type of Arduino is still able to handle this. 

LM339 as a comparator:

op-amp as a comparator

For more, subscribe to us on the YouTube channel and follow our Instagram page.

How to order PCB from NextPcb? The straightforward method has just 5 steps.

1. Go to browser and search NextPcb or by click here.

Edit

2. Download the Gerber file given in this tutorial.

3. Sign up to get up to $30 coupons and free PCB.

4. In the PCB quote section, upload the Gerber file.

5.Select the colour, quantity, and material of PCB. 

Make the order and get your free PCB at home.