Resisted

In an Effort to practice decoding/reading resistors I built a web app that will generate random resistors. The objective is to become fluent reading resistors without memorizing possible combinations, so the values might not be what you would encounter in real life, but completely random.

Link to the site

But how do I read a resistor ?

Its a simple matter, first you need to recognize the stripe colors and their value. Resistors have stripes that match the colors of the rainbow and each stripe has a numeric value and a multiplayer value, you can see these values in the table below:

Color1st band2nd band3rd bandMultiplier
black0001
brown11110
red222100
orange3331000
yellow44410000
green555100000
blue6661000000
violet777
grey888
white999
gold0.1
silver0.01

Reading four stripe Resistors:

On a four stripe resistor we will only focus on the first three stripes, and we will read it as: concat the first two stripes numeric value then multiply by the multiplier of the third stripe.

Example:

Four stripe

These stripes are orange with a value of 3, black with a value of 0, and brown with a multiplier of 10 so we can say 3 & 0 is 30 multiplied by 10 = 300, so this resistor is a 300 Ohm resistor.

Reading a five stripe Resistor:

On a five stripe resistor we will focus on the first four stripes and we will read it as: concat the first three stripes numeric value then multiply by the multiplier on the fourth stripe.

Example:

five stripe

These stripes are white with a value of 9, grey with a value of 8, green with a value of 5 and brown with a multiplier of 10 so we can say 9 & 8 & 5 = 985 * 10 = 9850 Ohm

Last stripe:

The last stripe is the Tolerance and it does not play a part of the resisted app so I will not go into details.

So now that you got theory, Time to practice