TV Channel Selector MUX
4-to-1 multiplexer selecting TV channels. Learn data routing and selection using multiplexer logic for real-world applications.
您将学到什么
- Apply a 4-to-1 MUX as a channel selector.
- Use a 2-bit select to address 4 input channels.
- Read the MUX truth table for the application.
- Recognize MUXes in HDMI switches, KVMs, and audio routing.
- Scale to wider channel counts by adding select bits.
工作原理
A 4-to-1 multiplexer makes an excellent TV channel selector: four channel inputs, two select bits, one output to the screen. The select code (S1, S0) picks which channel reaches the output: - 00 → Channel 1 - 01 → Channel 2 - 10 → Channel 3 - 11 → Channel 4
This is the same circuit as the textbook 4-to-1 MUX, just with the application labelled. Real TVs are far more complex (RF tuners, digital decoders) but the principle of "select one of N input streams to display" is the same — multiplexers are the underlying primitive.
The select bits in a real remote control come from button presses encoded into a 2-bit (or wider) channel-number register. Each button press updates the register; the MUX immediately routes the new channel through. The user sees an instant switch.
For 16 channels you'd need a 16-to-1 MUX with 4 select bits; for 256 channels, an 8-bit select. MUXes scale efficiently — the select width is logarithmic in input count.
真值表
Selecting one of 4 channels with a 2-bit select code. Showing each channel's selection.
| 输入 | 输出 | ||
|---|---|---|---|
| S1 | S0 | Channel | |
| 0 | 0 | 1 | S=00 → Channel 1 |
| 0 | 1 | 1 | S=01 → Channel 2 |
| 1 | 0 | 1 | S=10 → Channel 3 |
| 1 | 1 | 1 | S=11 → Channel 4 |
布尔表达式
Standard 4-to-1 MUX expression — each channel ANDed with its select-code minterm.
逐步尝试
在上方嵌入式电路中设置输入,然后阅读预期结果并验证。
- 1S1 = 0 S0 = 0 C1 = 1预期:
Output = 1 (showing C1)您将看到: Select 00 → Channel 1 plays. Other channels are tuned out. - 2S1 = 0 S0 = 1 C2 = 1预期:
Output = 1 (showing C2)您将看到: Flip S0 — switch to Channel 2 instantly. - 3S1 = 1 S0 = 0 C3 = 1预期:
Output = 1 (showing C3)您将看到: Channel 3 selected. The MUX routes the new channel through immediately. - 4S1 = 1 S0 = 1 C4 = 0预期:
Output = 0您将看到: Channel 4 selected, but C4 input is 0. Output reflects the actual channel content — 0 means "channel currently dark."
使用的组件
实际应用
Analog TV channel selection. Older TVs used analog MUXes (or selectable RF tuners) to pick between input bands. The select control was the channel knob.
HDMI input switching. Modern TVs use multiplexers (or active switches) to route one of N HDMI sources to the display pipeline. The remote's input button drives the select.
Audio/video matrix routing. Conference room AV systems route multiple inputs to multiple outputs via crossbar switches — fundamentally an array of MUXes.
KVM switches. Keyboard/Video/Mouse switches use multiplexers to share peripherals across multiple computers based on a select knob.
Radio frequency selection. Radios with preset buttons use small MUXes to select between stored frequency-tuning configurations.