Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:Multiplexed display systems reduce wiring and driver count by sharing signals among digits. Two common buses exist: a digit-select bus (activating which digit is currently lit) and a segment (display) bus that carries segment data a–g (and possibly DP). Understanding these shared conductors is vital for designing efficient user interfaces on embedded systems.
Given Data / Assumptions:
Concept / Approach:In time-multiplexing, the controller presents segment data on a common segment bus while enabling exactly one digit through the digit bus (digit enables). Rapid scanning creates the illusion that all digits are lit simultaneously. Both sets of lines are shared: the digit bus distributes enables; the segment bus carries the segment pattern.
Step-by-Step Solution:
Identify two shared groups: digit enables and segment signals.During a scan slot, assert one digit enable on the digit bus.Drive required segment levels on the segment bus for that digit’s value.Repeat for all digits at a high refresh rate.Verification / Alternative check:Observe with an oscilloscope or logic analyzer: digit lines show periodic enables; segment lines show patterns synchronized with each digit’s time slice. Persistence of vision yields a stable multi-digit readout.
Why Other Options Are Wrong:
Common Pitfalls:Insufficient refresh rate causing flicker; ghosting due to slow drivers; forgetting current-limiting resistors per segment; misordering segment labels.
Final Answer:Correct
Discussion & Comments