Usage of IC 74139

from __future__ import print_function
from BinPy import *
# Usage of IC 74139:

ic = IC_74139()

print(ic.__doc__)
This is a dual 1:4 demultiplexer(2:4 decoder) with output being inverted input
# The Pin configuration is:

inp = {1: 0, 2: 0, 3: 0, 14: 0, 13: 1, 15: 0}

# Pin initinalization

# Powering up the IC - using -- ic.setIC({14: 1, 7: 0})

ic.setIC({16: 1, 8: 0})

# Setting the inputs of the ic

ic.setIC(inp)

# Draw the IC with the current configuration\n

ic.drawIC()
         ┌─────────◡─────────┐
         │                   │
[0]    ──┤  1            16  ├──    [1]
         │                   │
         │                   │
[0]    ──┤  2      7     15  ├──    [0]
         │                   │
         │                   │
[0]    ──┤  3      4     14  ├──    [0]
         │                   │
         │                   │
[Z]    ──┤  4      1     13  ├──    [1]
         │                   │
         │                   │
[Z]    ──┤  5      3     12  ├──    [Z]
         │                   │
         │                   │
[Z]    ──┤  6      9     11  ├──    [Z]
         │                   │
         │                   │
[Z]    ──┤  7            10  ├──    [Z]
         │                   │
         │                   │
[0]    ──┤  8             9  ├──    [Z]
         │                   │
         └───────────────────┘
# Run the IC with the current configuration using -- print ic.run() --

# Note that the ic.run() returns a dict of pin configuration similar to

print (ic.run())
{4: 0, 5: 1, 6: 1, 7: 1, 9: 1, 10: 0, 11: 1, 12: 1}
# Seting the outputs to the current IC configuration using -- ic.setIC(ic.run()) --\n

ic.setIC(ic.run())

# Draw the final configuration

ic.drawIC()
         ┌─────────◡─────────┐
         │                   │
[0]    ──┤  1            16  ├──    [1]
         │                   │
         │                   │
[0]    ──┤  2      7     15  ├──    [0]
         │                   │
         │                   │
[0]    ──┤  3      4     14  ├──    [0]
         │                   │
         │                   │
[0]    ──┤  4      1     13  ├──    [1]
         │                   │
         │                   │
[1]    ──┤  5      3     12  ├──    [1]
         │                   │
         │                   │
[1]    ──┤  6      9     11  ├──    [1]
         │                   │
         │                   │
[1]    ──┤  7            10  ├──    [0]
         │                   │
         │                   │
[0]    ──┤  8             9  ├──    [1]
         │                   │
         └───────────────────┘
# Seting the outputs to the current IC configuration using -- ic.setIC(ic.run()) --

ic.setIC(ic.run())

# Draw the final configuration

ic.drawIC()

# Run the IC

print (ic.run())
              ┌─────────◡─────────┐
              │                   │
     [0]    ──┤  1            16  ├──    [1]
              │                   │
              │                   │
     [0]    ──┤  2      7     15  ├──    [0]
              │                   │
              │                   │
     [0]    ──┤  3      4     14  ├──    [0]
              │                   │
              │                   │
     [0]    ──┤  4      1     13  ├──    [1]
              │                   │
              │                   │
     [1]    ──┤  5      3     12  ├──    [1]
              │                   │
              │                   │
     [1]    ──┤  6      9     11  ├──    [1]
              │                   │
              │                   │
     [1]    ──┤  7            10  ├──    [0]
              │                   │
              │                   │
     [0]    ──┤  8             9  ├──    [1]
              │                   │
              └───────────────────┘
{4: 0, 5: 1, 6: 1, 7: 1, 9: 1, 10: 0, 11: 1, 12: 1}
# Connector Outputs
c = Connector()

# Set the output connector to a particular pin of the ic
ic.setOutput(9, c)

print(c)
Connector; State: 1