Skip to main content

How to calculate through-hole resistors value?

How to calculate through-hole resistors value?

In Electronics, resistors play a vital role in any circuit.
Lot of resistances is used in a big circuit. Before using the resistor we should be aware of calculation of their values and tolerance.
So in this post, I am going to teach you how to calculate the value of resistors.
I will take example of through-hole resistors having color band over their body.
You must have seen such resistors. The resistor given below is Four-colour band resistor.




First one is Brown.
Second one is Green.
Third one is Orange.
And
Fourth one, at the most right place, is Gold.
Its value is 15 Kohm with tolerance 5%.
Tolerance means its value can be between 14.25 and 15.75 Kohm.


Digit Value:
There is a Value chart for each colour according to their position.
Value of black colour for 1st digit is Nil.
Value of black colour for 1st, 2nd and 3rd digit is 0.
Value of Brown colour for 1st, 2nd and 3rd digit is 1.
Value of Red colour for 1st, 2nd and 3rd digit is 2.
Value of Orange colour for 1st, 2nd and 3rd digit is 3.
Value of Yellow colour for 1st, 2nd and 3rd digit is 4.
Value of Green colour for 1st, 2nd and 3rd digit is 5.
Value of Blue colour for 1st, 2nd and 3rd digit is 6.
Value of Violet colour for 1st, 2nd and 3rd digit is 7.
Value of Gray colour for 1st, 2nd and 3rd digit is 8.
Value of White colour for 1st, 2nd and 3rd digit is 9.
Value of Gold colour for 1st, 2nd and 3rd digit is Nil.
Value of Silver colour for 1st, 2nd and 3rd digit is Nil.

Multiplier:
Value of Black colour for Multiplier is 1.
Value of Brown colour for Multiplier is 10.
Value of Red colour for Multiplier is 100.
Value of Orange colour for Multiplier is 1000.
Value of Yellow colour for Multiplier is 10000.
Value of Green colour for Multiplier is 100000.
Value of Blue colour for Multiplier is 1000000.
Value of Violet colour for Multiplier is 10000000.
Value of Grey colour for Multiplier is 100000000.
Value of White colour for Multiplier is 1000000000.
Value of Gold colour for Multiplier is 0.1.
Value of Silver colour for Multiplier is 0.01.

 Tolerance:
Value of Black colour for tolerance is Nil.
Value of Brown colour for tolerance is ±1%.
Value of Red colour for tolerance is ±2%.
Value of Orange colour for tolerance is ±3%.
Value of Yellow colour for tolerance is ±4%.
Value of Green colour for tolerance is ±0.5%.
Value of Blue colour for tolerance is ±0.25%.
Value of Violet colour for tolerance is ±0.10%.
Value of Grey colour for tolerance is ±0.05%.
Value of White colour for tolerance is Nil.
Value of Gold colour for tolerance is ±5%.
Value of Silver colour for tolerance is ±10%.





So about our resistor.
First colour is Brown means 1.
Second colour is Green means 5.
Third is multiplier, color is Orange mean 1000.

Now put all these values together.
15 x 1000 Ohm
15000 Ohm
15 Kohm.

Tolerance is ±5%, since Gold for tolerance is ±5%.

Now you collect the resistors from around you and try to find out the value of those resistors. Or you can imagine the colour band of resistors.


 

Comments

Popular posts from this blog

How to Make Automatic Room Light Controller Without Microcontroller

You must have noticed in some offices or hotels, when nobody is in gallery or washroom, the light remains OFF but when somebody enters the place, light switches ON automatically. In this post I am going to teach you how to make this circuit. Before going ahead I would like to tell you that this is VERY EASY circuit. For this circuit the material we need is… PIR Motion sensor General Purpose PCB - 5x5 cm. Transistor 2222N – 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Relay Circuit Concept : We can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed). So I am using 5V relay. PIR sensor has three terminals, One for 5Vdc Second for Gnd (0V). Third for

How to drive high voltage/current load by small voltage signal from a microcontroller?

Sometimes we need to control or drive a high voltage and heavy current load by a small voltage signal. For example, if you want to control water motor with your microcontroller output. We know that microcontroller gives only 5v output which is not sufficient to drive a heavy motor. This circuit, about which this post is, is very-very useful for electronics engineer and hobbyist. So pay attention! For this circuit the material we need is… General Purpose PCB - 5x5 cm. Transistor KN 2222A (TO-92) - 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Tools. Concept: Weak signal triggers the transistor and transistor acts as a switch for the relay. You can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed).

Parking Gate with Password Protected Entry | ElectroMech Lab | Arduino

Hello Friends, This project is for password/PIN protected Parking gate. This is very interesting project. I hope you like it. Material: Arduino UNO - 1 No. Servo Motor - 1 No. IR Sensor - 1 No. 4x4 Keypad - 1 No. 9V Battery - 1 No. Toy Car - As per your wish. 10 Kohm Resistor - 1 No. Sketch:  // This code is for password/PIN protected Parking Gate. #include <Keypad.h> #include <Servo.h> Servo myservo;  // create servo object to control a servo int exitSensor= 10;   // pin 10 is connected to out sensor, when vehicle is passed after toll crossing //******************************************************** keypad initialisation  ************************************ char* password = "1245"; // if this is changed then modification is needed in loop section validating the keys const byte ROWS = 4; //four rows const byte COLS = 4; //three columns char keys[ROWS][COLS] = {       {'1', '2', '3', 'A'},   {'4', '5', '6',