Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

Help IDing this part

Status
Not open for further replies.

woodturner550

New Member
I received several of these in a box of misc. electronic parts. What are they?

Thanks for the help.

woodturner550
 

Attachments

  • 001..JPG
    001..JPG
    29.6 KB · Views: 165
  • 002..JPG
    002..JPG
    26.5 KB · Views: 155
  • 003..JPG
    003..JPG
    27.9 KB · Views: 163
PCB mounted rotary switch, which (most likely) gives a binary coded decimal output
 
Last edited:
It's a 10 position BCD (Binary Coded Decimal) switch.

Code:
position  -8-  -4-  -2-  -1-
  "0"      0    0    0    0
  "1"      0    0    0    1
  "2"      0    0    1    0
  "3"      0    0    1    1
  "4"      0    1    0    0
  "5"      0    1    0    1
  "6"      0    1    1    0
  "7"      0    1    1    1
  "8"      1    0    0    0
  "9"      1    0    0    1

<edited> to fix the "9" truth table output...
 
Last edited:
Me thinks:

"8" 1 0 0 0
"9" 1 0 0 0

"9" needs fixed:

"9" 1 0 0 1

:)

Ron
 
Thanks

Thanks all for the help. It is nice to have a place where a person can ask these types of questions and not get a lot of flack for not knowing something as I see in some forums.

I have enough information to be able to study the switch and its uses.

:D

woodturner550
 
Some information on rotary switches:

Read bcd
bcd complememtry
Real hexadecimal
Complementry hexadecimal
Gray code.........The reflected binary code, also known as Gray code after Frank Gray, is a binary numeral system where two successive values differ in only one bit.

The reflected binary code was originally designed to prevent spurious output from electromechanical switches. Today, Gray codes are widely used to facilitate error correction in digital communications such as digital terrestrial television and some cable TV systems.


Truth table https://www.electro-tech-online.com/custompdfs/2010/03/01346.pdf

woodturner550
 
Status
Not open for further replies.

New Articles From Microcontroller Tips

Back
Top