mirror of
https://github.com/paeber/led-driver-starfish.git
synced 2026-01-18 06:22:02 +01:00
Add hardware design to github
This commit is contained in:
parent
6e6db88d02
commit
3275d78726
9 changed files with 34022 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -27,3 +27,4 @@ fp-info-cache
|
|||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
starfish/export/*
|
||||
|
|
|
|||
118
starfish/bom.ini
Normal file
118
starfish/bom.ini
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
[BOM_OPTIONS]
|
||||
; General BoM options here
|
||||
; If 'ignore_dnf' option is set to 1, rows that are not to be fitted on the PCB will not be written to the BoM file
|
||||
ignore_dnf = 1
|
||||
; If 'html_generate_dnf' option is set to 1, also generate a list of components not fitted on the PCB (HTML only)
|
||||
html_generate_dnf = 1
|
||||
; If 'use_alt' option is set to 1, grouped references will be printed in the alternate compressed style eg: R1-R7,R18
|
||||
use_alt = 0
|
||||
; If 'number_rows' option is set to 1, each row in the BoM will be prepended with an incrementing row number
|
||||
number_rows = 1
|
||||
; If 'group_connectors' option is set to 1, connectors with the same footprints will be grouped together, independent of the name of the connector
|
||||
group_connectors = 1
|
||||
; If 'test_regex' option is set to 1, each component group will be tested against a number of regular-expressions (specified, per column, below). If any matches are found, the row is ignored in the output file
|
||||
test_regex = 1
|
||||
; If 'merge_blank_fields' option is set to 1, component groups with blank fields will be merged into the most compatible group, where possible
|
||||
merge_blank_fields = 1
|
||||
; Specify output file name format, %O is the defined output name, %v is the version, %V is the variant name which will be ammended according to 'variant_file_name_format'.
|
||||
output_file_name = %O_bom_%v%V
|
||||
; Specify the variant file name format, this is a unique field as the variant is not always used/specified. When it is unused you will want to strip all of this.
|
||||
variant_file_name_format = _(%V)
|
||||
; Field name used to determine if a particular part is to be fitted
|
||||
fit_field = Config
|
||||
; Complex variant processing (disabled by default)
|
||||
complex_variant = False
|
||||
; Character used to separate reference designators in output
|
||||
ref_separator = ' '
|
||||
; Make a backup of the bom before generating the new one, using the following template
|
||||
make_backup = %O.tmp
|
||||
; Put the datasheet as a link for the following field
|
||||
datasheet_as_link = False
|
||||
; Default number of boards to produce if none given on CLI with -n
|
||||
number_boards = 1
|
||||
; Default PCB variant if none given on CLI with -r
|
||||
board_variant = ['default']
|
||||
; Whether to hide headers from output file
|
||||
hide_headers = False
|
||||
; Whether to hide PCB info from output file
|
||||
hide_pcb_info = False
|
||||
; Interpret as a Digikey P/N and link the following field
|
||||
digikey_link = False
|
||||
; Interpret as a MOUSER P/N and link the following field
|
||||
mouser_link = False
|
||||
|
||||
[IGNORE_COLUMNS]
|
||||
; Any column heading that appears here will be excluded from the Generated BoM
|
||||
; Titles are case-insensitive
|
||||
part lib
|
||||
footprint lib
|
||||
sheetpath
|
||||
|
||||
[COLUMN_ORDER]
|
||||
; Columns will apear in the order they are listed here
|
||||
; Titles are case-insensitive
|
||||
Description
|
||||
Part
|
||||
Part Lib
|
||||
References
|
||||
Value
|
||||
Footprint
|
||||
Footprint Lib
|
||||
Sheetpath
|
||||
Quantity Per PCB
|
||||
Build Quantity
|
||||
Datasheet
|
||||
|
||||
[GROUP_FIELDS]
|
||||
; List of fields used for sorting individual components into groups
|
||||
; Components which match (comparing *all* fields) will be grouped together
|
||||
; Field names are case-insensitive
|
||||
Part
|
||||
Part Lib
|
||||
Value
|
||||
Footprint
|
||||
Footprint Lib
|
||||
|
||||
[COMPONENT_ALIASES]
|
||||
; A series of values which are considered to be equivalent for the part name
|
||||
; Each line represents a list of equivalent component name values separated by a tab character
|
||||
; e.g. 'c c_small cap' will ensure the equivalent capacitor symbols can be grouped together
|
||||
; Aliases are case-insensitive
|
||||
c c_small cap capacitor
|
||||
r r_small res resistor
|
||||
sw switch
|
||||
l l_small inductor
|
||||
zener zenersmall
|
||||
d diode d_small
|
||||
|
||||
[JOIN]
|
||||
; A list of rules to join the content of fields
|
||||
; Each line is a rule, the first name is the field that will receive the data
|
||||
; from the other fields
|
||||
; Use tab (ASCII 9) as separator
|
||||
; Field names are case sensitive
|
||||
|
||||
[REGEX_INCLUDE]
|
||||
; A series of regular expressions used to include parts in the BoM
|
||||
; If there are any regex defined here, only components that match against ANY of them will be included in the BOM
|
||||
; Column names are case-insensitive
|
||||
; Format is: "[ColumName] [Regex]" (separated by a tab)
|
||||
|
||||
[COLUMN_RENAME]
|
||||
; A list of columns to be renamed
|
||||
; Format is: "[ColumName] [NewName]" (separated by a tab)
|
||||
|
||||
[REGEX_EXCLUDE]
|
||||
; A series of regular expressions used to exclude parts from the BoM
|
||||
; If a component matches ANY of these, it will be excluded from the BoM
|
||||
; Column names are case-insensitive
|
||||
; Format is: "[ColumName] [Regex]" (separated by a tab
|
||||
References ^TP[0-9]*
|
||||
References ^FID
|
||||
Part mount.*hole
|
||||
Part solder.*bridge
|
||||
Part test.*point
|
||||
Footprint test.*point
|
||||
Footprint mount.*hole
|
||||
Footprint fiducial
|
||||
|
||||
3
starfish/fp-lib-table
Normal file
3
starfish/fp-lib-table
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(fp_lib_table
|
||||
(lib (name "starfish")(type "KiCad")(uri "${KIPRJMOD}/parts/starfish.pretty")(options "")(descr ""))
|
||||
)
|
||||
974
starfish/led-driver.kicad_sch
Normal file
974
starfish/led-driver.kicad_sch
Normal file
|
|
@ -0,0 +1,974 @@
|
|||
(kicad_sch (version 20211123) (generator eeschema)
|
||||
|
||||
(uuid ff59e751-4b3a-4b6e-94c8-9c7e08c781d1)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(title_block
|
||||
(title "LED Driver")
|
||||
(date "2023-01-30")
|
||||
(rev "A")
|
||||
(company "PaEber Electronics")
|
||||
(comment 1 "ESP based LED driver for ESPHome")
|
||||
)
|
||||
|
||||
(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 "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "JP" (id 0) (at 0 2.032 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(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" "solder jumper SPST" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "SolderJumper_2_Open_0_1"
|
||||
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type outline))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -0.254 1.016)
|
||||
(xy -0.254 -1.016)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.254 1.016)
|
||||
(xy 0.254 -1.016)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type outline))
|
||||
)
|
||||
)
|
||||
(symbol "SolderJumper_2_Open_1_1"
|
||||
(pin passive line (at -3.81 0 0) (length 2.54)
|
||||
(name "A" (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 "B" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "paeber:PMV40UN2R" (pin_names hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "Q58" (id 0) (at 6.35 1.2701 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 6.35 -1.2699 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "N-Channel MOSFET, Logic-Level" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "30V Vds, 4.4A Id, N-Channel MOSFET, SOT-23, Logic-Level" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "SOT?23*" (id 7) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "PMV40UN2R_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 "PMV40UN2R_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 90) (length 2.54)
|
||||
(name "S" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (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 "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(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" "power-flag" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "GND_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 -1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy 0 -2.54)
|
||||
(xy -1.27 -1.27)
|
||||
(xy 0 -1.27)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "GND_1_1"
|
||||
(pin power_in line (at 0 0 270) (length 0) hide
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 52.07 29.21) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 2fa2fa24-81c0-4c8c-94b7-17478e24b4ec)
|
||||
)
|
||||
(junction (at 63.5 41.91) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 33d51341-ce00-49c8-845a-236db0e9d1ad)
|
||||
)
|
||||
(junction (at 129.54 99.06) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 6f3edb98-1715-48c7-a668-5fe6c43535eb)
|
||||
)
|
||||
(junction (at 63.5 77.47) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 7280a51e-a1d5-48e5-bf7b-732339e64cf1)
|
||||
)
|
||||
(junction (at 129.54 77.47) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 8aee9fe8-ff1b-417d-a55d-2e0b87a752bf)
|
||||
)
|
||||
(junction (at 52.07 100.33) (diameter 0) (color 0 0 0 0)
|
||||
(uuid a2512507-d163-4c18-ae14-b161c87ee1be)
|
||||
)
|
||||
(junction (at 52.07 64.77) (diameter 0) (color 0 0 0 0)
|
||||
(uuid b299d289-92f2-4191-a211-d24eca537592)
|
||||
)
|
||||
(junction (at 116.84 40.64) (diameter 0) (color 0 0 0 0)
|
||||
(uuid b694df4d-f655-4962-a9bc-2dab77194801)
|
||||
)
|
||||
(junction (at 63.5 113.03) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f6d7b244-8151-4162-aa2b-38925d826264)
|
||||
)
|
||||
(junction (at 118.11 86.36) (diameter 0) (color 0 0 0 0)
|
||||
(uuid fd324592-a175-4e49-8932-abe6e4121419)
|
||||
)
|
||||
(junction (at 128.27 53.34) (diameter 0) (color 0 0 0 0)
|
||||
(uuid fee56980-6089-490b-bd9f-26f560a4a907)
|
||||
)
|
||||
|
||||
(wire (pts (xy 52.07 100.33) (xy 52.07 102.87))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 032b5f24-0912-4148-ab46-1af838809a69)
|
||||
)
|
||||
(wire (pts (xy 116.84 40.64) (xy 120.65 40.64))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 065a8370-ea38-494d-af36-d93c1b4ff77f)
|
||||
)
|
||||
(wire (pts (xy 46.99 64.77) (xy 52.07 64.77))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 11416fa1-339a-4adf-a409-b8b356bf7484)
|
||||
)
|
||||
(wire (pts (xy 30.48 64.77) (xy 39.37 64.77))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1181fae9-7bd6-4e92-adbb-d45818f37cde)
|
||||
)
|
||||
(wire (pts (xy 52.07 74.93) (xy 52.07 77.47))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1700773f-d005-4c0c-ba2f-3ea0bd25fa6a)
|
||||
)
|
||||
(wire (pts (xy 46.99 29.21) (xy 52.07 29.21))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1a686814-56b0-4e34-ba53-78c71efaaddd)
|
||||
)
|
||||
(wire (pts (xy 113.03 86.36) (xy 118.11 86.36))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1d6b1a47-f459-4b43-b488-dac8eda1c4a9)
|
||||
)
|
||||
(wire (pts (xy 95.25 40.64) (xy 104.14 40.64))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 20991172-ce2e-4a08-b86a-c9b93f9ed36d)
|
||||
)
|
||||
(wire (pts (xy 116.84 50.8) (xy 116.84 53.34))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 23a3e569-581a-4f3f-8723-485e7fa29f70)
|
||||
)
|
||||
(wire (pts (xy 52.07 29.21) (xy 52.07 31.75))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 2ba87d36-20f9-4e30-989c-076f592f55e5)
|
||||
)
|
||||
(wire (pts (xy 128.27 53.34) (xy 128.27 45.72))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 2bcb4088-d127-4d59-875f-eaafed086b38)
|
||||
)
|
||||
(wire (pts (xy 118.11 77.47) (xy 119.38 77.47))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 2e71e03e-ac6e-4806-8e6a-41de419b7f54)
|
||||
)
|
||||
(wire (pts (xy 128.27 31.75) (xy 128.27 35.56))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 35ceb97d-533f-4ed7-91ba-e2b6f976d0d7)
|
||||
)
|
||||
(wire (pts (xy 116.84 53.34) (xy 128.27 53.34))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 35ec1d93-e80f-4034-a745-75321eadfccc)
|
||||
)
|
||||
(wire (pts (xy 128.27 53.34) (xy 128.27 55.88))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 3ae75d87-6fda-49f7-a21c-8d27e4e9240c)
|
||||
)
|
||||
(wire (pts (xy 52.07 110.49) (xy 52.07 113.03))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 3e9cc740-93bb-492e-b017-2913c341f5bb)
|
||||
)
|
||||
(wire (pts (xy 135.89 77.47) (xy 129.54 77.47))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 419003fc-ccf1-40a7-866a-9a5bf684ad6f)
|
||||
)
|
||||
(wire (pts (xy 63.5 91.44) (xy 63.5 95.25))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 424a171d-a5af-422c-a8f3-826864eef69e)
|
||||
)
|
||||
(wire (pts (xy 63.5 113.03) (xy 63.5 105.41))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 5475a724-edbe-455e-9b15-62c3180d2809)
|
||||
)
|
||||
(wire (pts (xy 69.85 20.32) (xy 63.5 20.32))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 5558e675-b82b-4b5c-b23f-ccb363d24284)
|
||||
)
|
||||
(wire (pts (xy 69.85 55.88) (xy 63.5 55.88))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 55a4f4b6-aa06-4de0-b3ad-5fe5e0441532)
|
||||
)
|
||||
(wire (pts (xy 52.07 64.77) (xy 55.88 64.77))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 61189fc3-e790-4f63-b8c6-cb91c3d6338e)
|
||||
)
|
||||
(wire (pts (xy 63.5 55.88) (xy 63.5 59.69))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 612c0a4b-c4a8-4f1a-9227-e4bcd1b6c6e5)
|
||||
)
|
||||
(wire (pts (xy 96.52 86.36) (xy 105.41 86.36))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 63fff1df-7156-477d-a945-854931816c32)
|
||||
)
|
||||
(wire (pts (xy 111.76 40.64) (xy 116.84 40.64))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 66b067b4-06dc-4a16-b511-06bb5dd6c4a1)
|
||||
)
|
||||
(wire (pts (xy 69.85 91.44) (xy 63.5 91.44))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 6bc28a04-c1a3-4ce5-ab2f-0d6e934196d5)
|
||||
)
|
||||
(wire (pts (xy 52.07 39.37) (xy 52.07 41.91))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 86eecae2-ee98-41e8-b184-56dfcdb7456d)
|
||||
)
|
||||
(wire (pts (xy 129.54 99.06) (xy 129.54 101.6))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 96abac3c-9fd8-4222-a372-85f062f5c235)
|
||||
)
|
||||
(wire (pts (xy 118.11 86.36) (xy 118.11 88.9))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 970258cc-5ea9-479e-9395-90a83863a077)
|
||||
)
|
||||
(wire (pts (xy 52.07 77.47) (xy 63.5 77.47))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 9c28d2f6-d440-4356-b406-cb29488acc19)
|
||||
)
|
||||
(wire (pts (xy 63.5 20.32) (xy 63.5 24.13))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 9d976b86-e96b-49db-9f50-04d3044e5fa6)
|
||||
)
|
||||
(wire (pts (xy 63.5 41.91) (xy 63.5 44.45))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid a48d7171-0e31-4a80-be1f-e76e86d6cec4)
|
||||
)
|
||||
(wire (pts (xy 63.5 77.47) (xy 63.5 69.85))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid a4dd5df7-07c9-4c02-b3cb-a9d29c8aac68)
|
||||
)
|
||||
(wire (pts (xy 63.5 41.91) (xy 63.5 34.29))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid aa781e74-3da0-42fb-9cd1-008ef02d69d7)
|
||||
)
|
||||
(wire (pts (xy 118.11 77.47) (xy 118.11 86.36))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid aac1e47d-1483-40e3-9143-a581624bb5a7)
|
||||
)
|
||||
(wire (pts (xy 30.48 100.33) (xy 39.37 100.33))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ad888a6c-b88f-4081-8221-80fa5e593739)
|
||||
)
|
||||
(wire (pts (xy 52.07 113.03) (xy 63.5 113.03))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid b6a7520b-ae5b-406b-ad56-4430840d9e99)
|
||||
)
|
||||
(wire (pts (xy 63.5 77.47) (xy 63.5 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid bdbf1c50-b7db-4243-9ad8-4acb162095ef)
|
||||
)
|
||||
(wire (pts (xy 116.84 40.64) (xy 116.84 43.18))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid be453ebf-dba4-4fc2-8ce7-a01ac9d2b170)
|
||||
)
|
||||
(wire (pts (xy 129.54 99.06) (xy 129.54 91.44))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid cb7b19d7-3366-48ad-b54f-5693c7439a29)
|
||||
)
|
||||
(wire (pts (xy 52.07 29.21) (xy 55.88 29.21))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ccc963d5-fae2-4d5f-b0c3-5055843dea49)
|
||||
)
|
||||
(wire (pts (xy 134.62 31.75) (xy 128.27 31.75))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ce666edb-ab8e-4cf6-8174-01a2c4970db7)
|
||||
)
|
||||
(wire (pts (xy 52.07 41.91) (xy 63.5 41.91))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid d1f41d82-5bd9-4b9f-aa68-1b60a5b381e5)
|
||||
)
|
||||
(wire (pts (xy 30.48 29.21) (xy 39.37 29.21))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid d39bed48-d961-43ba-9238-62ef4c152fe0)
|
||||
)
|
||||
(wire (pts (xy 127 77.47) (xy 129.54 77.47))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid daf0e7f8-d817-495f-a2cb-c5fe734b03ac)
|
||||
)
|
||||
(wire (pts (xy 63.5 113.03) (xy 63.5 115.57))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid dbee98a2-db10-4bbc-946f-ac37ad8325a6)
|
||||
)
|
||||
(wire (pts (xy 118.11 96.52) (xy 118.11 99.06))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid dce4f8bd-d395-4957-9fde-7e97573ce5ec)
|
||||
)
|
||||
(wire (pts (xy 118.11 99.06) (xy 129.54 99.06))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ebe9c05e-a2b8-4d49-b6d6-824d80dc5689)
|
||||
)
|
||||
(wire (pts (xy 52.07 64.77) (xy 52.07 67.31))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f2470842-0dc0-44c8-9bc1-0faabf333206)
|
||||
)
|
||||
(wire (pts (xy 52.07 100.33) (xy 55.88 100.33))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f3a2990b-1876-4fea-a316-ecf17c5f5007)
|
||||
)
|
||||
(wire (pts (xy 46.99 100.33) (xy 52.07 100.33))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f4dfa7b3-4b5e-4990-80f8-5d572fcb0372)
|
||||
)
|
||||
(wire (pts (xy 118.11 86.36) (xy 121.92 86.36))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f78eb60c-90ef-4081-8bcd-08f0f52314b4)
|
||||
)
|
||||
(wire (pts (xy 129.54 77.47) (xy 129.54 81.28))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid f9ed6492-07c4-474e-bae2-f5b9f68a8b73)
|
||||
)
|
||||
|
||||
(hierarchical_label "CH2" (shape input) (at 30.48 64.77 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 057d0a8b-4168-4f65-b24c-d966e3b14f01)
|
||||
)
|
||||
(hierarchical_label "PWM5" (shape output) (at 135.89 77.47 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 31818b4d-0522-443e-9048-3327d3db6d02)
|
||||
)
|
||||
(hierarchical_label "CH3" (shape input) (at 30.48 100.33 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 7b65781d-febf-4de1-aa6b-6d31381b0541)
|
||||
)
|
||||
(hierarchical_label "PWM3" (shape output) (at 69.85 91.44 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 85e260f7-3cce-462e-a98b-ec1720f827ef)
|
||||
)
|
||||
(hierarchical_label "PWM4" (shape output) (at 134.62 31.75 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 98ceb56b-ede7-4be5-87bf-2f3c609d2c56)
|
||||
)
|
||||
(hierarchical_label "CH4" (shape input) (at 95.25 40.64 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid cbb76c5b-d33b-4c9f-a9e8-169db24d20eb)
|
||||
)
|
||||
(hierarchical_label "PWM2" (shape output) (at 69.85 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid cc0d4dfb-802a-4503-b015-d158c909e8db)
|
||||
)
|
||||
(hierarchical_label "CH5" (shape input) (at 96.52 86.36 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid d251cb5a-74a0-41f8-8ed7-883630834f40)
|
||||
)
|
||||
(hierarchical_label "CH1" (shape input) (at 30.48 29.21 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid dc3bbcc4-ee94-4c04-9a63-029f1762b65d)
|
||||
)
|
||||
(hierarchical_label "PWM1" (shape output) (at 69.85 20.32 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid f60f3cb7-bc99-4e3c-afbe-1f75c31d4c26)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 63.5 44.45 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 00875b06-cd78-4e87-9af1-797b1a27fd95)
|
||||
(property "Reference" "#PWR0113" (id 0) (at 63.5 50.8 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 63.5 49.53 0))
|
||||
(property "Footprint" "" (id 2) (at 63.5 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 63.5 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9528510c-a2b9-43e1-a934-17ec9beb9427))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 63.5 80.01 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 07faaccf-887b-42e8-9967-d91bc7ecf6af)
|
||||
(property "Reference" "#PWR0114" (id 0) (at 63.5 86.36 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 63.5 85.09 0))
|
||||
(property "Footprint" "" (id 2) (at 63.5 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 63.5 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid ed529ccc-7b90-4d7b-9be9-368bc9afc38e))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Jumper:SolderJumper_2_Open") (at 123.19 77.47 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 2225601c-daae-46cb-9467-08f7096b4a9f)
|
||||
(property "Reference" "JP58" (id 0) (at 123.19 71.12 0))
|
||||
(property "Value" "CH5" (id 1) (at 123.19 73.66 0))
|
||||
(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (id 2) (at 123.19 77.47 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 123.19 77.47 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 918959b8-9288-4c0c-ae06-910b676ebb49))
|
||||
(pin "2" (uuid 501d4bce-cdc1-4f22-a879-fa6401679036))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 43.18 64.77 90) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 22f25854-acb3-401f-a6b0-218fab67ea05)
|
||||
(property "Reference" "R52" (id 0) (at 39.37 62.23 90))
|
||||
(property "Value" "330" (id 1) (at 45.72 62.23 90))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 62.992 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 43.18 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 3a2a2a91-635a-4761-a20c-61967db16af2))
|
||||
(pin "2" (uuid e5b5a6c9-a6d7-4316-8e46-126bdfe9896a))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 107.95 40.64 90) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 295dfef8-6b3f-4b25-a2aa-1a248baf4995)
|
||||
(property "Reference" "R56" (id 0) (at 104.14 38.1 90))
|
||||
(property "Value" "330" (id 1) (at 110.49 38.1 90))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 107.95 38.862 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 107.95 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 91165aee-aa4c-4398-8fc5-bdc3021aa153))
|
||||
(pin "2" (uuid bec072ba-7879-420e-8c13-7cc749f32246))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 128.27 55.88 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 3fd7f4ff-3064-4ff0-b286-11cd1e4ed3d9)
|
||||
(property "Reference" "#PWR0112" (id 0) (at 128.27 62.23 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 128.27 60.96 0))
|
||||
(property "Footprint" "" (id 2) (at 128.27 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 128.27 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 6f994123-83c2-4b6f-a9c1-4c73c329ea7c))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 129.54 101.6 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 47ebcdbb-6c5f-4f95-9a04-b33539ec78a3)
|
||||
(property "Reference" "#PWR0105" (id 0) (at 129.54 107.95 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 129.54 106.68 0))
|
||||
(property "Footprint" "" (id 2) (at 129.54 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 129.54 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid c16d2728-9e70-463d-b896-ad309af4819c))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 43.18 29.21 90) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 57b89e06-bc96-4c93-82c5-04661f3f0673)
|
||||
(property "Reference" "R50" (id 0) (at 39.37 26.67 90))
|
||||
(property "Value" "330" (id 1) (at 45.72 26.67 90))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 27.432 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 43.18 29.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7c6be54e-6bb0-44ee-a539-6cc4a7cded0e))
|
||||
(pin "2" (uuid 947ff585-70e0-4a86-9bf9-693fbe53a0b7))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 52.07 35.56 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 884375f2-0fcc-4fc4-a6b9-5f5ee37a20ee)
|
||||
(property "Reference" "R51" (id 0) (at 55.88 34.29 0))
|
||||
(property "Value" "10k" (id 1) (at 55.88 36.83 0))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 50.292 35.56 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 52.07 35.56 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5f72b7bc-9325-4f9a-9902-3e134379e0a9))
|
||||
(pin "2" (uuid c5822026-490c-4395-b2ca-b0d18b334a0c))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 52.07 71.12 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 885a021f-a2c5-462d-ac7b-5e95109a74cc)
|
||||
(property "Reference" "R53" (id 0) (at 55.88 69.85 0))
|
||||
(property "Value" "10k" (id 1) (at 55.88 72.39 0))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 50.292 71.12 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 52.07 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid d510446f-4aae-4d2f-ad65-d470dde75abe))
|
||||
(pin "2" (uuid 5125c4c2-00db-498a-9337-1cb93990d4da))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:PMV40UN2R") (at 60.96 29.21 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 8a06685c-e456-4d6f-b8d7-ff2c4ba97c7d)
|
||||
(property "Reference" "Q50" (id 0) (at 67.31 27.9399 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 67.31 30.4799 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 66.04 31.115 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 60.96 29.21 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "LCSC" "C130869" (id 4) (at 60.96 29.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 5) (at 60.96 29.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 0e93e017-1043-4d34-82ec-f47c96bace3a))
|
||||
(pin "2" (uuid bbf033b0-e719-4d9a-8522-77e76e69a1c3))
|
||||
(pin "3" (uuid b3bd4621-9b57-4701-a963-355e4e4b12c8))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 118.11 92.71 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 90a9d4d2-6841-4e20-8e8e-781c59b0cdec)
|
||||
(property "Reference" "R59" (id 0) (at 121.92 91.44 0))
|
||||
(property "Value" "10k" (id 1) (at 121.92 93.98 0))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 116.332 92.71 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 118.11 92.71 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 682c84f8-5108-4965-9999-c6b0912df643))
|
||||
(pin "2" (uuid 81c41316-94ce-4046-a690-93db7e759c32))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:PMV40UN2R") (at 60.96 64.77 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 910b5ddc-f258-46c8-81bf-1d4327317763)
|
||||
(property "Reference" "Q52" (id 0) (at 67.31 63.4999 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 67.31 66.0399 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 66.04 66.675 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 60.96 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "LCSC" "C130869" (id 4) (at 60.96 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 5) (at 60.96 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 56f000bc-00bb-47b4-8435-fb8465e6262e))
|
||||
(pin "2" (uuid da256891-5f31-43e9-9659-546a3ab12dd1))
|
||||
(pin "3" (uuid 9a08a223-d952-40f0-88d2-cc600654f8da))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:PMV40UN2R") (at 127 86.36 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 98b7afd7-1165-4212-b5b1-3f3c925a06fb)
|
||||
(property "Reference" "Q58" (id 0) (at 133.35 85.0899 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 133.35 87.6299 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 132.08 88.265 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 127 86.36 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 4) (at 127 86.36 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 85c64f6f-61ca-4bf1-9a05-7fdae90afb0f))
|
||||
(pin "2" (uuid f0aa63c3-2d26-4b7e-baa7-7a517fa0de4c))
|
||||
(pin "3" (uuid 31a605a2-ca5f-4b63-b5fa-40e0dd296271))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:PMV40UN2R") (at 60.96 100.33 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid b7d43a5b-7801-48be-ab0a-2b4bcb2258ca)
|
||||
(property "Reference" "Q54" (id 0) (at 67.31 99.0599 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 67.31 101.5999 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 66.04 102.235 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 60.96 100.33 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "LCSC" "C130869" (id 4) (at 60.96 100.33 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 5) (at 60.96 100.33 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 4908abc7-01f9-40b9-9c66-611a844723b0))
|
||||
(pin "2" (uuid c468f76f-211f-4e60-a5d7-c0d9d5f35842))
|
||||
(pin "3" (uuid 64139fc0-e12b-4c64-9734-737d2f638fd1))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 63.5 115.57 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid beb76205-143e-404e-843d-df1d89ff2a74)
|
||||
(property "Reference" "#PWR0115" (id 0) (at 63.5 121.92 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 63.5 120.65 0))
|
||||
(property "Footprint" "" (id 2) (at 63.5 115.57 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 63.5 115.57 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 3d5f2555-04ec-4ae4-9abd-d6b882ebc66f))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 43.18 100.33 90) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid c69e836b-a45e-40dc-a0df-16a71c3d8e7b)
|
||||
(property "Reference" "R54" (id 0) (at 39.37 97.79 90))
|
||||
(property "Value" "330" (id 1) (at 45.72 97.79 90))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 98.552 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 43.18 100.33 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid dedf6a21-33b5-4691-8bb8-7cbc0a39fa2d))
|
||||
(pin "2" (uuid 80a42e0e-2198-4183-abe3-d4fdb439b785))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:PMV40UN2R") (at 125.73 40.64 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid cb2e5213-a903-431b-9341-eaa1bfc977a4)
|
||||
(property "Reference" "Q56" (id 0) (at 132.08 39.3699 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "PMV40UN2R" (id 1) (at 132.08 41.9099 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 130.81 42.545 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/916/PMV40UN2-2937091.pdf" (id 3) (at 125.73 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "LCSC" "C130869" (id 4) (at 125.73 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "771-PMV40UN2R" (id 5) (at 125.73 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid db401f90-d2d8-4e6e-bd8b-4ddb1e7fef2e))
|
||||
(pin "2" (uuid d4ecacc7-ea0e-4740-b9ff-133f4681dba1))
|
||||
(pin "3" (uuid 1f6db0a6-073f-4930-80b3-edc86f0033c2))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 52.07 106.68 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid cd21fa4c-1d4f-4936-a700-71186d2261b0)
|
||||
(property "Reference" "R55" (id 0) (at 55.88 105.41 0))
|
||||
(property "Value" "10k" (id 1) (at 55.88 107.95 0))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 50.292 106.68 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 52.07 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid d1cead3c-698a-4bf0-9e0e-ada5180fd051))
|
||||
(pin "2" (uuid 3a162a3a-f10d-4a23-b997-a49339a4e7f7))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 109.22 86.36 90) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid f242c5a6-c3b5-40b2-9f55-064b6f3e997d)
|
||||
(property "Reference" "R58" (id 0) (at 105.41 83.82 90))
|
||||
(property "Value" "330" (id 1) (at 111.76 83.82 90))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 109.22 84.582 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 109.22 86.36 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 59c670dd-2b3f-4e0c-80b0-b01fee5ab382))
|
||||
(pin "2" (uuid 730888ff-4530-491e-9c9e-a9c3862c2889))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 116.84 46.99 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid fcfb9048-f340-4ad6-81a0-1b794724d25e)
|
||||
(property "Reference" "R57" (id 0) (at 120.65 45.72 0))
|
||||
(property "Value" "10k" (id 1) (at 120.65 48.26 0))
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 115.062 46.99 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 116.84 46.99 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid b95110fe-6c34-4877-9bbf-a9d618e6121e))
|
||||
(pin "2" (uuid 57729590-82f1-4376-a061-1bf1a80431b3))
|
||||
)
|
||||
)
|
||||
912
starfish/power.kicad_sch
Normal file
912
starfish/power.kicad_sch
Normal file
|
|
@ -0,0 +1,912 @@
|
|||
(kicad_sch (version 20211123) (generator eeschema)
|
||||
|
||||
(uuid 1d68b6ce-fd96-4b6c-8cb5-936d7254abd1)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(title_block
|
||||
(title "5V Regulator")
|
||||
(date "2023-01-30")
|
||||
(rev "A")
|
||||
(company "PaEber Electronics")
|
||||
(comment 1 "ESP based LED driver for ESPHome")
|
||||
)
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "TP" (id 0) (at 0 6.858 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 5.08 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "test point" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "TestPoint_0_1"
|
||||
(circle (center 0 3.302) (radius 0.762)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "TestPoint_1_1"
|
||||
(pin passive line (at 0 0 90) (length 2.54)
|
||||
(name "1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
|
||||
(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" "cap capacitor" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "C_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -2.032 -0.762)
|
||||
(xy 2.032 -0.762)
|
||||
)
|
||||
(stroke (width 0.508) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -2.032 0.762)
|
||||
(xy 2.032 0.762)
|
||||
)
|
||||
(stroke (width 0.508) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "C_1_1"
|
||||
(pin passive line (at 0 3.81 270) (length 2.794)
|
||||
(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 2.794)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(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 "paeber:AP62301WU-7" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "U?" (id 0) (at 12.7 7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "AP62301WU-7" (id 1) (at 12.7 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "paeber:TSOT-26" (id 2) (at 21.59 2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/ede98d9c0c870d3f60ace1e8795af033.pdf" (id 3) (at 31.75 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Description" "Switching Voltage Regulators DCDC Conv HV Buck TSOT26 T&R 3K" (id 4) (at 32.385 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Height" "1" (id 5) (at 19.05 -5.08 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser" "621-AP62301WU-7" (id 6) (at 33.02 -6.985 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AP62301WU-7?qs=7MVldsJ5Uaw8ZNNQQbqpmA%3D%3D" (id 7) (at 21.59 -12.7 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Manufacturer_Name" "Diodes Inc." (id 8) (at 21.59 -15.24 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Manufacturer_Part_Number" "AP62301WU-7" (id 9) (at 21.59 -17.78 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "ki_description" "Switching Voltage Regulators DCDC Conv HV Buck TSOT26 T&R 3K" (id 10) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "AP62301WU-7_0_0"
|
||||
(pin passive line (at 12.7 -15.24 90) (length 2.54)
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 22.86 -5.08 180) (length 2.54)
|
||||
(name "SW" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 0 0) (length 2.54)
|
||||
(name "VIN" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 22.86 -10.16 180) (length 2.54)
|
||||
(name "FB" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 -5.08 0) (length 2.54)
|
||||
(name "EN" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 22.86 0 180) (length 2.54)
|
||||
(name "BST" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
(symbol "AP62301WU-7_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 5.08 2.54)
|
||||
(xy 20.32 2.54)
|
||||
(xy 20.32 -12.7)
|
||||
(xy 5.08 -12.7)
|
||||
(xy 5.08 2.54)
|
||||
)
|
||||
(stroke (width 0.254) (type default) (color 0 0 0 0))
|
||||
(fill (type background))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "paeber:L_3u3" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "L?" (id 0) (at 0 6.35 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "L_3u3" (id 1) (at 0 3.81 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "paeber:XAL6030182MEB-HandSolder" (id 2) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/597/xal60xx-270658.pdf" (id 3) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Height" "3.1" (id 4) (at 0 0 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "994-XAL6030-332MEC" (id 5) (at 0 0 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Manufacturer_Part_Number" "XAL6030-332MEC" (id 6) (at 0 0 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "inductor choke coil reactor magnetic" (id 7) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Inductor" (id 8) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 9) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "L_3u3_0_1"
|
||||
(arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "L_3u3_1_1"
|
||||
(pin passive line (at 0 3.81 270) (length 1.27)
|
||||
(name "1" (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 "2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
||||
(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" "power-flag" (id 4) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "GND_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 -1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy 0 -2.54)
|
||||
(xy -1.27 -1.27)
|
||||
(xy 0 -1.27)
|
||||
)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "GND_1_1"
|
||||
(pin power_in line (at 0 0 270) (length 0) hide
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 163.83 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 188bd81e-55cf-4eb8-ac51-32c0165c3b7f)
|
||||
)
|
||||
(junction (at 90.17 60.96) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 1e5e66ba-c1fb-429d-8298-15aaf7561e0e)
|
||||
)
|
||||
(junction (at 127 80.01) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 4b70455a-43b1-4df7-9afe-a0b577ba88a2)
|
||||
)
|
||||
(junction (at 177.8 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 633ef1d6-5811-4caa-b46b-b2c44b20f0ff)
|
||||
)
|
||||
(junction (at 149.86 80.01) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 6a30c802-8cc9-40ef-a454-dc69fc466dc3)
|
||||
)
|
||||
(junction (at 149.86 60.96) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 6c2ea91d-9d21-4f86-b34e-488254f42828)
|
||||
)
|
||||
(junction (at 104.14 72.39) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 6c5c9815-f3e2-4d91-9d67-c04651c16947)
|
||||
)
|
||||
(junction (at 149.86 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 8454cb6b-0849-4c10-be37-c442a713f93e)
|
||||
)
|
||||
(junction (at 104.14 60.96) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 87e9f15d-ead3-4eb3-b376-13ccb17b64e9)
|
||||
)
|
||||
(junction (at 187.96 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 95576a76-91bb-4db4-bcad-45ffa1fb7580)
|
||||
)
|
||||
(junction (at 113.03 60.96) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f3ed6b05-c44f-4a57-837e-a6bc9769f052)
|
||||
)
|
||||
|
||||
(wire (pts (xy 116.84 60.96) (xy 113.03 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 01fdb066-a87f-469c-aedd-c6b50e49b8aa)
|
||||
)
|
||||
(wire (pts (xy 127 80.01) (xy 137.16 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 0822003a-4943-41d2-9c41-77d7bd200eaa)
|
||||
)
|
||||
(wire (pts (xy 163.83 66.04) (xy 177.8 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 0bc4a849-5f93-40a7-8f00-efd98ea94086)
|
||||
)
|
||||
(wire (pts (xy 187.96 74.93) (xy 187.96 82.55))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 102c4f15-f7f0-47b3-b463-90324a621426)
|
||||
)
|
||||
(wire (pts (xy 113.03 60.96) (xy 104.14 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1699c587-754b-4a3a-b46e-2ad83e8e2884)
|
||||
)
|
||||
(wire (pts (xy 127 80.01) (xy 127 82.55))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1920b526-be50-4044-921e-738679d05aad)
|
||||
)
|
||||
(wire (pts (xy 137.16 60.96) (xy 139.7 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 1ae937f3-6362-41be-91e8-31a4c41cd4db)
|
||||
)
|
||||
(wire (pts (xy 187.96 66.04) (xy 198.12 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 20b6f547-8f23-4ca0-8198-b15b71fba76d)
|
||||
)
|
||||
(wire (pts (xy 163.83 80.01) (xy 163.83 74.93))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 253438e1-b2d5-45c8-bcfc-742c8344ecea)
|
||||
)
|
||||
(wire (pts (xy 149.86 57.15) (xy 149.86 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 2bb84d21-052f-4073-8b99-82886d4d4112)
|
||||
)
|
||||
(wire (pts (xy 137.16 66.04) (xy 149.86 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 2bfcf6e0-11c2-44b1-80ee-745466c52dd6)
|
||||
)
|
||||
(wire (pts (xy 104.14 72.39) (xy 113.03 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 311e7d6b-1a77-47ea-8ccb-30ee5d54793d)
|
||||
)
|
||||
(wire (pts (xy 187.96 66.04) (xy 177.8 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 403f035e-89c7-4267-bc39-540407f9432f)
|
||||
)
|
||||
(wire (pts (xy 160.02 80.01) (xy 163.83 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 496408b5-bafd-4ac7-b0e0-ca6302c5c175)
|
||||
)
|
||||
(wire (pts (xy 104.14 60.96) (xy 104.14 62.23))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 4e75b0c2-b14e-4dc5-ab75-21a67ea38904)
|
||||
)
|
||||
(wire (pts (xy 127 76.2) (xy 127 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 503696a5-f7c6-46e6-9d56-2abb1bf6f3cc)
|
||||
)
|
||||
(wire (pts (xy 177.8 66.04) (xy 177.8 67.31))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 5112e7ff-94f4-4953-9b3b-e89ab066bf44)
|
||||
)
|
||||
(wire (pts (xy 160.02 66.04) (xy 163.83 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 5606c2c9-8d20-49a7-a220-882fb12b6de9)
|
||||
)
|
||||
(wire (pts (xy 90.17 72.39) (xy 90.17 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 574d7ea9-f0f3-406b-9bc0-9485fcb74b81)
|
||||
)
|
||||
(wire (pts (xy 104.14 72.39) (xy 104.14 73.66))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 579729ba-6b2c-4fb1-bf6f-1ae1a84fcc04)
|
||||
)
|
||||
(wire (pts (xy 113.03 66.04) (xy 113.03 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 6af26b9e-6400-444e-8527-15e02169770e)
|
||||
)
|
||||
(wire (pts (xy 104.14 81.28) (xy 104.14 82.55))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 7b573841-0d69-4c95-a545-76ac472425dc)
|
||||
)
|
||||
(wire (pts (xy 149.86 80.01) (xy 144.78 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid 8e79823e-4332-4e10-8228-ec68b8b05a31)
|
||||
)
|
||||
(wire (pts (xy 113.03 57.15) (xy 113.03 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid a4311fa4-ba59-421f-b3c2-d5a599f12e31)
|
||||
)
|
||||
(wire (pts (xy 90.17 60.96) (xy 90.17 64.77))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid a6293838-577d-4da9-a5a7-ca09d375fd6d)
|
||||
)
|
||||
(wire (pts (xy 90.17 60.96) (xy 104.14 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid b39cd62a-05d5-45b8-b3a1-d2f855a03f9e)
|
||||
)
|
||||
(wire (pts (xy 149.86 60.96) (xy 149.86 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid b6977247-0e8e-422f-b397-a64eed1d46da)
|
||||
)
|
||||
(wire (pts (xy 116.84 66.04) (xy 113.03 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid be0f6ff5-89d1-4987-92dc-0284b6ca8ea9)
|
||||
)
|
||||
(wire (pts (xy 147.32 60.96) (xy 149.86 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid c1aa5d71-e58c-4cc6-a009-40e4a06e0e62)
|
||||
)
|
||||
(wire (pts (xy 149.86 80.01) (xy 152.4 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid c51e6c18-e7b4-479e-9aba-1bcac67c96b5)
|
||||
)
|
||||
(wire (pts (xy 187.96 67.31) (xy 187.96 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ce1871bd-0dbe-421e-af45-ef8b1716fbf2)
|
||||
)
|
||||
(wire (pts (xy 149.86 71.12) (xy 149.86 80.01))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid d111cf52-884c-43b5-97af-3858ea037080)
|
||||
)
|
||||
(wire (pts (xy 149.86 66.04) (xy 152.4 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid dc15a2d0-32dc-479c-b484-dca1980e4759)
|
||||
)
|
||||
(wire (pts (xy 177.8 74.93) (xy 177.8 82.55))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid dc2f95e5-e18b-4da3-b935-6bac0924cb34)
|
||||
)
|
||||
(wire (pts (xy 83.82 60.96) (xy 90.17 60.96))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid fa369d3a-866a-42c9-ad22-30b5dbd54591)
|
||||
)
|
||||
(wire (pts (xy 163.83 66.04) (xy 163.83 67.31))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid fbc71af7-de54-4238-9761-e2dd07bc84ed)
|
||||
)
|
||||
(wire (pts (xy 137.16 71.12) (xy 149.86 71.12))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid fc4c5b7f-1db9-479f-ba4e-7302e24bc012)
|
||||
)
|
||||
(wire (pts (xy 163.83 57.15) (xy 163.83 66.04))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid fe34a838-864c-4aee-999e-a4d9d2a53aa1)
|
||||
)
|
||||
(wire (pts (xy 104.14 69.85) (xy 104.14 72.39))
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(uuid ffb03990-fc3b-4cc7-b247-0ccb88bf866d)
|
||||
)
|
||||
|
||||
(text "52k3\n" (at 154.94 75.565 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 171c1fd8-6971-4d47-b8f9-2bbc280a7f74)
|
||||
)
|
||||
(text "6V to 18V\n" (at 81.28 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid d92585aa-452e-4bb8-9772-e4eb958de396)
|
||||
)
|
||||
|
||||
(label "FB_5V" (at 143.51 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 55a4aa31-3b32-463a-ba6d-3748b48c1bb5)
|
||||
)
|
||||
(label "SW_5V" (at 142.875 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid f14a4953-2b73-43fc-aef6-e15f67af62eb)
|
||||
)
|
||||
|
||||
(hierarchical_label "VIN" (shape input) (at 83.82 60.96 180)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 1df7d795-7db4-4143-a50f-46eb18061ee1)
|
||||
)
|
||||
(hierarchical_label "5V" (shape output) (at 198.12 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 9c614a92-4db0-4682-b200-e8121deaa926)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 104.14 82.55 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 01c950c2-84d4-4062-97ce-28407e323c63)
|
||||
(property "Reference" "#PWR0122" (id 0) (at 104.14 88.9 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 104.267 86.9442 0))
|
||||
(property "Footprint" "" (id 2) (at 104.14 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 104.14 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid ec240158-4420-40eb-b932-11bb3b531694))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:L_3u3") (at 156.21 66.04 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 0490f508-4f65-4acb-b576-e5ae4dfcb225)
|
||||
(property "Reference" "L20" (id 0) (at 156.21 60.96 90))
|
||||
(property "Value" "3u3" (id 1) (at 156.21 63.5 90))
|
||||
(property "Footprint" "paeber:XAL6030182MEB-HandSolder" (id 2) (at 156.21 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.mouser.ch/datasheet/2/597/xal60xx-270658.pdf" (id 3) (at 156.21 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Height" "3.1" (id 4) (at 156.21 66.04 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "994-XAL6030-332MEC" (id 5) (at 156.21 66.04 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Manufacturer_Part_Number" "XAL6030-332MEC" (id 6) (at 156.21 66.04 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 67cc5707-1acd-4227-a28a-174f4ec8071f))
|
||||
(pin "2" (uuid a3c54751-8888-4b77-a73b-73151d16232b))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 90.17 80.01 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 16adda1b-3b92-4be1-9c9f-6171d6cd8df2)
|
||||
(property "Reference" "#PWR0121" (id 0) (at 90.17 86.36 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 90.297 84.4042 0))
|
||||
(property "Footprint" "" (id 2) (at 90.17 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 90.17 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 77c1988d-bee9-4eab-bbe2-68f624cd08a8))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 140.97 80.01 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 21a1c133-f7c0-4c55-bfae-87489f29c903)
|
||||
(property "Reference" "R24" (id 0) (at 143.51 82.55 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "10k" (id 1) (at 142.24 85.09 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 140.97 81.788 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 140.97 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9a971457-c691-4066-b994-419c780d940d))
|
||||
(pin "2" (uuid 33a21ba8-7858-449f-82f5-cbfa2271ef38))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:TestPoint") (at 149.86 57.15 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 41cd32a6-18c1-4e73-8ff6-512e12117aae)
|
||||
(property "Reference" "TP21" (id 0) (at 152.4 53.8479 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "TestPoint" (id 1) (at 151.257 55.7146 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 154.94 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 154.94 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7867b632-d2fd-4db9-9675-d8279a64bbd8))
|
||||
)
|
||||
|
||||
(symbol (lib_id "paeber:AP62301WU-7") (at 114.3 60.96 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid 4daa1c44-1a68-45e8-9364-0b29cc11233b)
|
||||
(property "Reference" "U20" (id 0) (at 127 53.34 0))
|
||||
(property "Value" "AP62301WU-7" (id 1) (at 127 55.88 0))
|
||||
(property "Footprint" "paeber:TSOT-26" (id 2) (at 135.89 58.42 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/ede98d9c0c870d3f60ace1e8795af033.pdf" (id 3) (at 146.05 60.96 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Description" "Switching Voltage Regulators DCDC Conv HV Buck TSOT26 T&R 3K" (id 4) (at 146.685 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Height" "1" (id 5) (at 133.35 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser" "621-AP62301WU-7" (id 6) (at 147.32 67.945 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AP62301WU-7?qs=7MVldsJ5Uaw8ZNNQQbqpmA%3D%3D" (id 7) (at 135.89 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Manufacturer_Name" "Diodes Inc." (id 8) (at 135.89 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Manufacturer_Part_Number" "AP62301WU-7" (id 9) (at 135.89 78.74 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(pin "1" (uuid de78ab15-be7f-44bb-bb5d-78342c56dc7f))
|
||||
(pin "2" (uuid f44b90c9-3c35-4b91-aa2f-d6c475391238))
|
||||
(pin "3" (uuid c20d0016-aa04-4ffa-a4ba-13fb8f43f147))
|
||||
(pin "4" (uuid 0decf294-4459-4266-ba34-3d3f08791aa0))
|
||||
(pin "5" (uuid 5a5ce425-6229-496a-831d-8c2c12c9d111))
|
||||
(pin "6" (uuid 45ff6804-d1b1-4d91-ad05-c1dda70e3d1b))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 104.14 77.47 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 6577e2d6-e771-4f1a-b78b-c897f7ae89cb)
|
||||
(property "Reference" "R21" (id 0) (at 106.68 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "27k" (id 1) (at 106.68 78.74 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 102.362 77.47 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 104.14 77.47 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid a1148f18-38cb-4f43-889c-023d5b050f25))
|
||||
(pin "2" (uuid e3d5f605-c02b-4f9a-bdb8-6e27136a598f))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:C") (at 90.17 68.58 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 719421a3-64ab-42be-82c4-287bbaf79c49)
|
||||
(property "Reference" "C21" (id 0) (at 93.091 67.4116 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "10u" (id 1) (at 93.091 69.723 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 91.1352 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 90.17 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "581-1206DD106MAT2A" (id 4) (at 90.17 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 8a319a49-da7c-4605-9edc-b6b88d6dcace))
|
||||
(pin "2" (uuid 424f4081-7ea5-4682-9340-63ad3b63825a))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 177.8 82.55 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 872056a8-3317-408d-800b-762b71027ed5)
|
||||
(property "Reference" "#PWR0119" (id 0) (at 177.8 88.9 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 177.927 86.9442 0))
|
||||
(property "Footprint" "" (id 2) (at 177.8 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 177.8 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid a2da6c4b-cf98-4d3d-b54c-e05e54dfd2b6))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 156.21 80.01 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid 90e410ad-8466-4f6d-aba5-640aff7389dc)
|
||||
(property "Reference" "R23" (id 0) (at 158.115 82.55 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "27k" (id 1) (at 156.845 85.09 90)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 156.21 81.788 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 156.21 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9bc8d37e-6524-4792-a3c0-c3af33cfb037))
|
||||
(pin "2" (uuid 4b597009-f606-4d44-9290-2540d43f4576))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 127 82.55 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid bcdb28f4-e7c3-4c59-88e8-cec27f1b2ca0)
|
||||
(property "Reference" "#PWR0123" (id 0) (at 127 88.9 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 127.127 86.9442 0))
|
||||
(property "Footprint" "" (id 2) (at 127 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 127 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5efa460e-37f8-4da4-9dd0-46078e47c7b2))
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 187.96 82.55 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid cb625889-a39e-48a1-b5ca-64b654415724)
|
||||
(property "Reference" "#PWR0120" (id 0) (at 187.96 88.9 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (id 1) (at 188.087 86.9442 0))
|
||||
(property "Footprint" "" (id 2) (at 187.96 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (id 3) (at 187.96 82.55 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7f8398d1-1fcb-4b17-b71c-c5df98433848))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:C") (at 177.8 71.12 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid de9814ea-c668-40c7-a581-41a00d5ad413)
|
||||
(property "Reference" "C22" (id 0) (at 180.721 69.9516 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "22u" (id 1) (at 180.721 72.263 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 178.7652 74.93 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 177.8 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "581-1206YD226MAT2A" (id 4) (at 177.8 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid c7f16784-da95-4ab7-905d-9889694975ee))
|
||||
(pin "2" (uuid 207f3729-b16f-4bed-8e25-6323ca6af59d))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:C") (at 187.96 71.12 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid dfcdf09d-9f20-4402-b580-09edd237e4fb)
|
||||
(property "Reference" "C23" (id 0) (at 190.881 69.9516 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "22u" (id 1) (at 190.881 72.263 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 188.9252 74.93 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 187.96 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "581-1206YD226MAT2A" (id 4) (at 187.96 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid bac0882a-cd95-40e5-bcae-36dd00c1e400))
|
||||
(pin "2" (uuid 34123646-538f-4d29-99e3-ef929983a259))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:TestPoint") (at 163.83 57.15 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid e7073ff3-5477-4e8e-8eac-c6c839211d13)
|
||||
(property "Reference" "TP22" (id 0) (at 166.37 53.8479 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "TestPoint" (id 1) (at 165.227 55.7146 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 168.91 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 168.91 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 86960213-2693-47e1-b326-e76a23d0259a))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 104.14 66.04 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid ea17384f-96f5-440c-89c7-f5a1bb809037)
|
||||
(property "Reference" "R20" (id 0) (at 106.68 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "100k" (id 1) (at 106.68 67.31 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 102.362 66.04 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 104.14 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid eb0370c7-231d-49c7-b578-56e3cc7d1cd6))
|
||||
(pin "2" (uuid 8754c8ad-8208-4779-a399-e236a119fdb3))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 163.83 71.12 0) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid eb5539f7-1c4d-429b-928b-15d4b3d0598a)
|
||||
(property "Reference" "R22" (id 0) (at 166.37 69.85 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "27k" (id 1) (at 166.37 72.39 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 162.052 71.12 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 163.83 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid ce049c30-6629-4827-b32b-d3c8b0d57289))
|
||||
(pin "2" (uuid b481b075-9fdf-42c9-9f4f-1820179a57db))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:C") (at 143.51 60.96 90) (unit 1)
|
||||
(in_bom yes) (on_board yes)
|
||||
(uuid f744641e-4674-436f-97f8-bda7558362c2)
|
||||
(property "Reference" "C20" (id 0) (at 142.3416 58.039 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "100n" (id 1) (at 144.653 58.039 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 147.32 59.9948 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 143.51 60.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Mouser" "603-AC0805KR9BB104" (id 4) (at 143.51 60.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 4118ca42-cbf5-4007-8f00-3c853caebfae))
|
||||
(pin "2" (uuid eef0b708-d745-482f-aca0-70f6e8b031a8))
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:TestPoint") (at 113.03 57.15 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (fields_autoplaced)
|
||||
(uuid f83ab25f-30d3-4036-907c-2dff3354852a)
|
||||
(property "Reference" "TP20" (id 0) (at 115.57 53.8479 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "TestPoint" (id 1) (at 114.427 55.7146 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (id 2) (at 118.11 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (id 3) (at 118.11 57.15 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 73343cc2-5396-4bac-a898-561589bb74cc))
|
||||
)
|
||||
)
|
||||
27727
starfish/starfish.kicad_pcb
Normal file
27727
starfish/starfish.kicad_pcb
Normal file
File diff suppressed because it is too large
Load diff
446
starfish/starfish.kicad_pro
Normal file
446
starfish/starfish.kicad_pro
Normal file
|
|
@ -0,0 +1,446 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.09999999999999999,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.15,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.762,
|
||||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.15,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.3
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.0,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"solder_mask_clearance": 0.0,
|
||||
"solder_mask_min_width": 0.0,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0,
|
||||
0.25,
|
||||
0.4,
|
||||
0.5,
|
||||
0.75,
|
||||
1.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "starfish.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "3d/starfish.step",
|
||||
"vrml": "3d/starfish.wrl"
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.375,
|
||||
"pin_symbol_size": 25.0,
|
||||
"text_offset_ratio": 0.15
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "export",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"e63e39d7-6ac0-4ffd-8aa3-1841a4541b55",
|
||||
""
|
||||
],
|
||||
[
|
||||
"2e7f645d-4dec-44d7-a9b9-ef4bd9a63bc0",
|
||||
"LED Driver"
|
||||
],
|
||||
[
|
||||
"ef1ca770-6dc6-449a-bd5f-c962f14a8fb3",
|
||||
"Power"
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
3838
starfish/starfish.kicad_sch
Normal file
3838
starfish/starfish.kicad_sch
Normal file
File diff suppressed because it is too large
Load diff
3
starfish/sym-lib-table
Normal file
3
starfish/sym-lib-table
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(sym_lib_table
|
||||
(lib (name "starfish")(type "KiCad")(uri "${KIPRJMOD}/parts/starfish.kicad_sym")(options "")(descr ""))
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue