Skip to main content

Check shorted points on PCB using multimeter

Soldering is the process of mounting different components on PCB. Doing soldering is easy but tough when the points or traces get shorted at some points. You thoroughly have to check the shorted traces on PCB to avoid in hardware of your project. Shorting points generally occurs when you solder on General purpose PCB or Zero PCB or you are an amateur.

Any one can encountered by this problem of shorting the traces while soldering. You can avoid the shorting by checking it using multimeter. A Digital Multimeter is an electronic measuring instrument that combines several measurement functions in one unit. A typical multimeter may include features such as the ability to measure voltage, current and resistance. It can help you in testing your shorted traces on PCB.
Follow the simple and easy steps to find the shorted traces or soldered points on PCB:-
1. You must do soldering carefully and with using low soldering on components to avoid shorting. You can see the below image of soldering in which shorting can generally occurs.
2. If a circuit diagram is available, find the traces you marked as suspicious on the diagram. Observe if the traces should be separate or connected. In some cases traces are deliberately connected. Go through all suspicious traces and eliminate the ones that are connected in the circuit diagram. If a circuit diagram is not available, skip this step.

3. To check the Shorted points in the soldering, use multimeter. Here, I used digital multimeter for your convinces.

4. Insert the Black probe in common "COM" socket of a digital multimeter and the red probe in volt "V" socket.

5. Set the digital multimeter knob at the continuity test point. This position generally has a sign with several small parallel lines.

6. Touch both black and red knob to check shorting. On connecting both knobs, beep sound and values on multimeter starts changing indefinitely which is showing the shorting of the circuit.

7. Now, connect the leads or knobs on the suspicious points on soldering traces. It dose not matter which lead is connected to which point. If beep sound and multimeter displays indefinite values, it means the soldered points are short and you have to correct them.


8. If no indefinite values are displayed or no beep sound is heard, The circuit is correct and there is no shorting between those points.

9. Repeat the process with other traces on PCB also to know the shorting path between other points.

10. If a multimeter does not produces beep sound or does not display indefinite value on the screen, it means multimeter is not working properly or its battery is down. In that case, replace multimeter or its battery.

Comments

  1. Hi,

    I enjoyed reading your blog post on how to check for shorted points on a PCB. I'm a PCB designer myself, and I'm always looking for ways to improve my PCB layout skills.

    I found your post to be very informative, and I especially liked the step-by-step instructions on how to use the short circuit checker tool. I'm sure this will be a helpful resource for me in the future.

    I also appreciate the information you provided about PCB layout services. I've been thinking about outsourcing my PCB layout to a third-party provider, and your post has given me some food for thought.

    Thanks for a great blog post!

    ReplyDelete

Post a Comment

Popular posts from this blog

Buzzer interface with 8051 microcontroller

Buzzer  is a electronic device that converts the electronic signal into buzzing noise, that is applied to it. It can be used as electronic bell or as quiz buzzer in many applications around us. Here, i world like to discuss the interfacing of a small buzzer with 8051 microcontroller and how different projects can be constructed. Buzzer Interfacing: This project shows the interface with AT89S52 microcontroller to a buzzer. When a push button is pressed, the buzzer will get ON and OFF ( number of times set in the code ) and then stops. Circuit Diagram: - The port P1 of the microcontroller is connected to buzzer. This type of connection is possible, if the current requirements of the buzzer is not more than 20mA. The output is in current source mode so that buzzer will turn ON when the output of the port is logic LOW. Switch is connected to port P3 which remains at logic HIGH by pull up resistor.  Code: #include "REG52.h" #define buz P1 sbit SW=P3^0; long int i; voi

How to Switch OFF Citizen Calculator

You might be confused on seeing no OFF button on your calculator. Actually, these are general calculator available at low cost in the market. They process simple calculations like division, subtraction, Addition, Multiplication. But, how will you OFF that calculator having no option on them. There is always a trick which OFF them. It depends on the company calculator and their series to which they belong. I can tell you about Citizen Calculator CT-500 (as you can see in the image), how can you switch OFF it and can save battery too. If you leave calculator idle for 6-7 minutes, it will goes OFF automatically. My calculator goes OFF in 6.50 minutes from the point of leaving it idle. But, this is not the power saving trick for these types of calculator having not much backup battery. To save the power of your normal calculator, here is the trick to switch OFF it. Press ' /(divide sign)', 'x(multiply sign)', '%(percentage sign)', 'autoreplay option(

Different ways to generate delays in 8051

The delay length in 8051 microcontroller depends on three factors: The crystal frequency the number of clock per machine the C compiler. The original 8051 used 1/12 of the crystal oscillator frequency as one machine cycle. In other words, each machine cycle is equal to 12 clocks period of the crystal frequency connected to X1-X2 pins of 8051. To speed up the 8051, many recent versions of the 8051 have reduced the number of clocks per machine cycle from 12 to four, or even one. The frequency for the timer is always 1/12th the frequency of the crystal attached to the 8051, regardless of the 8051 version. In other words, AT89C51, DS5000, and DS89C4x0 the duration of the time to execute an instruction varies, but they all use 1/12th of the crystal's oscillator frequency for the clock source. 8051 has two different ways to generate time delay using C programming, regardless of 8051 version. The first method is simply using Loop   program function in which Delay() function i