diff options
author | Pranav Karuvally | 2023-05-07 17:06:33 +0530 |
---|---|---|
committer | GitHub | 2023-05-07 17:06:33 +0530 |
commit | 58072b7f39bc7448a32d0f937d2531e4625f9f75 (patch) | |
tree | 4d513a11d2685a315ad655a23db6ec118829b088 /library/SubcircuitLibrary/demux/README.md | |
parent | 2de5fa0604c35a1508bca8bab318724da823633a (diff) | |
parent | b145afdb869564df4131f0b0b472116ca744ef65 (diff) | |
download | eSim-58072b7f39bc7448a32d0f937d2531e4625f9f75.tar.gz eSim-58072b7f39bc7448a32d0f937d2531e4625f9f75.tar.bz2 eSim-58072b7f39bc7448a32d0f937d2531e4625f9f75.zip |
Merge branch 'FOSSEE:master' into master
Diffstat (limited to 'library/SubcircuitLibrary/demux/README.md')
-rw-r--r-- | library/SubcircuitLibrary/demux/README.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/library/SubcircuitLibrary/demux/README.md b/library/SubcircuitLibrary/demux/README.md new file mode 100644 index 00000000..b2bb3cb4 --- /dev/null +++ b/library/SubcircuitLibrary/demux/README.md @@ -0,0 +1,28 @@ + +# Demux IC + +Demux is the de-multiplexer circuit that takes one input line and gives multiple output lines. Basically, it’s a combinational circuit and It always takes one input +line and gives 2n output line, where n is the number of select lines. It is also, known as a serial to parallel converter or data distributor circuit. The 1:2 Demux consist of 1 input line, 1 select line, and produces 2 output line. as, according to the formula no. of the output line is depends on no. of select line, here, in 1:2 demux, no. of output line = 2^n = 2^1 = 2. + + +## Usage/Examples + +It is used in communication systems. + +It is used in serial to parallel converter. + + +## Documentation + +To know the details of 74LVC1G19 IC please refer to this link [74LVC1G19_IC_datasheet.](https://assets.nexperia.com/documents/data-sheet/74LVC1G19.pdf) + +## Comments/Notes + +Please note this is a complete Digital IC. It works fine at the time of simulation. + +## Contributor + +Name: Vanshika Tanwar +Email: vanshikatanwar30@gmail.com +Year: 2022 +Position: FOSSEE Summer Fellowship Intern 2022 |