Commit 367a2a83 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

Refactor directory MUX board 2024.0.0

No related merge requests found
Showing with 673 additions and 0 deletions
+673 -0
from adafruit_mcp230xx.mcp23017 import MCP23017
from digitalio import Direction
import busio
import board
import numpy as np
CD74HC4051_addresses = {0: [0, 0, 0], 1: [1, 0, 0], 2: [0, 1, 0], 3: [1, 1, 0],
4: [0, 0, 1], 5: [1, 0, 1], 6: [0, 1, 1], 7: [1, 1, 1]}
mcp_table = np.genfromtxt('template_table_mux.csv')
print(mcp_table)
mux_channel = 0
mux_id = 0
def open_cd74hc4051(channel,mcp,mcp_pins,CD74HC4051_addresses):
mux_states = CD74HC4051_addresses[channel]
pins = np.array([None,None,None])
for i in range(3):
pins[i] = mcp.get_pin(mcp_pins[i])
pins[i].direction = Direction.OUTPUT
pins[i].value = bool(mux_states[i])
pin_enable = mcp.get_pin(mcp_pins[3])
pin_enable.direction = Direction.OUTPUT
pin_enable.value = bool(True)
mcp_table_file = '/home/arnaud/codes/OhmPi/MUX_board/MUX_v2024_relay_board_16_MMN/template_table_mux.csv'
with open(mcp_table_file,'r') as myfile:
header = myfile.readlines()[0].strip('\n').split(',')
mcp_table = np.genfromtxt('/home/arnaud/codes/OhmPi/MUX_board/MUX_v2024_relay_board_16_MMN/template_table_mux.csv',delimiter=',',skip_header=1)
mcp_table_dict = {header[k]:mcp_table.T[k] for k in range(len(header))}
mux_id_channels = np.where(mcp_table_dict['mux_id']==mux_id)
mcp_pins = mcp_table_dict['mcp_pins'][mux_id_channels][mcp_table_dict['mux_pin'][mux_id_channels].astype(int)]
i2c = busio.I2C(board.SCL, board.SDA)
mcp = MCP23017(i2c, address=0x21)
open_cd74hc4051(mux_channel,mcp,mcp_pins,CD74HC4051_addresses)
\ No newline at end of file
(kicad_sch (version 20211123) (generator eeschema)
(uuid 0e4f2439-786c-4e71-8e7d-54c906c2a35e)
(paper "A4")
(lib_symbols
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Diode:1N4007" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4007" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.vishay.com/docs/88503/1n4001.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1000V 1A General Purpose Rectifier Diode, DO-41" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*DO?41*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4007_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1N4007_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "relay_card_single:G5LE-1-VD" (in_bom yes) (on_board yes)
(property "Reference" "K14" (id 0) (at 10.922 1.1684 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "G5LE-1-VD" (id 1) (at 10.922 -1.143 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "KIGFA:Relay_SPDT_Omron-G5LE-1-VD" (id 2) (at 11.43 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.omron.com/ecb/products/pdf/en-g5le.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ref.Farnell" "2076257" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Miniature Single Pole Relay" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Omron G5LE relay, Miniature Single Pole, SPDT, 10A" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Relay*SPDT*Omron*G5LE?1*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "G5LE-1-VD_0_0"
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 2.54)
(xy 6.985 3.175)
(xy 7.62 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "G5LE-1-VD_0_1"
(rectangle (start -10.16 5.08) (end 10.16 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start -8.255 1.905) (end -1.905 -1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -7.62 -1.905)
(xy -2.54 1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -5.08)
(xy -5.08 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 5.08)
(xy -5.08 1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0)
(xy -1.27 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.635 0)
(xy 0 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 0)
(xy 1.27 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 0)
(xy 2.54 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.175 0)
(xy 3.81 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.08 -2.54)
(xy 3.175 3.81)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.08 -2.54)
(xy 5.08 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "G5LE-1-VD_1_1"
(pin passive line (at 5.08 -7.62 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "relay_card_single:STP16NF06L" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q14" (id 0) (at 5.08 1.27 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "STP16NF06L" (id 1) (at 7.62 -7.62 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 6.35 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://media.digikey.com/pdf/Data%20Sheets/Fairchild%20PDFs/BUZ11.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "N-Channel Power MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "30A Id, 50V Vds, N-Channel Power MOSFET, TO-220" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO?220*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "STP16NF06L_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "STP16NF06L_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 127 123.19) (diameter 0) (color 0 0 0 0)
(uuid 3389d562-590e-4ceb-8086-574b96735432)
)
(junction (at 127 104.14) (diameter 0) (color 0 0 0 0)
(uuid 934813c3-61f8-425f-95ad-680c3940b29a)
)
(junction (at 105.41 115.57) (diameter 0) (color 0 0 0 0)
(uuid 97c6be23-3eff-4bb8-8624-1c012d287681)
)
(junction (at 95.25 115.57) (diameter 0) (color 0 0 0 0)
(uuid e2ed5d34-ceac-4f65-86fd-68620007dae9)
)
(wire (pts (xy 142.24 104.14) (xy 142.24 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10dc4653-c702-4230-867b-4bbf44a74dec)
)
(wire (pts (xy 127 104.14) (xy 91.44 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f4963db-ed48-4895-9de8-c231ebc7dccd)
)
(wire (pts (xy 127 123.19) (xy 127 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 326ad5ff-7636-443a-8c38-dbcf18f36bec)
)
(wire (pts (xy 86.36 118.11) (xy 105.41 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35c0bace-4216-4397-bde1-d7d545b65bf0)
)
(wire (pts (xy 127 104.14) (xy 142.24 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45a6b539-04aa-4b45-a55e-ea80e49530e9)
)
(wire (pts (xy 172.72 123.19) (xy 152.4 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 560c648f-884f-4cb0-b015-fd7f3c2b0230)
)
(wire (pts (xy 120.65 110.49) (xy 120.65 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 810a0c48-9f51-4ad7-8454-c5ff9b1ff929)
)
(wire (pts (xy 154.94 104.14) (xy 172.72 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94f54003-88e0-45e5-a63c-f6228a60dbb8)
)
(wire (pts (xy 86.36 115.57) (xy 95.25 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 983d823f-a26a-4c8a-ae36-40bbf739df7c)
)
(wire (pts (xy 154.94 107.95) (xy 154.94 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a04e0341-0cd5-4b91-829a-22d9fb801135)
)
(wire (pts (xy 172.72 118.11) (xy 175.26 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a965586b-a685-4d47-9975-8c6e8e2e0d21)
)
(wire (pts (xy 91.44 113.03) (xy 86.36 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa0b603b-c859-478b-b725-9bab8e7b89f7)
)
(wire (pts (xy 95.25 115.57) (xy 96.52 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa42e99c-9315-4090-ab60-d708113b2474)
)
(wire (pts (xy 113.03 110.49) (xy 120.65 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9a634e5-b02e-4f5b-9c05-d72e5e558a6b)
)
(wire (pts (xy 172.72 115.57) (xy 175.26 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9ebb0e9-e039-4750-b3f8-75ceca27b44f)
)
(wire (pts (xy 172.72 104.14) (xy 172.72 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bff72bda-d9bf-4cca-81d6-8404b89274e2)
)
(wire (pts (xy 91.44 104.14) (xy 91.44 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6f7c148-2964-4f94-b118-694029e1dcdd)
)
(wire (pts (xy 172.72 118.11) (xy 172.72 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca5d98a7-fe36-47a8-8464-f3187937e755)
)
(wire (pts (xy 113.03 120.65) (xy 95.25 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce6ff9b8-37a5-471a-868f-026e7b574cc3)
)
(wire (pts (xy 95.25 115.57) (xy 95.25 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfdafbe9-0f89-424e-bcb6-ff7ce033678c)
)
(wire (pts (xy 105.41 115.57) (xy 105.41 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d533868b-d95d-446e-8f43-d6b902fbff67)
)
(wire (pts (xy 127 123.19) (xy 142.24 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5e0399e-6ba6-4b9d-8910-3cc1d86b88b0)
)
(wire (pts (xy 120.65 123.19) (xy 127 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daef4ca3-d5b3-488e-82f2-2514e47afc68)
)
(wire (pts (xy 127 104.14) (xy 127 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcf1b32b-6b30-482e-b412-a3a53f4570ca)
)
(wire (pts (xy 104.14 115.57) (xy 105.41 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecf858b8-f324-4688-b52d-e53943601f57)
)
(hierarchical_label "Role" (shape bidirectional) (at 175.26 118.11 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3cd62bef-586b-4354-a0d8-b45f0b86f8d4)
)
(hierarchical_label "DI" (shape input) (at 86.36 118.11 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8338e846-812b-41c6-ad83-c397e10d62a8)
)
(hierarchical_label "Electrode" (shape bidirectional) (at 175.26 115.57 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b7b0924b-a534-453f-b03b-3088a452d2d5)
)
(hierarchical_label "VCC" (shape passive) (at 86.36 113.03 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ec53b93c-c93c-4a00-b315-00a9db4c857c)
)
(hierarchical_label "GND" (shape passive) (at 86.36 115.57 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fcdae4f4-bcbc-432a-b7d5-ee4bdd3d504f)
)
(symbol (lib_id "Diode:1N4007") (at 127 115.57 270)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000062873f4c)
(property "Reference" "D16" (id 0) (at 129.032 114.4016 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N_E4007" (id 1) (at 129.032 116.713 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 122.555 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.vishay.com/docs/88503/1n4001.pdf" (id 3) (at 127 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d4d60430-37a5-44a1-ac53-6d8ffb499155))
(pin "2" (uuid 54ee202e-cdd5-45bd-b291-2bd8ea7e4297))
)
(symbol (lib_id "relay_card_single:G5LE-1-VD") (at 147.32 115.57 0)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006298272a)
(property "Reference" "K16" (id 0) (at 158.242 114.4016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "G5LE-1-VD" (id 1) (at 158.242 116.713 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "relay:Relay_SPDT_Omron-G5LE-1-VD" (id 2) (at 158.75 116.84 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Datasheet" "http://www.omron.com/ecb/products/pdf/en-g5le.pdf" (id 3) (at 147.32 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ref.Farnell" "2076257" (id 4) (at 147.32 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c8b8283d-bfdb-49dc-828e-9079db181f37))
(pin "2" (uuid c8affa31-4354-442c-a516-070537a1bbb4))
(pin "3" (uuid 88b22c21-0f53-4f60-bdd9-250c96e2bd7d))
(pin "5" (uuid c7164db3-607d-4cb1-b7b5-7baad044a67b))
)
(symbol (lib_id "relay_card_single:STP16NF06L") (at 110.49 115.57 0)
(in_bom yes) (on_board yes)
(uuid 0d5b1dcb-44ac-4646-844a-7d555f2329f4)
(property "Reference" "Q16" (id 0) (at 115.57 114.3 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "STP16NF06L" (id 1) (at 118.11 123.19 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 116.84 117.475 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://media.digikey.com/pdf/Data%20Sheets/Fairchild%20PDFs/BUZ11.pdf" (id 3) (at 110.49 115.57 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 4ebb33f7-f7bc-402f-9864-c7cadf957569))
(pin "2" (uuid 8b2722b6-f794-44a0-a904-bd4c7c810547))
(pin "3" (uuid 743cc977-528f-4393-9869-57d2aff879dc))
)
(symbol (lib_id "Device:R") (at 100.33 115.57 270)
(in_bom yes) (on_board yes)
(uuid b0dfdad7-446c-4b71-81ec-cc002ef56cce)
(property "Reference" "R16" (id 0) (at 100.33 110.3122 90))
(property "Value" "100k" (id 1) (at 100.33 112.6236 90))
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal" (id 2) (at 100.33 113.792 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 100.33 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b1d49efd-ed53-4c01-a670-17c0b8c4a9be))
(pin "2" (uuid d2b3b8dd-dc6f-47be-a7c8-558a0ed45381))
)
(sheet_instances
(path "/" (page "1"))
)
(symbol_instances
(path "/00000000-0000-0000-0000-000062873f4c"
(reference "D5") (unit 1) (value "1N4007") (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal")
)
(path "/00000000-0000-0000-0000-00006298272a"
(reference "K5") (unit 1) (value "G5LE-1-VD") (footprint "KIGFA:Relay_SPDT_Omron-G5LE-1-VD")
)
(path "/0d5b1dcb-44ac-4646-844a-7d555f2329f4"
(reference "Q5") (unit 1) (value "STP16NF06L") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical")
)
(path "/b0dfdad7-446c-4b71-81ec-cc002ef56cce"
(reference "R5") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal")
)
)
)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment