8 to 1 Multiplexer Design in LabVIEW
Advertisement
This document outlines the design of an 8-to-1 multiplexer implemented using LabVIEW. An 8-to-1 multiplexer has 8 input lines, 1 output line, and 3 selection lines. The selection lines determine which of the 8 input lines is routed to the output.
Truth Table
The following truth table illustrates the logic of the 8-to-1 multiplexer:
S2 | S1 | S0 | Output |
---|---|---|---|
0 | 0 | 0 | INPUT1 |
0 | 0 | 1 | INPUT2 |
0 | 1 | 0 | INPUT3 |
0 | 1 | 1 | INPUT4 |
1 | 0 | 0 | INPUT5 |
1 | 0 | 1 | INPUT6 |
1 | 1 | 0 | INPUT7 |
1 | 1 | 1 | INPUT8 |
8 to 1 Multiplexer LabVIEW VI Block Diagram
The block diagram below illustrates the implementation of the 8-to-1 multiplexer in LabVIEW.
8 to 1 Multiplexer LabVIEW VI Front Panel
The front panel below shows the user interface of the 8-to-1 multiplexer VI.
Download LabVIEW Source Code
Download 8 to 1 multiplexer Labview vi source code files
Advertisement