Encoder
From Wikipedia, the free encyclopedia
An encoder is a device used to change a signal (such as a bitstream) or data into a code. The code may serve any of a number of purposes such as compressing information for transmission or storage, encrypting or adding redundancies to the input code, or translating from one code to another. This is usually done by means of a programmed algorithm, especially if any part is digital, while most analog encoding is done with analog circuitry.
Contents |
[edit] Single bit 4 to 2 Encoder
A single bit 4 to 2 encoder takes in 4 bits and outputs 2 bits. It is assumed that there are only 4 types of input signals these are : 0001, 0010, 0100, 1000.
| I3 | I2 | I1 | I0 | O1 | O0 |
|---|---|---|---|---|---|
| 0 | 0 | 0 | 1 | 0 | 0 |
| 0 | 0 | 1 | 0 | 0 | 1 |
| 0 | 1 | 0 | 0 | 1 | 0 |
| 1 | 0 | 0 | 0 | 1 | 1 |
[edit] Priority encoder
A priority encoder prioritizes more significant bits in the data stream, and once it finds a high signal will ignore all other bits. An example of a single bit 4 to 2 encoder is shown.
| I3 | I2 | I1 | I0 | O1 | O0 |
|---|---|---|---|---|---|
| 0 | 0 | 0 | d | 0 | 0 |
| 0 | 0 | 1 | d | 0 | 1 |
| 0 | 1 | d | d | 1 | 0 |
| 1 | d | d | d | 1 | 1 |
[edit] Connecting Priority Encoders
Priority encoders can be easily connected in arrays to make larger encoders, such as a 16 to 4 encoder made from six 4 to 2 priority encoders (four encoders having the signal source connected to their inputs, and two encoders that take the output of the first four as input).
[edit] Examples
- A compressor encodes data (e.g., audio/video/images) into a smaller form.
- A multiplexer combines multiple inputs into one output.
- A rotary encoder converts rotary position to an analog (e.g., analog quadrature) or digital (e.g., digital quadrature, 32-bit parallel, or USB) electronic signal.
- A linear encoder similarly converts linear position to an electronic signal.
[edit] See also
[edit] External links
- Encoding data to an ID Card: Using a Magnetic Stripe Encoder
- Absolute Encoder Using Gray Code - Absolute encoding for rotating shaft, with a comprehensive discussion of gray code.
- asic-world's Digital Combinational Logic (part III) - an overview of encoders in circuitry.

