diff --git a/.build.yml b/.build.yml index 7ece57b..ef0452a 100644 --- a/.build.yml +++ b/.build.yml @@ -25,7 +25,8 @@ steps: commands: - apt update - apt install -y make zip - - make pcb -j$(nproc) + - make pcb -j$(nproc) BOARD=fiatlux + - make pcb -j$(nproc) BOARD=fiatlux_cc48 - name: case image: debian:sid @@ -60,7 +61,8 @@ steps: files: - firmware/firmware/fiatlux.bin - firmware/otaflash.py - - pcb/pcb.zip + - pcb/fiatlux_pcb.zip + - pcb/fiatlux_cc48_pcb.zip checksum: - sha512 - md5 diff --git a/pcb/.gitignore b/pcb/.gitignore index 5efb808..df6fc39 100644 --- a/pcb/.gitignore +++ b/pcb/.gitignore @@ -16,6 +16,7 @@ _autosave-* *-save.pro *-save.kicad_pcb fp-info-cache +*-backups/ # Netlist files (exported from Eeschema) *.net diff --git a/pcb/Makefile b/pcb/Makefile index 610317c..42d4b6a 100644 --- a/pcb/Makefile +++ b/pcb/Makefile @@ -1,52 +1,54 @@ -.NOTPARALLEL: gen/fab/fiatlux-F_Cu.gbr gen/fab/fiatlux-B_Cu.gbr gen/fab/fiatlux-F_Mask.gbr gen/fab/fiatlux-B_Mask.gbr gen/fab/fiatlux-F_Paste.gbr gen/fab/fiatlux-B_Paste.gbr gen/fab/fiatlux-F_SilkS.gbr gen/fab/fiatlux-B_SilkS.gbr +.NOTPARALLEL: gen/fab/$(BOARD)-F_Cu.gbr gen/fab/$(BOARD)-B_Cu.gbr gen/fab/$(BOARD)-F_Mask.gbr gen/fab/$(BOARD)-B_Mask.gbr gen/fab/$(BOARD)-F_Paste.gbr gen/fab/$(BOARD)-B_Paste.gbr gen/fab/$(BOARD)-F_SilkS.gbr gen/fab/$(BOARD)-B_SilkS.gbr -all: test fab doc pcb.zip +all: test fab doc pcb -pcb.zip: fab doc +test: gen/$(BOARD)-drc.txt gen/$(BOARD)-erc.txt + +pcb: $(BOARD)_pcb.zip + +doc: gen/$(BOARD).pdf gen/$(BOARD)-front.svg gen/$(BOARD)-back.svg + +fab: test gen/$(BOARD)_fab.zip gen/$(BOARD).csv gen/$(BOARD)-top-pos.csv + +$(BOARD)_pcb.zip: fab doc @mkdir -p gen - @cd gen; zip -r ../pcb.zip fab.zip fiatlux.csv fiatlux-top-pos.csv fiatlux-front.svg fiatlux-back.svg fiatlux.pdf - @cd gen; zip -r ../debug.zip . + cd gen; zip -r ../$(BOARD)_pcb.zip $(BOARD)_fab.zip $(BOARD).csv $(BOARD)-top-pos.csv $(BOARD)-front.svg $(BOARD)-back.svg $(BOARD).pdf + cd gen; zip -r ../$(BOARD)_debug.zip . -test: gen/fiatlux-drc.txt gen/fiatlux-erc.txt - -doc: gen/fiatlux.pdf gen/fiatlux-front.svg gen/fiatlux-back.svg - -fab: test gen/fab.zip gen/fiatlux.csv gen/fiatlux-top-pos.csv - -gen/fab.zip: gen/fab/fiatlux-F_Cu.gbr gen/fab/fiatlux-B_Cu.gbr gen/fab/fiatlux-F_Mask.gbr gen/fab/fiatlux-B_Mask.gbr -gen/fab.zip: gen/fab/fiatlux-F_Paste.gbr gen/fab/fiatlux-B_Paste.gbr gen/fab/fiatlux-F_SilkS.gbr gen/fab/fiatlux-B_SilkS.gbr +gen/$(BOARD)_fab.zip: gen/fab/$(BOARD)-F_Cu.gbr gen/fab/$(BOARD)-B_Cu.gbr gen/fab/$(BOARD)-F_Mask.gbr gen/fab/$(BOARD)-B_Mask.gbr +gen/$(BOARD)_fab.zip: gen/fab/$(BOARD)-F_Paste.gbr gen/fab/$(BOARD)-B_Paste.gbr gen/fab/$(BOARD)-F_SilkS.gbr gen/fab/$(BOARD)-B_SilkS.gbr @mkdir -p gen/fab - @cd gen/fab; zip -r ../fab.zip *.gbr + cd gen/fab; zip -r ../$(BOARD)_fab.zip *.gbr -gen/fiatlux-erc.txt: fiatlux.kiplot.yaml fiatlux.pro fiatlux.kicad_pcb +gen/$(BOARD)-erc.txt: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_pcb @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s update_xml,run_drc -i + kibot -d gen -c $(BOARD).kiplot.yaml -s update_xml,run_drc -i -gen/fiatlux-drc.txt: fiatlux.kiplot.yaml fiatlux.pro fiatlux.sch +gen/$(BOARD)-drc.txt: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_sch @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s update_xml,run_erc -i + kibot -d gen -c $(BOARD).kiplot.yaml -s update_xml,run_erc -i -gen/fab/%.gbr: fiatlux.kiplot.yaml fiatlux.pro fiatlux.kicad_pcb +gen/fab/%.gbr: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_pcb @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s all print_front gerbers + kibot -d gen -c $(BOARD).kiplot.yaml -s all print_front gerbers -gen/fiatlux-top-pos.csv: fiatlux.kiplot.yaml fiatlux.pro fiatlux.kicad_pcb +gen/$(BOARD)-top-pos.csv: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_pcb @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s all print_front position + kibot -d gen -c $(BOARD).kiplot.yaml -s all print_front position -gen/fiatlux.csv: fiatlux.kiplot.yaml fiatlux.pro fiatlux.kicad_pcb +gen/$(BOARD).csv: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_pcb @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s all print_front bom + kibot -d gen -c $(BOARD).kiplot.yaml -s all print_front bom -gen/fiatlux.pdf: fiatlux.kiplot.yaml fiatlux.pro fiatlux.sch +gen/$(BOARD).pdf: $(BOARD).kiplot.yaml $(BOARD).kicad_pro $(BOARD).kicad_sch @mkdir -p gen - kibot -d gen -c fiatlux.kiplot.yaml -s run_drc,run_erc print_sch + kibot -d gen -c $(BOARD).kiplot.yaml -s run_drc,run_erc print_sch -gen/fiatlux-front.svg: fiatlux.kicad_pcb +gen/$(BOARD)-front.svg: $(BOARD).kicad_pcb @mkdir -p gen pcbdraw --libs default $< $@ -gen/fiatlux-back.svg: fiatlux.kicad_pcb +gen/$(BOARD)-back.svg: $(BOARD).kicad_pcb @mkdir -p gen pcbdraw --libs default --back $< $@ diff --git a/pcb/bus_node.kicad_sch b/pcb/bus_node.kicad_sch new file mode 100644 index 0000000..26a3b76 --- /dev/null +++ b/pcb/bus_node.kicad_sch @@ -0,0 +1,525 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 0a742bb2-0657-47bc-9dea-e70308e1113a) + + (paper "A4") + + (lib_symbols + (symbol "Device:C_Polarized" (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_Polarized" (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" "Polarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_Polarized_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "C_Polarized_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 "MCU_ST_STM8:STM8S003F3U" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 25.4 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM8S003F3U" (id 1) (at 1.27 22.86 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (id 2) (at 1.27 27.94 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00024550.pdf" (id 3) (at -1.27 -10.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "STM8S Mainstream Value line 8-bit, 16MHz, 1k RAM, 128 EEPROM" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "16MHz, 8K Flash, 1K RAM, 128 EEPROM, USART, I²C, SPI, UFQFPN-20" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "ST?UFQFPN*3x3mm*P0.5mm*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "STM8S003F3U_0_1" + (rectangle (start -11.43 21.59) (end 11.43 -21.59) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "STM8S003F3U_1_1" + (pin input line (at -15.24 -15.24 0) (length 3.81) + (name "NRST" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 0 0) (length 3.81) + (name "PC3" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -2.54 0) (length 3.81) + (name "PC4" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -5.08 0) (length 3.81) + (name "PC5" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -7.62 0) (length 3.81) + (name "PC6" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -10.16 0) (length 3.81) + (name "PC7" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 3.81) + (name "PD1" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 3.81) + (name "PD2" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 3.81) + (name "PD3" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 3.81) + (name "PD4" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 3.81) + (name "PD5" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 17.78 0) (length 3.81) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -5.08 180) (length 3.81) + (name "PD6" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 15.24 0) (length 3.81) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -25.4 90) (length 3.81) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -15.24 -17.78 0) (length 3.81) + (name "VCAP" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 25.4 270) (length 3.81) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 12.7 0) (length 3.81) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 5.08 0) (length 3.81) + (name "PB5" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 7.62 0) (length 3.81) + (name "PB4" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (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)))) + ) + ) + ) + ) + + + (wire (pts (xy 87.63 105.41) (xy 85.09 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05f67689-b87d-4a73-ba19-8cfc59729f07) + ) + (wire (pts (xy 85.09 82.55) (xy 87.63 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b7fcc49-f420-4a1f-a4f0-7b5b5e0b0bc1) + ) + (wire (pts (xy 85.09 95.25) (xy 87.63 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1da291cc-3aa5-4632-8f99-7dae246a7f56) + ) + (wire (pts (xy 85.09 87.63) (xy 87.63 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 238b4f36-a253-431c-a93e-34af7da002ac) + ) + (wire (pts (xy 118.11 85.09) (xy 120.65 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e44eb9d-5214-4281-b589-6f1d5d809dae) + ) + (wire (pts (xy 85.09 74.93) (xy 87.63 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 370b7821-636e-4f27-a8f2-d2d53fbbba42) + ) + (wire (pts (xy 85.09 90.17) (xy 87.63 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5193b92c-0f95-414f-9c12-4288fbf1289f) + ) + (wire (pts (xy 85.09 105.41) (xy 85.09 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d8b52e3-6cf3-4957-a7be-c8e9a1edb540) + ) + (wire (pts (xy 85.09 80.01) (xy 87.63 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c96a492-fd30-430c-9630-288faba478b7) + ) + (wire (pts (xy 118.11 87.63) (xy 120.65 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 716e5416-b330-423a-811f-046a4ee64f5e) + ) + (wire (pts (xy 118.11 80.01) (xy 120.65 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7af6484f-4c0f-4bb6-8c11-76d16aa0127b) + ) + (wire (pts (xy 85.09 72.39) (xy 87.63 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f8e7df9-ebd4-4149-a71c-2a1b216fe3c1) + ) + (wire (pts (xy 85.09 92.71) (xy 87.63 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b4b514c-b288-40ab-af4d-fb8827371f01) + ) + (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae93933d-bd7e-4401-b9d9-e5d7ebc1523c) + ) + (wire (pts (xy 85.09 102.87) (xy 87.63 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba684d7c-206a-4c98-b824-40bb57bcd818) + ) + (wire (pts (xy 85.09 97.79) (xy 87.63 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbb56580-aa81-45cb-b1b7-ba0c984ed065) + ) + (wire (pts (xy 118.11 92.71) (xy 120.65 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f55b2315-ffcf-45cb-b8d5-dd0439b81933) + ) + (wire (pts (xy 85.09 69.85) (xy 87.63 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcfb0e66-04da-4039-97d3-1a751d2a550d) + ) + (wire (pts (xy 118.11 82.55) (xy 120.65 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff8c2871-7c9b-4de3-baec-30db09fd1a6f) + ) + + (hierarchical_label "PD2_AIN3" (shape input) (at 120.65 82.55 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 06279e58-47a9-4b33-bb57-83d7a618b3cc) + ) + (hierarchical_label "MISO" (shape output) (at 85.09 97.79 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1c6e452a-3519-4b92-98f5-9c74f0717054) + ) + (hierarchical_label "PD5_AIN5" (shape input) (at 120.65 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 360c2bbd-a0a3-46a6-a8fc-000e22263bb0) + ) + (hierarchical_label "PD3_PWM" (shape bidirectional) (at 120.65 85.09 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 37b14c37-2c62-413c-9246-82d11641b9ae) + ) + (hierarchical_label "PA3_PWM" (shape input) (at 85.09 74.93 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 6cfa3401-aa92-47e4-b58a-92f49c22748f) + ) + (hierarchical_label "~{INT}" (shape output) (at 85.09 90.17 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7e881b05-98b1-4290-99fa-d895271485f2) + ) + (hierarchical_label "SCLK" (shape input) (at 85.09 92.71 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8ef8ab63-d78b-49e0-89aa-d7de17fdbe74) + ) + (hierarchical_label "PB5_SDA" (shape bidirectional) (at 85.09 82.55 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9ca5b9da-e0dd-4955-969b-abbfe4ad2dd5) + ) + (hierarchical_label "INIT_{OUT}" (shape output) (at 85.09 72.39 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9d6f01bf-507b-4b70-82a7-182a04da9e3f) + ) + (hierarchical_label "INIT_{IN}" (shape input) (at 85.09 69.85 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9e8cf55f-aa42-463b-a91a-de04527fe165) + ) + (hierarchical_label "PD6_AIN6" (shape input) (at 120.65 92.71 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b06ad5b8-3b55-4295-ac00-2db4462d06a0) + ) + (hierarchical_label "~{RST}" (shape input) (at 85.09 102.87 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b146471c-fbe5-47f5-9d13-b2781f1eec8e) + ) + (hierarchical_label "PD4_PWM" (shape bidirectional) (at 120.65 87.63 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c01ad6db-1ab3-4d40-b0ea-5db91fd6ea3d) + ) + (hierarchical_label "SWIM" (shape input) (at 120.65 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c51b4129-c609-4071-9aee-8812a73e4fbf) + ) + (hierarchical_label "MOSI" (shape input) (at 85.09 95.25 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d868ec48-42f4-4608-baef-8e135bf87a69) + ) + (hierarchical_label "PC3" (shape bidirectional) (at 85.09 87.63 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid db8938bd-2e17-432b-810d-99f0cc91dc9b) + ) + (hierarchical_label "PB4_SCL" (shape bidirectional) (at 85.09 80.01 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e7e056a6-601a-4b1f-b777-b87dc65cba1c) + ) + + (symbol (lib_id "power:GND") (at 102.87 113.03 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3070e453-5a48-4337-bc8a-aaea9f0903c4) + (property "Reference" "#PWR0102" (id 0) (at 102.87 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 102.997 117.4242 0)) + (property "Footprint" "" (id 2) (at 102.87 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 102.87 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 476016a1-85a2-490a-9e22-631280b45f0e)) + ) + + (symbol (lib_id "power:+3.3V") (at 102.87 62.23 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 89dba8ed-6d52-4248-8ebf-04e6c6c88d41) + (property "Reference" "#PWR0103" (id 0) (at 102.87 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 104.14 58.42 0)) + (property "Footprint" "" (id 2) (at 102.87 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 102.87 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ba7b530d-9be0-4def-8454-8e16aafbce41)) + ) + + (symbol (lib_id "MCU_ST_STM8:STM8S003F3U") (at 102.87 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8cbb6c57-e33d-447e-ba35-edd9102428e5) + (property "Reference" "U1" (id 0) (at 104.8894 62.0735 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM8S003F3U" (id 1) (at 104.8894 64.8486 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (id 2) (at 104.14 59.69 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00024550.pdf" (id 3) (at 101.6 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C35556" (id 4) (at 102.87 87.63 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0868def6-5403-4cbf-93a7-6389dbc95ce3)) + (pin "10" (uuid 79e03ae3-04c1-4136-9d11-edbf8450c5e6)) + (pin "11" (uuid 8610c623-6e26-45d0-8346-2d01e6f540e2)) + (pin "12" (uuid baa88fca-098c-4fc0-9b12-9583d4b93589)) + (pin "13" (uuid e91f253b-96a6-44ee-96e3-20b404cccf96)) + (pin "14" (uuid 946097a6-5de6-41e1-a2a9-3fde8f1e91e9)) + (pin "15" (uuid d7070859-dedb-4e15-8c3c-a55445f4810e)) + (pin "16" (uuid ce74344b-32a5-45f1-b0fc-6903c09e3eed)) + (pin "17" (uuid c5449947-3eb6-438a-a259-9adb710c7987)) + (pin "18" (uuid b7a2ae26-da33-4e81-a563-708d7b6972d1)) + (pin "19" (uuid 3c5f9d0f-421a-4a95-82bb-a1d8b812a4c6)) + (pin "2" (uuid af8379f6-aca4-4c68-88d2-144d961c43cd)) + (pin "20" (uuid d0d3b33b-5670-48ba-8a91-62efcaa81f41)) + (pin "3" (uuid 2ef496d7-ab49-4982-9d58-a0c76b781f8d)) + (pin "4" (uuid c50bf281-2b66-459e-a9e3-1a9500cd5eb0)) + (pin "5" (uuid 39682296-4e33-40ef-bab8-a76b04d018ef)) + (pin "6" (uuid 953d45d5-e11a-4df6-a8ea-bd278753d364)) + (pin "7" (uuid 6558fe1b-a3c8-432c-ad80-f285a01e900f)) + (pin "8" (uuid 5492858d-1b8c-4f1a-b061-e929f40eed8a)) + (pin "9" (uuid a9633d26-daae-48a7-b5dd-6c0f294c3c20)) + ) + + (symbol (lib_id "power:GND") (at 85.09 115.57 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a2512eb5-1205-4c98-854b-ff2f58d6be51) + (property "Reference" "#PWR0101" (id 0) (at 85.09 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 85.217 119.9642 0)) + (property "Footprint" "" (id 2) (at 85.09 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 85.09 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2b23d0e4-c3a2-4f0d-9455-e00e556f6b81)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 85.09 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0975aab-9018-4c2c-83a3-ecbae5bfb12a) + (property "Reference" "C3" (id 0) (at 88.011 109.9625 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "680nF" (id 1) (at 88.011 112.7376 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:CP_Elec_3x5.4" (id 2) (at 86.0552 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 85.09 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ab4e121c-071f-4432-a221-b67e64d6ff8d)) + (pin "2" (uuid 9fd9e8ec-fc98-4154-ad2e-11ac105668bf)) + ) +) diff --git a/pcb/fiatlux.kicad_pcb b/pcb/fiatlux.kicad_pcb index f9bf4bd..7089dd2 100644 --- a/pcb/fiatlux.kicad_pcb +++ b/pcb/fiatlux.kicad_pcb @@ -1,77 +1,64 @@ -(kicad_pcb (version 20171130) (host pcbnew 5.99.0+really5.1.10+dfsg1-1) +(kicad_pcb (version 20211014) (generator pcbnew) (general - (thickness 1.6) - (drawings 68) - (tracks 714) - (zones 0) - (modules 71) - (nets 36) + (thickness 1.76) ) - (page A4) + (paper "A4") (layers - (0 F.Cu signal) - (31 B.Cu signal) - (32 B.Adhes user hide) - (33 F.Adhes user hide) - (34 B.Paste user hide) - (35 F.Paste user hide) - (36 B.SilkS user hide) - (37 F.SilkS user hide) - (38 B.Mask user hide) - (39 F.Mask user hide) - (40 Dwgs.User user hide) - (41 Cmts.User user hide) - (42 Eco1.User user hide) - (43 Eco2.User user hide) - (44 Edge.Cuts user) - (45 Margin user) - (46 B.CrtYd user) - (47 F.CrtYd user) - (48 B.Fab user hide) - (49 F.Fab user hide) + (0 "F.Cu" signal) + (1 "In1.Cu" signal) + (2 "In2.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) ) (setup - (last_trace_width 0.25) - (user_trace_width 0.25) - (user_trace_width 0.5) - (user_trace_width 1) - (user_trace_width 2) - (trace_clearance 0.127) - (zone_clearance 0.508) - (zone_45_only no) - (trace_min 0.2) - (via_size 0.8) - (via_drill 0.4) - (via_min_size 0.4) - (via_min_drill 0.3) - (uvia_size 0.3) - (uvia_drill 0.1) - (uvias_allowed no) - (uvia_min_size 0.2) - (uvia_min_drill 0.1) - (edge_width 0.1) - (segment_width 0.2) - (pcb_text_width 0.3) - (pcb_text_size 1.5 1.5) - (mod_edge_width 0.15) - (mod_text_size 1 1) - (mod_text_width 0.15) - (pad_size 0.65 0.65) - (pad_drill 0.65) + (stackup + (layer "F.SilkS" (type "Top Silk Screen")) + (layer "F.Paste" (type "Top Solder Paste")) + (layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01)) + (layer "F.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 1" (type "core") (thickness 0.4) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "In1.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 2" (type "prepreg") (thickness 0.8) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "In2.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 3" (type "core") (thickness 0.4) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "B.Cu" (type "copper") (thickness 0.035)) + (layer "B.Mask" (type "Bottom Solder Mask") (color "Black") (thickness 0.01)) + (layer "B.Paste" (type "Bottom Solder Paste")) + (layer "B.SilkS" (type "Bottom Silk Screen")) + (copper_finish "None") + (dielectric_constraints no) + ) (pad_to_mask_clearance 0) - (aux_axis_origin 0 0) - (visible_elements FFFFFF7F) (pcbplotparams - (layerselection 0x010fc_ffffffff) + (layerselection 0x00010fc_ffffffff) + (disableapertmacros false) (usegerberextensions false) (usegerberattributes true) (usegerberadvancedattributes true) (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) (excludeedgelayer true) - (linewidth 0.100000) (plotframeref false) (viasonmask false) (mode 1) @@ -79,5231 +66,5633 @@ (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) (psnegative false) (psa4output false) (plotreference true) (plotvalue true) (plotinvisibletext false) - (padsonsilk false) + (sketchpadsonfab false) (subtractmaskfromsilk false) (outputformat 1) (mirror false) (drillshape 0) (scaleselection 1) - (outputdirectory "gen")) + (outputdirectory "gen") + ) ) (net 0 "") - (net 1 GND) - (net 2 /Power/LDO_IN) - (net 3 +3V3) - (net 4 nRST) - (net 5 +5V) - (net 6 "Net-(D2-Pad2)") - (net 7 "Net-(D3-Pad2)") + (net 1 "GND") + (net 2 "/Power/LDO_IN") + (net 3 "+3V3") + (net 4 "nRST") + (net 5 "+5V") + (net 6 "Net-(D12-Pad4)") + (net 7 "Net-(D12-Pad5)") (net 8 "Net-(D4-Pad2)") - (net 9 SEN_5V) - (net 10 +12V) - (net 11 "Net-(J1-Pad2)") - (net 12 "Net-(J1-Pad3)") - (net 13 VOUT) - (net 14 TXD0) - (net 15 RXD0) - (net 16 SCLK) - (net 17 MOSI) - (net 18 ADC) - (net 19 RTS) - (net 20 DTR) - (net 21 EN) - (net 22 "Net-(R9-Pad2)") - (net 23 SEN_12V) - (net 24 "Net-(R13-Pad1)") - (net 25 CS0) - (net 26 GPIO5) - (net 27 GPIO4) - (net 28 FLSH) - (net 29 "Net-(Q1-Pad1)") - (net 30 "Net-(Q2-Pad1)") - (net 31 "Net-(D9-Pad2)") - (net 32 /TXLED) - (net 33 "Net-(D10-Pad2)") - (net 34 /RXLED) - (net 35 CS1) - - (net_class Default "Dies ist die voreingestellte Netzklasse." - (clearance 0.127) - (trace_width 0.25) - (via_dia 0.8) - (via_drill 0.4) - (uvia_dia 0.3) - (uvia_drill 0.1) - (add_net +12V) - (add_net +3V3) - (add_net +5V) - (add_net /Power/LDO_IN) - (add_net /RXLED) - (add_net /TXLED) - (add_net ADC) - (add_net CS0) - (add_net CS1) - (add_net DTR) - (add_net EN) - (add_net FLSH) - (add_net GND) - (add_net GPIO4) - (add_net GPIO5) - (add_net MOSI) - (add_net "Net-(D10-Pad2)") - (add_net "Net-(D2-Pad2)") - (add_net "Net-(D3-Pad2)") - (add_net "Net-(D4-Pad2)") - (add_net "Net-(D9-Pad2)") - (add_net "Net-(J1-Pad2)") - (add_net "Net-(J1-Pad3)") - (add_net "Net-(Q1-Pad1)") - (add_net "Net-(Q2-Pad1)") - (add_net "Net-(R13-Pad1)") - (add_net "Net-(R9-Pad2)") - (add_net RTS) - (add_net RXD0) - (add_net SCLK) - (add_net SEN_12V) - (add_net SEN_5V) - (add_net TXD0) - (add_net VOUT) - (add_net nRST) - ) - - (module TerminalBlock:TerminalBlock_bornier-2_P5.08mm locked (layer B.Cu) (tedit 60EC57DC) (tstamp 60AE33DA) - (at 55.88 71.12 180) - (descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2") - (tags "terminal block bornier2") - (path /6078273A/6092962E) - (fp_text reference J12 (at 2.54 5.08) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x02_Male (at 2.54 -5.08) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 7.79 -4) (end -2 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start 7.79 -4) (end 7.79 4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2 4) (end -2 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2 4) (end 7.79 4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.54 -3.81) (end 7.62 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 3.81) (end -2.54 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 -3.81) (end 7.62 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 -2.54) (end -2.54 -2.54) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.54 3.75) (end -2.46 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start 7.54 -3.75) (end 7.54 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.46 -3.75) (end 7.54 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.46 3.75) (end -2.46 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.41 -2.55) (end 7.49 -2.55) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 2.54 0) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 2 thru_hole circle (at 5.08 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 10 +12V)) - (pad 1 thru_hole rect (at 0 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 1 GND)) - (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl - (offset (xyz 2.539999961853027 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.step - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TerminalBlock:TerminalBlock_bornier-4_P5.08mm locked (layer B.Cu) (tedit 60EC0394) (tstamp 6091B242) - (at 35.56 68.58 90) - (descr "simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4") - (tags "terminal block bornier4") - (path /60B13D6D) - (fp_text reference J2 (at 7.6 4.8 90) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x04_Male (at 7.6 -4.75 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 17 -4) (end -2.73 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start 17 -4) (end 17 3) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.73 3) (end -2.73 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.7 3) (end 17 3) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.54 -3.81) (end 17.78 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end 17.78 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.78 -2.54) (end -2.54 -2.54) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.78 -3.81) (end 17.78 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.72 -3.75) (end -2.43 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start 17.72 3.75) (end 17.72 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 3.75) (end 17.72 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 -3.75) (end -2.48 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.43 -3.75) (end -2.48 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 -2.55) (end 17.72 -2.55) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 7.62 0 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 4 thru_hole circle (at 15.24 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 13 VOUT)) - (pad 1 thru_hole rect (at 0 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 3 thru_hole circle (at 10.16 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 14 TXD0)) - (pad 2 thru_hole circle (at 5.08 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 15 RXD0)) - (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_bornier-4_P5.08mm.wrl - (offset (xyz 7.619999885559082 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal.step - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TerminalBlock:TerminalBlock_bornier-4_P5.08mm locked (layer B.Cu) (tedit 60EC0001) (tstamp 6091B26F) - (at 35.56 48.26 90) - (descr "simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4") - (tags "terminal block bornier4") - (path /608BFA99) - (fp_text reference J4 (at 7.6 4.8 90) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x04_Male (at 7.6 -4.75 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 17 -4) (end -2.73 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start 17 -4) (end 17 3) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.73 3) (end -2.73 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.73 3) (end 17 3) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.54 -3.81) (end 17.78 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end 17.78 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.78 -2.54) (end -2.54 -2.54) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.78 -3.81) (end 17.78 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 17.72 -3.75) (end -2.43 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start 17.72 3.75) (end 17.72 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 3.75) (end 17.72 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 -3.75) (end -2.48 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.43 -3.75) (end -2.48 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.48 -2.55) (end 17.72 -2.55) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 7.62 0 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 4 thru_hole circle (at 15.24 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 13 VOUT)) - (pad 1 thru_hole rect (at 0 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 3 thru_hole circle (at 10.16 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 16 SCLK)) - (pad 2 thru_hole circle (at 5.08 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 17 MOSI)) - (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_bornier-4_P5.08mm.wrl - (offset (xyz 7.619999885559082 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal.step - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A933BB) - (at 58.42 53.34 90) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60C915D4) - (attr virtual) - (fp_text reference J17 (at 0 -1.998 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0 90) (size 2 2) (layers F.Cu F.Mask) - (net 17 MOSI)) - ) - - (module Resistor_SMD:R_0805_2012Metric (layer B.Cu) (tedit 5F68FEEE) (tstamp 60B18CC9) - (at 53.9496 51.181 270) - (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /60B3C5A7) - (attr smd) - (fp_text reference R20 (at -3.1496 -0.0254 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value 0Ohm (at 0 -1.65 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.68 0.95) (end 1.68 0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer B.SilkS) (width 0.12)) - (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer B.SilkS) (width 0.12)) - (fp_line (start 1 -0.625) (end -1 -0.625) (layer B.Fab) (width 0.1)) - (fp_line (start 1 0.625) (end 1 -0.625) (layer B.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end 1 0.625) (layer B.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end -1 0.625) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer B.Fab) - (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror)) - ) - (pad 2 smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.243902) - (net 23 SEN_12V)) - (pad 1 smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.243902) - (net 26 GPIO5)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0805_2012Metric (layer B.Cu) (tedit 5F68FEEE) (tstamp 60B16D57) - (at 57.1246 49.8602 270) - (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /60B3ABAC) - (attr smd) - (fp_text reference R19 (at 3.1496 -0.0254 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value 0Ohm (at 0 -1.65 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.68 0.95) (end 1.68 0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer B.CrtYd) (width 0.05)) - (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer B.SilkS) (width 0.12)) - (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer B.SilkS) (width 0.12)) - (fp_line (start 1 -0.625) (end -1 -0.625) (layer B.Fab) (width 0.1)) - (fp_line (start 1 0.625) (end 1 -0.625) (layer B.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end 1 0.625) (layer B.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end -1 0.625) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer B.Fab) - (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror)) - ) - (pad 2 smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.243902) - (net 9 SEN_5V)) - (pad 1 smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.243902) - (net 27 GPIO4)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical (layer B.Cu) (tedit 59FED5CC) (tstamp 60B161DE) - (at 40.64 48.26) - (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x06 2.54mm single row") - (path /60B28A8C) - (fp_text reference J13 (at 0 2.33) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x06_Male (at 0 -15.03) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end 1.27 -13.97) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 -13.97) (end -1.27 -13.97) (layer B.Fab) (width 0.1)) - (fp_line (start -1.27 -13.97) (end -1.27 0.635) (layer B.Fab) (width 0.1)) - (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start -1.33 -14.03) (end 1.33 -14.03) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end -1.33 -14.03) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.33 -1.27) (end 1.33 -14.03) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.8 1.8) (end -1.8 -14.5) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 -14.5) (end 1.8 -14.5) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.8 -14.5) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -6.35 -90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 6 thru_hole oval (at 0 -12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 13 VOUT)) - (pad 5 thru_hole oval (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 16 SCLK)) - (pad 4 thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 17 MOSI)) - (pad 3 thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 35 CS1)) - (pad 2 thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 25 CS0)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 GND)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module stock:micro_usb (layer B.Cu) (tedit 60A908A0) (tstamp 60B188C6) - (at 58.674 27.178) - (path /607AE779) - (fp_text reference J1 (at 5.588 2.54 270) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value USB_B_Micro (at 0 -1.016) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start -4.572 6.096) (end -3.048 6.096) (layer B.SilkS) (width 0.12)) - (fp_line (start -4.572 4.572) (end -4.572 6.096) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.572 6.096) (end 3.048 6.096) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.572 4.572) (end 4.572 6.096) (layer B.SilkS) (width 0.12)) - (fp_line (start 5.08 0) (end -5.08 0) (layer B.Fab) (width 0.12)) - (pad "" thru_hole circle (at -2 3.275) (size 0.65 0.65) (drill 0.65) (layers *.Cu)) - (pad "" thru_hole circle (at 2 3.275) (size 0.65 0.65) (drill 0.65) (layers *.Cu)) - (pad 5 smd rect (at 1.3 4.2) (size 0.4 1.925) (layers B.Cu B.Paste B.Mask) - (net 1 GND)) - (pad 1 smd rect (at -1.3 4.2) (size 0.4 1.925) (layers B.Cu B.Paste B.Mask) - (net 5 +5V)) - (pad 2 smd rect (at -0.65 4.2) (size 0.4 1.925) (layers B.Cu B.Paste B.Mask) - (net 11 "Net-(J1-Pad2)")) - (pad 4 smd rect (at 0.65 4.2) (size 0.4 1.925) (layers B.Cu B.Paste B.Mask)) - (pad 6 thru_hole oval (at -3.575 4.6) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 6 thru_hole oval (at -3.575 1.15) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 6 thru_hole oval (at 3.575 4.6) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 3 smd rect (at 0 4.2) (size 0.4 1.925) (layers B.Cu B.Paste B.Mask) - (net 12 "Net-(J1-Pad3)")) - (pad 6 thru_hole oval (at 3.575 1.15) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) - (net 1 GND)) - (model ${KISYS3DMOD}/Connector_USB.3dshapes/USB_Micro-B_Molex_47346-0001.step - (offset (xyz 0 3 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A933D3) - (at 45.72 43.18 90) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60CD9BDE) - (attr virtual) - (fp_text reference J20 (at 0 -1.998 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0 90) (size 2 2) (layers F.Cu F.Mask) - (net 15 RXD0)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A933CB) - (at 45.72 38.1 90) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60CD9446) - (attr virtual) - (fp_text reference J19 (at 0 -1.998 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0 90) (size 2 2) (layers F.Cu F.Mask) - (net 14 TXD0)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A933C3) - (at 48.26 45.72 90) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60C91CA2) - (attr virtual) - (fp_text reference J18 (at 0 -1.998 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0 90) (size 2 2) (layers F.Cu F.Mask) - (net 25 CS0)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A933B3) - (at 58.42 48.26 90) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60C8A000) - (attr virtual) - (fp_text reference J16 (at 0 -1.998 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0 90) (size 2 2) (layers F.Cu F.Mask) - (net 16 SCLK)) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer B.Cu) (tedit 59FED5CC) (tstamp 60A8F9F4) - (at 40.64 60.96) - (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x04 2.54mm single row") - (path /60C2CB6F) - (fp_text reference J15 (at 0.762 -9.652) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x04_Male (at 0 -9.95) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end 1.27 -8.89) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 -8.89) (end -1.27 -8.89) (layer B.Fab) (width 0.1)) - (fp_line (start -1.27 -8.89) (end -1.27 0.635) (layer B.Fab) (width 0.1)) - (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start -1.33 -8.95) (end 1.33 -8.95) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end -1.33 -8.95) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.33 -1.27) (end 1.33 -8.95) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.8 1.8) (end -1.8 -9.4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 -9.4) (end 1.8 -9.4) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.8 -9.4) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -3.81 -90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 4 thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 13 VOUT)) - (pad 3 thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 14 TXD0)) - (pad 2 thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 15 RXD0)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 GND)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Diode_SMD:D_MiniMELF (layer F.Cu) (tedit 5905D8F5) (tstamp 6091B1D6) - (at 41.91 65.278 180) - (descr "Diode Mini-MELF (SOD-80)") - (tags "Diode Mini-MELF (SOD-80)") - (path /6078273A/608E7242) - (attr smd) - (fp_text reference D8 (at 0 -2) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Z 12V" (at 0 1.75) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.75 -1) (end -2.55 -1) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.55 -1) (end -2.55 1) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.55 1) (end 1.75 1) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 0) (end 0.75 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 0.4) (end -0.35 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end 0.25 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end -0.35 0.55) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end -0.35 -0.55) (layer F.Fab) (width 0.1)) - (fp_line (start -0.75 0) (end -0.35 0) (layer F.Fab) (width 0.1)) - (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 2 smd rect (at 1.75 0 180) (size 1.3 1.7) (layers F.Cu F.Paste F.Mask) - (net 1 GND)) - (pad 1 smd rect (at -1.75 0 180) (size 1.3 1.7) (layers F.Cu F.Paste F.Mask) - (net 10 +12V)) - (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_MiniMELF.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Diode_SMD:D_MiniMELF (layer F.Cu) (tedit 5905D8F5) (tstamp 6091B1C3) - (at 74.168 67.056) - (descr "Diode Mini-MELF (SOD-80)") - (tags "Diode Mini-MELF (SOD-80)") - (path /6078273A/608E2DA3) - (attr smd) - (fp_text reference D7 (at 0 -2) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Z 5V" (at 0 1.75) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.75 -1) (end -2.55 -1) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.55 -1) (end -2.55 1) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.55 1) (end 1.75 1) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 0) (end 0.75 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 0.4) (end -0.35 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end 0.25 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end -0.35 0.55) (layer F.Fab) (width 0.1)) - (fp_line (start -0.35 0) (end -0.35 -0.55) (layer F.Fab) (width 0.1)) - (fp_line (start -0.75 0) (end -0.35 0) (layer F.Fab) (width 0.1)) - (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 2 smd rect (at 1.75 0) (size 1.3 1.7) (layers F.Cu F.Paste F.Mask) - (net 1 GND)) - (pad 1 smd rect (at -1.75 0) (size 1.3 1.7) (layers F.Cu F.Paste F.Mask) - (net 5 +5V)) - (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_MiniMELF.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60A84A8C) - (at 56.388 42.227 270) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /60BFE0F3) - (attr smd) - (fp_text reference R18 (at 2.985 0 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (pad 1 smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 33 "Net-(D10-Pad2)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60A84A7B) - (at 61.722 42.164 270) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /60BF97A0) - (attr smd) - (fp_text reference R17 (at 3.048 0 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (pad 1 smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 31 "Net-(D9-Pad2)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 60A8458C) - (at 58.166 42.164 270) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /60BEE99B) - (attr smd) - (fp_text reference D10 (at 3.048 0 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 33 "Net-(D10-Pad2)")) - (pad 1 smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 34 /RXLED)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 60AD620E) - (at 59.944 42.164 270) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /60BE9E4B) - (attr smd) - (fp_text reference D9 (at 2.54 0 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 31 "Net-(D9-Pad2)")) - (pad 1 smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 32 /TXLED)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Button_Switch_SMD:SW_SPST_CK_RS282G05A3 (layer B.Cu) (tedit 5A7A67D2) (tstamp 60A834E9) - (at 68.326 33.528) - (descr https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf) - (tags "SPST button tactile switch") - (path /60B5C01C) - (attr smd) - (fp_text reference SW2 (at -1.524 2.54) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value SW_Push (at 0 -3) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start -4.9 -2.05) (end -4.9 2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start 4.9 -2.05) (end -4.9 -2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start 4.9 2.05) (end 4.9 -2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start -4.9 2.05) (end 4.9 2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.75 1) (end 1.75 1) (layer B.Fab) (width 0.1)) - (fp_line (start 1.75 1) (end 1.75 -1) (layer B.Fab) (width 0.1)) - (fp_line (start 1.75 -1) (end -1.75 -1) (layer B.Fab) (width 0.1)) - (fp_line (start -1.75 -1) (end -1.75 1) (layer B.Fab) (width 0.1)) - (fp_line (start -3.06 1.85) (end 3.06 1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start 3.06 1.85) (end 3.06 -1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start 3.06 -1.85) (end -3.06 -1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start -3.06 -1.85) (end -3.06 1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer B.Fab) (width 0.1)) - (fp_line (start 1.5 0.8) (end 1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -1.5 0.8) (end -1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 -1.8) (end 3 -1.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 1.8) (end 3 1.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 1.8) (end -3 -1.8) (layer B.Fab) (width 0.1)) - (fp_line (start 3 1.8) (end 3 -1.8) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 0 2.6) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 2 smd rect (at 3.9 0) (size 1.5 1.5) (layers B.Cu B.Paste B.Mask) - (net 1 GND)) - (pad 1 smd rect (at -3.9 0) (size 1.5 1.5) (layers B.Cu B.Paste B.Mask) - (net 28 FLSH)) - (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_CK_RS282G05A3.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Button_Switch_SMD:SW_SPST_CK_RS282G05A3 (layer B.Cu) (tedit 5A7A67D2) (tstamp 60A834CE) - (at 72.898 57.404 180) - (descr https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf) - (tags "SPST button tactile switch") - (path /60AAD571) - (attr smd) - (fp_text reference SW1 (at 4.826 1.778) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value SW_Push (at 0 -3) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start -4.9 -2.05) (end -4.9 2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start 4.9 -2.05) (end -4.9 -2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start 4.9 2.05) (end 4.9 -2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start -4.9 2.05) (end 4.9 2.05) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.75 1) (end 1.75 1) (layer B.Fab) (width 0.1)) - (fp_line (start 1.75 1) (end 1.75 -1) (layer B.Fab) (width 0.1)) - (fp_line (start 1.75 -1) (end -1.75 -1) (layer B.Fab) (width 0.1)) - (fp_line (start -1.75 -1) (end -1.75 1) (layer B.Fab) (width 0.1)) - (fp_line (start -3.06 1.85) (end 3.06 1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start 3.06 1.85) (end 3.06 -1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start 3.06 -1.85) (end -3.06 -1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start -3.06 -1.85) (end -3.06 1.85) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer B.Fab) (width 0.1)) - (fp_line (start 1.5 0.8) (end 1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -1.5 0.8) (end -1.5 -0.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 -1.8) (end 3 -1.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 1.8) (end 3 1.8) (layer B.Fab) (width 0.1)) - (fp_line (start -3 1.8) (end -3 -1.8) (layer B.Fab) (width 0.1)) - (fp_line (start 3 1.8) (end 3 -1.8) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 0 2.6) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 2 smd rect (at 3.9 0 180) (size 1.5 1.5) (layers B.Cu B.Paste B.Mask) - (net 1 GND)) - (pad 1 smd rect (at -3.9 0 180) (size 1.5 1.5) (layers B.Cu B.Paste B.Mask) - (net 4 nRST)) - (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_CK_RS282G05A3.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 60A832B3) - (at 67.31 39.37 90) - (descr "SOT-23, Standard") - (tags SOT-23) - (path /60AA4E39) - (attr smd) - (fp_text reference Q2 (at 0 -2.5 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value S8050 (at 0 2.5 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1)) - (fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1)) - (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) - (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.5 0.5) (thickness 0.075))) - ) - (pad 3 smd rect (at 1 0 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 28 FLSH)) - (pad 2 smd rect (at -1 0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 20 DTR)) - (pad 1 smd rect (at -1 -0.95 90) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 30 "Net-(Q2-Pad1)")) - (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 60A8329E) - (at 72.644 42.672) - (descr "SOT-23, Standard") - (tags SOT-23) - (path /60AA76E5) - (attr smd) - (fp_text reference Q1 (at 0 -2.5) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value S8050 (at 0 2.5) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1)) - (fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1)) - (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) - (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.5 0.5) (thickness 0.075))) - ) - (pad 3 smd rect (at 1 0) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 4 nRST)) - (pad 2 smd rect (at -1 0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 19 RTS)) - (pad 1 smd rect (at -1 -0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) - (net 29 "Net-(Q1-Pad1)")) - (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 60A83289) - (at 76.2 43.18) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60ABDD61) - (attr virtual) - (fp_text reference J14 (at 0 -1.998) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 28 FLSH)) - ) - - (module Capacitor_SMD:C_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60A82EFD) - (at 75.692 38.608 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags capacitor) - (path /60B5C010) - (attr smd) - (fp_text reference C9 (at 0 -1.43 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100nF (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 28 FLSH)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module fiatlux:fiat (layer B.Cu) (tedit 609107ED) (tstamp 60924796) - (at 72.898 63.246 180) - (fp_text reference G*** (at 0 0) (layer B.SilkS) hide - (effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror)) - ) - (fp_text value LOGO (at 0.75 0) (layer B.SilkS) hide - (effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror)) - ) - (fp_poly (pts (xy -1.83896 1.49352) (xy -2.53492 1.49352) (xy -2.535078 1.43891) (xy -2.535123 1.426758) - (xy -2.535214 1.405148) (xy -2.535349 1.374781) (xy -2.535524 1.336359) (xy -2.535735 1.290584) - (xy -2.535979 1.238157) (xy -2.536254 1.179781) (xy -2.536555 1.116156) (xy -2.53688 1.047985) - (xy -2.537224 0.975969) (xy -2.537586 0.90081) (xy -2.537961 0.823209) (xy -2.538166 0.78105) - (xy -2.541096 0.1778) (xy -2.00152 0.1778) (xy -2.00152 -0.35052) (xy -2.54043 -0.35052) - (xy -2.537779 -0.52705) (xy -2.537288 -0.562694) (xy -2.536747 -0.607127) (xy -2.536169 -0.658978) - (xy -2.535569 -0.716878) (xy -2.534959 -0.779454) (xy -2.534352 -0.845336) (xy -2.533761 -0.913154) - (xy -2.533201 -0.981537) (xy -2.532683 -1.049114) (xy -2.532463 -1.0795) (xy -2.531941 -1.150661) - (xy -2.531351 -1.226643) (xy -2.53071 -1.305599) (xy -2.530034 -1.385679) (xy -2.529339 -1.465035) - (xy -2.528642 -1.541818) (xy -2.527958 -1.614178) (xy -2.527304 -1.680268) (xy -2.526696 -1.738239) - (xy -2.526636 -1.74371) (xy -2.523475 -2.032) (xy -2.843858 -2.032) (xy -2.899957 -2.031941) - (xy -2.953004 -2.031771) (xy -3.002135 -2.031501) (xy -3.046484 -2.03114) (xy -3.085186 -2.030699) - (xy -3.117378 -2.030189) (xy -3.142194 -2.029618) (xy -3.15877 -2.028998) (xy -3.16624 -2.028339) - (xy -3.166576 -2.02819) (xy -3.167504 -2.021938) (xy -3.16838 -2.007561) (xy -3.169112 -1.987092) - (xy -3.169611 -1.962566) (xy -3.169664 -1.95834) (xy -3.170121 -1.929378) (xy -3.170799 -1.900281) - (xy -3.171603 -1.87456) (xy -3.172382 -1.85674) (xy -3.173123 -1.840718) (xy -3.174047 -1.816715) - (xy -3.175079 -1.786905) (xy -3.176144 -1.753464) (xy -3.177168 -1.718567) (xy -3.177352 -1.71196) - (xy -3.178403 -1.674982) (xy -3.17954 -1.637121) (xy -3.180677 -1.601097) (xy -3.181728 -1.56963) - (xy -3.182606 -1.545442) (xy -3.18265 -1.54432) (xy -3.183586 -1.519003) (xy -3.184696 -1.486732) - (xy -3.185872 -1.450712) (xy -3.18701 -1.414144) (xy -3.187669 -1.39192) (xy -3.188721 -1.356233) - (xy -3.189776 -1.321799) (xy -3.190892 -1.286806) (xy -3.192132 -1.249439) (xy -3.193556 -1.207887) - (xy -3.195223 -1.160335) (xy -3.197195 -1.104972) (xy -3.197836 -1.08712) (xy -3.198841 -1.057903) - (xy -3.200008 -1.022094) (xy -3.201222 -0.983258) (xy -3.202373 -0.94496) (xy -3.202962 -0.92456) - (xy -3.204012 -0.888761) (xy -3.205181 -0.850923) (xy -3.206362 -0.814427) (xy -3.207446 -0.782652) - (xy -3.208012 -0.76708) (xy -3.208983 -0.739826) (xy -3.210118 -0.705797) (xy -3.211306 -0.668372) - (xy -3.212441 -0.630931) (xy -3.213058 -0.6096) (xy -3.214108 -0.573801) (xy -3.215281 -0.535963) - (xy -3.216468 -0.499466) (xy -3.21756 -0.467691) (xy -3.218131 -0.45212) (xy -3.219114 -0.424867) - (xy -3.220262 -0.390838) (xy -3.221466 -0.353413) (xy -3.222616 -0.315972) (xy -3.223242 -0.29464) - (xy -3.224309 -0.258555) (xy -3.225497 -0.220158) (xy -3.226695 -0.182922) (xy -3.227792 -0.150317) - (xy -3.228348 -0.13462) (xy -3.229332 -0.106388) (xy -3.230479 -0.071472) (xy -3.231678 -0.033342) - (xy -3.232821 0.004529) (xy -3.233425 0.0254) (xy -3.234453 0.059554) (xy -3.235597 0.094178) - (xy -3.236755 0.126404) (xy -3.237826 0.153363) (xy -3.238473 0.16764) (xy -3.239329 0.187682) - (xy -3.240332 0.215467) (xy -3.241405 0.248581) (xy -3.242469 0.284608) (xy -3.243448 0.321136) - (xy -3.243611 0.32766) (xy -3.244565 0.364244) (xy -3.245615 0.400978) (xy -3.246682 0.435391) - (xy -3.24769 0.465008) (xy -3.248561 0.487357) (xy -3.248689 0.49022) (xy -3.249563 0.511729) - (xy -3.250588 0.54074) (xy -3.251679 0.574603) (xy -3.25275 0.610661) (xy -3.253687 0.64516) - (xy -3.254659 0.680578) (xy -3.255743 0.716139) (xy -3.256851 0.749259) (xy -3.257898 0.777351) - (xy -3.258783 0.79756) (xy -3.259628 0.817247) (xy -3.260615 0.844777) (xy -3.261671 0.877835) - (xy -3.262723 0.914108) (xy -3.263698 0.951281) (xy -3.263974 0.96266) (xy -3.264894 0.999006) - (xy -3.265896 1.034578) (xy -3.266912 1.067222) (xy -3.267874 1.094781) (xy -3.268713 1.115099) - (xy -3.268967 1.12014) (xy -3.269805 1.138156) (xy -3.270808 1.163938) (xy -3.271892 1.195093) - (xy -3.272975 1.22923) (xy -3.273974 1.263957) (xy -3.274 1.26492) (xy -3.275024 1.301315) - (xy -3.276147 1.338778) (xy -3.277279 1.374449) (xy -3.27833 1.405465) (xy -3.279149 1.42748) - (xy -3.280057 1.451929) (xy -3.281132 1.483595) (xy -3.282281 1.51954) (xy -3.283408 1.556825) - (xy -3.284283 1.5875) (xy -3.285298 1.622848) (xy -3.286398 1.658648) (xy -3.287494 1.692182) - (xy -3.288498 1.720727) (xy -3.289249 1.7399) (xy -3.290046 1.760317) (xy -3.291045 1.788546) - (xy -3.292168 1.822243) (xy -3.293338 1.859064) (xy -3.294477 1.896667) (xy -3.294832 1.90881) - (xy -3.298249 2.02692) (xy -1.83896 2.02692) (xy -1.83896 1.49352)) (layer B.SilkS) (width 0.01)) - (fp_poly (pts (xy -0.835063 1.51765) (xy -0.835374 1.462396) (xy -0.835707 1.397734) (xy -0.836058 1.32442) - (xy -0.836425 1.243206) (xy -0.836806 1.154845) (xy -0.837197 1.060091) (xy -0.837595 0.959698) - (xy -0.837998 0.854419) (xy -0.838403 0.745007) (xy -0.838807 0.632215) (xy -0.839208 0.516798) - (xy -0.839602 0.399508) (xy -0.839987 0.281098) (xy -0.84036 0.162323) (xy -0.840718 0.043936) - (xy -0.841058 -0.07331) (xy -0.841286 -0.15494) (xy -0.841592 -0.265594) (xy -0.8419 -0.374994) - (xy -0.842208 -0.482592) (xy -0.842515 -0.587843) (xy -0.842817 -0.690197) (xy -0.843115 -0.789109) - (xy -0.843405 -0.884031) (xy -0.843687 -0.974416) (xy -0.843958 -1.059716) (xy -0.844217 -1.139386) - (xy -0.844462 -1.212877) (xy -0.844691 -1.279642) (xy -0.844902 -1.339135) (xy -0.845095 -1.390808) - (xy -0.845266 -1.434114) (xy -0.845415 -1.468506) (xy -0.845539 -1.493437) (xy -0.845569 -1.4986) - (xy -0.845882 -1.551559) (xy -0.846221 -1.611079) (xy -0.846568 -1.673898) (xy -0.846906 -1.73675) - (xy -0.847216 -1.796374) (xy -0.847481 -1.849505) (xy -0.84751 -1.85547) (xy -0.84836 -2.032) - (xy -1.507362 -2.032) (xy -1.510286 -2.00533) (xy -1.511157 -1.992508) (xy -1.511974 -1.971391) - (xy -1.512692 -1.943846) (xy -1.513267 -1.911738) (xy -1.513654 -1.876931) (xy -1.513757 -1.860362) - (xy -1.513992 -1.826472) (xy -1.514355 -1.79584) (xy -1.514814 -1.769974) (xy -1.515341 -1.750384) - (xy -1.515904 -1.738578) (xy -1.516233 -1.735902) (xy -1.516702 -1.729683) (xy -1.517269 -1.714361) - (xy -1.517912 -1.690993) (xy -1.518607 -1.660637) (xy -1.519331 -1.624349) (xy -1.520062 -1.583185) - (xy -1.520777 -1.538203) (xy -1.521273 -1.50368) (xy -1.521988 -1.453903) (xy -1.522747 -1.404929) - (xy -1.523523 -1.358196) (xy -1.524292 -1.315143) (xy -1.525026 -1.277206) (xy -1.525699 -1.245826) - (xy -1.526286 -1.222439) (xy -1.526541 -1.21412) (xy -1.527142 -1.193567) (xy -1.52785 -1.1646) - (xy -1.528628 -1.128961) (xy -1.529443 -1.088395) (xy -1.530258 -1.044644) (xy -1.531037 -0.999454) - (xy -1.531506 -0.97028) (xy -1.53226 -0.923845) (xy -1.533085 -0.876631) (xy -1.533941 -0.830607) - (xy -1.53479 -0.787741) (xy -1.535594 -0.750002) (xy -1.536314 -0.719359) (xy -1.536664 -0.70612) - (xy -1.537381 -0.678446) (xy -1.538213 -0.642913) (xy -1.539111 -0.60182) (xy -1.540025 -0.557466) - (xy -1.540907 -0.51215) (xy -1.541709 -0.468172) (xy -1.541723 -0.46736) (xy -1.542357 -0.431338) - (xy -1.542964 -0.397517) (xy -1.543565 -0.364735) (xy -1.544185 -0.331828) (xy -1.544847 -0.297631) - (xy -1.545574 -0.260982) (xy -1.546389 -0.220717) (xy -1.547316 -0.175671) (xy -1.548378 -0.124683) - (xy -1.549597 -0.066587) (xy -1.550998 -0.00022) (xy -1.551971 0.04572) (xy -1.552755 0.084036) - (xy -1.553646 0.12962) (xy -1.554588 0.179585) (xy -1.555528 0.231041) (xy -1.556413 0.281098) - (xy -1.557075 0.32004) (xy -1.557844 0.364341) (xy -1.558701 0.410358) (xy -1.559598 0.455712) - (xy -1.560486 0.498026) (xy -1.561316 0.534923) (xy -1.562038 0.56388) (xy -1.562761 0.592815) - (xy -1.563598 0.629572) (xy -1.564498 0.671816) (xy -1.565415 0.717209) (xy -1.5663 0.763416) - (xy -1.567104 0.808101) (xy -1.567141 0.81026) (xy -1.567953 0.856124) (xy -1.568852 0.904814) - (xy -1.569786 0.953714) (xy -1.570705 1.000209) (xy -1.571558 1.04168) (xy -1.57227 1.07442) - (xy -1.573043 1.109737) (xy -1.573939 1.152379) (xy -1.574898 1.199515) (xy -1.575864 1.248312) - (xy -1.57678 1.295938) (xy -1.577387 1.32842) (xy -1.578227 1.373394) (xy -1.579154 1.421612) - (xy -1.58011 1.470242) (xy -1.58104 1.516451) (xy -1.581888 1.557407) (xy -1.582424 1.58242) - (xy -1.583132 1.615431) (xy -1.583984 1.656186) (xy -1.58493 1.702272) (xy -1.585922 1.751274) - (xy -1.586911 1.80078) (xy -1.587847 1.848375) (xy -1.588034 1.858011) (xy -1.591312 2.02692) - (xy -0.832033 2.02692) (xy -0.835063 1.51765)) (layer B.SilkS) (width 0.01)) - (fp_poly (pts (xy 1.034934 1.95199) (xy 1.10247 1.822561) (xy 1.165366 1.686545) (xy 1.223851 1.543346) - (xy 1.278151 1.392371) (xy 1.328497 1.233025) (xy 1.373254 1.07188) (xy 1.377455 1.055525) - (xy 1.381794 1.038087) (xy 1.386572 1.01827) (xy 1.392092 0.994775) (xy 1.398655 0.966307) - (xy 1.406564 0.931568) (xy 1.416121 0.889261) (xy 1.425321 0.84836) (xy 1.429551 0.828396) - (xy 1.435095 0.800567) (xy 1.441557 0.767026) (xy 1.448541 0.729921) (xy 1.455651 0.691404) - (xy 1.462488 0.653627) (xy 1.468659 0.618739) (xy 1.473765 0.588892) (xy 1.47741 0.566235) - (xy 1.477792 0.563687) (xy 1.481281 0.539957) (xy 1.485435 0.511474) (xy 1.489942 0.480401) - (xy 1.49449 0.448906) (xy 1.498766 0.419152) (xy 1.50246 0.393307) (xy 1.505258 0.373534) - (xy 1.506686 0.36322) (xy 1.509065 0.345584) (xy 1.511268 0.329288) (xy 1.511488 0.32766) - (xy 1.51353 0.311798) (xy 1.516382 0.288617) (xy 1.519716 0.260892) (xy 1.523205 0.231401) - (xy 1.526521 0.20292) (xy 1.529335 0.178225) (xy 1.531319 0.160094) (xy 1.53159 0.15748) - (xy 1.533679 0.137813) (xy 1.535793 0.119191) (xy 1.536699 0.11176) (xy 1.538722 0.093921) - (xy 1.541337 0.06795) (xy 1.544371 0.035844) (xy 1.54765 -0.000396) (xy 1.551002 -0.038773) - (xy 1.554253 -0.077288) (xy 1.557229 -0.113942) (xy 1.559758 -0.146736) (xy 1.561666 -0.173673) - (xy 1.562248 -0.18288) (xy 1.563744 -0.205784) (xy 1.565255 -0.225345) (xy 1.566573 -0.23905) - (xy 1.567275 -0.24384) (xy 1.568126 -0.251367) (xy 1.569259 -0.267092) (xy 1.570554 -0.289058) - (xy 1.571892 -0.315311) (xy 1.572573 -0.3302) (xy 1.573857 -0.357923) (xy 1.575112 -0.38239) - (xy 1.576229 -0.401646) (xy 1.577098 -0.413735) (xy 1.577419 -0.41656) (xy 1.578047 -0.423882) - (xy 1.578954 -0.439602) (xy 1.580051 -0.461967) (xy 1.581254 -0.489219) (xy 1.582419 -0.51816) - (xy 1.583671 -0.549072) (xy 1.584932 -0.577373) (xy 1.586107 -0.601133) (xy 1.587101 -0.618425) - (xy 1.58777 -0.626919) (xy 1.589141 -0.643946) (xy 1.590416 -0.670331) (xy 1.591593 -0.705273) - (xy 1.592671 -0.74797) (xy 1.593648 -0.797621) (xy 1.594521 -0.853425) (xy 1.595289 -0.91458) - (xy 1.595949 -0.980285) (xy 1.596501 -1.049739) (xy 1.596941 -1.122139) (xy 1.597267 -1.196686) - (xy 1.597479 -1.272576) (xy 1.597573 -1.34901) (xy 1.597548 -1.425185) (xy 1.597401 -1.500301) - (xy 1.597132 -1.573555) (xy 1.596737 -1.644146) (xy 1.596216 -1.711274) (xy 1.595565 -1.774136) - (xy 1.594783 -1.831931) (xy 1.593868 -1.883859) (xy 1.592818 -1.929117) (xy 1.591631 -1.966903) - (xy 1.591109 -1.97993) (xy 1.588858 -2.032) (xy 0.996827 -2.032) (xy 0.993789 -1.90373) - (xy 0.993005 -1.868174) (xy 0.992138 -1.824628) (xy 0.991226 -1.775263) (xy 0.990307 -1.722248) - (xy 0.989418 -1.667752) (xy 0.988598 -1.613945) (xy 0.987974 -1.56972) (xy 0.987299 -1.522606) - (xy 0.986567 -1.476678) (xy 0.985808 -1.433384) (xy 0.98505 -1.394175) (xy 0.98432 -1.360501) - (xy 0.983647 -1.333813) (xy 0.98306 -1.31556) (xy 0.982961 -1.31318) (xy 0.982119 -1.291887) - (xy 0.981114 -1.263028) (xy 0.980028 -1.229191) (xy 0.978945 -1.192968) (xy 0.977948 -1.156946) - (xy 0.977915 -1.1557) (xy 0.976932 -1.120885) (xy 0.975855 -1.086862) (xy 0.974764 -1.055908) - (xy 0.973739 -1.030303) (xy 0.972862 -1.012327) (xy 0.972778 -1.01092) (xy 0.971683 -0.991003) - (xy 0.970381 -0.964307) (xy 0.969029 -0.934202) (xy 0.967785 -0.904062) (xy 0.967693 -0.9017) - (xy 0.965967 -0.862311) (xy 0.963709 -0.818525) (xy 0.961025 -0.771826) (xy 0.958019 -0.723699) - (xy 0.954798 -0.67563) (xy 0.951468 -0.629105) (xy 0.948133 -0.585608) (xy 0.9449 -0.546625) - (xy 0.941873 -0.513641) (xy 0.93916 -0.488142) (xy 0.9373 -0.474226) (xy 0.935748 -0.46324) - (xy 0.933569 -0.446485) (xy 0.931968 -0.433586) (xy 0.929132 -0.411236) (xy 0.926639 -0.394641) - (xy 0.923791 -0.379454) (xy 0.921702 -0.36957) (xy 0.918672 -0.355599) (xy 0.55651 -0.3556) - (xy 0.194348 -0.3556) (xy 0.19125 -0.37973) (xy 0.19083 -0.387978) (xy 0.190415 -0.4057) - (xy 0.19001 -0.43221) (xy 0.189619 -0.466821) (xy 0.189247 -0.508846) (xy 0.188898 -0.5576) - (xy 0.188576 -0.612396) (xy 0.188285 -0.672547) (xy 0.188031 -0.737369) (xy 0.187818 -0.806173) - (xy 0.187649 -0.878274) (xy 0.18753 -0.952985) (xy 0.187519 -0.96266) (xy 0.187403 -1.043623) - (xy 0.187238 -1.12613) (xy 0.187031 -1.209071) (xy 0.186784 -1.291337) (xy 0.186504 -1.371819) - (xy 0.186193 -1.449408) (xy 0.185858 -1.522994) (xy 0.185502 -1.591469) (xy 0.18513 -1.653722) - (xy 0.184747 -1.708644) (xy 0.184358 -1.755128) (xy 0.184142 -1.77673) (xy 0.181399 -2.032) - (xy -0.4318 -2.032) (xy -0.432828 -1.89611) (xy -0.433135 -1.858737) (xy -0.433469 -1.823653) - (xy -0.433811 -1.792462) (xy -0.434143 -1.766771) (xy -0.434444 -1.748183) (xy -0.434676 -1.738834) - (xy -0.434879 -1.729973) (xy -0.435176 -1.711911) (xy -0.435557 -1.685608) (xy -0.436008 -1.652023) - (xy -0.436517 -1.612116) (xy -0.437073 -1.566846) (xy -0.437662 -1.517171) (xy -0.438273 -1.464052) - (xy -0.438863 -1.411174) (xy -0.439527 -1.352592) (xy -0.440228 -1.294117) (xy -0.440947 -1.237058) - (xy -0.441668 -1.182722) (xy -0.44237 -1.132419) (xy -0.443037 -1.087457) (xy -0.44365 -1.049144) - (xy -0.444192 -1.018788) (xy -0.444511 -1.0033) (xy -0.445039 -0.976986) (xy -0.445646 -0.942075) - (xy -0.446308 -0.900131) (xy -0.447004 -0.852716) (xy -0.44771 -0.801393) (xy -0.448404 -0.747724) - (xy -0.449065 -0.693273) (xy -0.449554 -0.65024) (xy -0.450183 -0.594789) (xy -0.450868 -0.537629) - (xy -0.451585 -0.480536) (xy -0.452312 -0.425285) (xy -0.453023 -0.373652) (xy -0.453695 -0.327415) - (xy -0.454305 -0.288347) (xy -0.454673 -0.2667) (xy -0.455263 -0.23181) (xy -0.455936 -0.188751) - (xy -0.456665 -0.139512) (xy -0.457422 -0.086083) (xy -0.458179 -0.030454) (xy -0.458907 0.025387) - (xy -0.459579 0.079448) (xy -0.459723 0.09144) (xy -0.460383 0.145383) (xy -0.460472 0.1524) - (xy 0.160985 0.1524) (xy 0.892317 0.1524) (xy 0.880654 0.23749) (xy 0.876557 0.267411) - (xy 0.872746 0.295305) (xy 0.86952 0.318969) (xy 0.86718 0.3362) (xy 0.866277 0.3429) - (xy 0.865199 0.350909) (xy 0.864132 0.358531) (xy 0.862872 0.36703) (xy 0.861217 0.37767) - (xy 0.858963 0.391714) (xy 0.855908 0.410426) (xy 0.851846 0.43507) (xy 0.846576 0.466909) - (xy 0.839894 0.507207) (xy 0.838077 0.51816) (xy 0.812629 0.661953) (xy 0.785494 0.796365) - (xy 0.756478 0.922067) (xy 0.725389 1.039729) (xy 0.692033 1.150021) (xy 0.656216 1.253613) - (xy 0.617746 1.351173) (xy 0.57643 1.443373) (xy 0.563594 1.469798) (xy 0.536785 1.524) - (xy 0.16764 1.524) (xy 0.167591 1.34747) (xy 0.167549 1.316501) (xy 0.167442 1.276404) - (xy 0.167274 1.22821) (xy 0.167051 1.172951) (xy 0.166776 1.111658) (xy 0.166457 1.045364) - (xy 0.166096 0.975099) (xy 0.1657 0.901895) (xy 0.165274 0.826784) (xy 0.164822 0.750797) - (xy 0.164349 0.674965) (xy 0.164264 0.66167) (xy 0.160985 0.1524) (xy -0.460472 0.1524) - (xy -0.461108 0.202051) (xy -0.461869 0.259362) (xy -0.462637 0.315235) (xy -0.463384 0.367586) - (xy -0.46408 0.414335) (xy -0.464698 0.453399) (xy -0.464804 0.45974) (xy -0.465395 0.496711) - (xy -0.466068 0.541811) (xy -0.466794 0.593009) (xy -0.467548 0.648274) (xy -0.4683 0.705577) - (xy -0.469023 0.762887) (xy -0.469691 0.818173) (xy -0.469865 0.83312) (xy -0.470507 0.886631) - (xy -0.471213 0.94203) (xy -0.471956 0.997417) (xy -0.47271 1.050894) (xy -0.473446 1.100561) - (xy -0.474139 1.144519) (xy -0.474761 1.18087) (xy -0.474954 1.19126) (xy -0.475503 1.222669) - (xy -0.476126 1.262566) (xy -0.476799 1.309282) (xy -0.4775 1.361145) (xy -0.478209 1.416486) - (xy -0.478901 1.473633) (xy -0.479557 1.530917) (xy -0.480082 1.57988) (xy -0.480682 1.634304) - (xy -0.481348 1.688734) (xy -0.482058 1.741718) (xy -0.482789 1.791804) (xy -0.48352 1.837542) - (xy -0.484228 1.87748) (xy -0.484891 1.910165) (xy -0.485488 1.934148) (xy -0.485489 1.934211) - (xy -0.488182 2.02692) (xy 0.993455 2.02692) (xy 1.034934 1.95199)) (layer B.SilkS) (width 0.01)) - (fp_poly (pts (xy 3.301653 1.770381) (xy 3.302418 1.51384) (xy 3.045969 1.51384) (xy 2.99591 1.513767) - (xy 2.948991 1.513557) (xy 2.906182 1.513224) (xy 2.868451 1.512783) (xy 2.836767 1.512247) - (xy 2.812097 1.511632) (xy 2.795411 1.51095) (xy 2.787676 1.510218) (xy 2.787256 1.51003) - (xy 2.786461 1.504057) (xy 2.785484 1.489424) (xy 2.784395 1.467629) (xy 2.783265 1.440171) - (xy 2.782165 1.408545) (xy 2.781657 1.39192) (xy 2.780572 1.356531) (xy 2.779433 1.322459) - (xy 2.778315 1.291744) (xy 2.777294 1.266426) (xy 2.776445 1.248546) (xy 2.776214 1.2446) - (xy 2.775374 1.228726) (xy 2.774344 1.205052) (xy 2.773216 1.175934) (xy 2.772081 1.14373) - (xy 2.771161 1.11506) (xy 2.770082 1.0816) (xy 2.768919 1.048715) (xy 2.767767 1.018902) - (xy 2.766722 0.994656) (xy 2.765999 0.98044) (xy 2.765085 0.962217) (xy 2.763995 0.936535) - (xy 2.762833 0.906091) (xy 2.761705 0.873583) (xy 2.761065 0.85344) (xy 2.75997 0.819353) - (xy 2.758746 0.784061) (xy 2.757509 0.750787) (xy 2.756379 0.722752) (xy 2.755867 0.7112) - (xy 2.754974 0.691568) (xy 2.754071 0.67073) (xy 2.753109 0.647396) (xy 2.752036 0.620277) - (xy 2.750803 0.588079) (xy 2.749359 0.549514) (xy 2.747654 0.503291) (xy 2.745784 0.45212) - (xy 2.743806 0.397888) (xy 2.742146 0.352629) (xy 2.740761 0.31516) (xy 2.739604 0.284301) - (xy 2.73863 0.258871) (xy 2.737795 0.237688) (xy 2.737052 0.219572) (xy 2.736357 0.20334) - (xy 2.735664 0.187813) (xy 2.735555 0.18542) (xy 2.734553 0.161812) (xy 2.73337 0.131386) - (xy 2.732132 0.097481) (xy 2.730962 0.063436) (xy 2.73055 0.0508) (xy 2.729429 0.017307) - (xy 2.728176 -0.017644) (xy 2.726922 -0.05061) (xy 2.725793 -0.07815) (xy 2.72543 -0.08636) - (xy 2.724623 -0.104367) (xy 2.723797 -0.123553) (xy 2.722912 -0.144961) (xy 2.721928 -0.169637) - (xy 2.720804 -0.198624) (xy 2.719499 -0.232969) (xy 2.717975 -0.273714) (xy 2.716191 -0.321905) - (xy 2.714105 -0.378587) (xy 2.712713 -0.41656) (xy 2.71122 -0.457029) (xy 2.709681 -0.498217) - (xy 2.708185 -0.537784) (xy 2.706821 -0.573392) (xy 2.705678 -0.602701) (xy 2.705097 -0.61722) - (xy 2.704142 -0.6412) (xy 2.702907 -0.672995) (xy 2.701479 -0.710265) (xy 2.69995 -0.75067) - (xy 2.698408 -0.791871) (xy 2.697444 -0.81788) (xy 2.695958 -0.857757) (xy 2.694439 -0.897811) - (xy 2.692972 -0.935837) (xy 2.691645 -0.969631) (xy 2.69054 -0.99699) (xy 2.689955 -1.01092) - (xy 2.688726 -1.040284) (xy 2.687327 -1.075111) (xy 2.685942 -1.110708) (xy 2.684922 -1.13792) - (xy 2.682943 -1.191903) (xy 2.681287 -1.23693) (xy 2.67991 -1.274197) (xy 2.678766 -1.3049) - (xy 2.677809 -1.330235) (xy 2.676995 -1.3514) (xy 2.676278 -1.369591) (xy 2.675613 -1.386004) - (xy 2.674954 -1.401835) (xy 2.674622 -1.4097) (xy 2.673558 -1.435711) (xy 2.672288 -1.4682) - (xy 2.670952 -1.503492) (xy 2.669693 -1.537908) (xy 2.669374 -1.54686) (xy 2.668212 -1.578537) - (xy 2.666974 -1.610348) (xy 2.665783 -1.63925) (xy 2.664763 -1.662203) (xy 2.664443 -1.66878) - (xy 2.663617 -1.686793) (xy 2.662549 -1.71257) (xy 2.661333 -1.743719) (xy 2.660061 -1.777851) - (xy 2.658828 -1.812575) (xy 2.658794 -1.81356) (xy 2.657647 -1.846058) (xy 2.656546 -1.875953) - (xy 2.655561 -1.901435) (xy 2.654762 -1.920696) (xy 2.65422 -1.931929) (xy 2.654156 -1.93294) - (xy 2.653579 -1.945267) (xy 2.652994 -1.964091) (xy 2.652511 -1.985747) (xy 2.652437 -1.99009) - (xy 2.65176 -2.032) (xy 2.005977 -2.032) (xy 2.008666 -2.01041) (xy 2.008941 -2.003284) - (xy 2.009238 -1.986483) (xy 2.009553 -1.960488) (xy 2.009883 -1.925782) (xy 2.010227 -1.88285) - (xy 2.010581 -1.832175) (xy 2.010943 -1.774239) (xy 2.01131 -1.709526) (xy 2.011681 -1.638519) - (xy 2.012052 -1.561702) (xy 2.01242 -1.479558) (xy 2.012784 -1.39257) (xy 2.013141 -1.301221) - (xy 2.013487 -1.205995) (xy 2.013822 -1.107375) (xy 2.014141 -1.005844) (xy 2.014372 -0.9271) - (xy 2.014679 -0.821238) (xy 2.014996 -0.716559) (xy 2.01532 -0.613642) (xy 2.015648 -0.513066) - (xy 2.015979 -0.415413) (xy 2.01631 -0.32126) (xy 2.016639 -0.231189) (xy 2.016963 -0.145778) - (xy 2.017281 -0.065608) (xy 2.01759 0.008742) (xy 2.017888 0.076693) (xy 2.018172 0.137664) - (xy 2.01844 0.191075) (xy 2.018691 0.236348) (xy 2.018921 0.272902) (xy 2.019128 0.300158) - (xy 2.019221 0.30988) (xy 2.019417 0.33284) (xy 2.019622 0.364328) (xy 2.019833 0.403498) - (xy 2.020047 0.449502) (xy 2.020263 0.501491) (xy 2.020479 0.558619) (xy 2.020692 0.620036) - (xy 2.020901 0.684896) (xy 2.021103 0.752351) (xy 2.021297 0.821552) (xy 2.02148 0.891653) - (xy 2.02165 0.961804) (xy 2.021806 1.031159) (xy 2.021945 1.098869) (xy 2.022065 1.164086) - (xy 2.022164 1.225964) (xy 2.02224 1.283654) (xy 2.022291 1.336308) (xy 2.022315 1.383078) - (xy 2.022309 1.423117) (xy 2.022273 1.455577) (xy 2.022203 1.47961) (xy 2.022098 1.494368) - (xy 2.022093 1.49479) (xy 2.02184 1.51384) (xy 1.50368 1.51384) (xy 1.50368 2.02692) - (xy 3.300889 2.02692) (xy 3.301653 1.770381)) (layer B.SilkS) (width 0.01)) - ) - - (module Package_TO_SOT_SMD:SOT-223-3_TabPin2 (layer F.Cu) (tedit 5A02FF57) (tstamp 6091CC95) - (at 60.198 61.722) - (descr "module CMS SOT223 4 pins") - (tags "CMS SOT") - (path /6078273A/6078C93E) - (attr smd) - (fp_text reference U3 (at 0 -4.5) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value AMS1117-3.3 (at 0 4.5) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1)) - (fp_line (start -1.85 3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1)) - (fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer F.Fab) (width 0.1)) - (fp_line (start -1.85 3.41) (end 1.91 3.41) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer F.Fab) (width 0.1)) - (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer F.Fab) (width 0.1)) - (fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start -4.4 3.6) (end 4.4 3.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.8 0.8) (thickness 0.12))) - ) - (pad 1 smd rect (at -3.15 -2.3) (size 2 1.5) (layers F.Cu F.Paste F.Mask) - (net 1 GND)) - (pad 3 smd rect (at -3.15 2.3) (size 2 1.5) (layers F.Cu F.Paste F.Mask) - (net 2 /Power/LDO_IN)) - (pad 2 smd rect (at -3.15 0) (size 2 1.5) (layers F.Cu F.Paste F.Mask) - (net 3 +3V3)) - (pad 2 smd rect (at 3.15 0) (size 2 3.8) (layers F.Cu F.Paste F.Mask) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm (layer F.Cu) (tedit 5DC5F6A4) (tstamp 6091B4CB) - (at 58.42 37.338 270) - (descr "QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py") - (tags "QFN NoLead") - (path /607804B7) - (attr smd) - (fp_text reference U2 (at 2.032 -3.81 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value CP2102-GMR (at 0 3.8 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.1 3.1) (end 3.1 -3.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.1 3.1) (end 3.1 3.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.1 -3.1) (end -3.1 3.1) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.5 -1.5) (end -1.5 -2.5) (layer F.Fab) (width 0.1)) - (fp_line (start -2.5 2.5) (end -2.5 -1.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.5 2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1)) - (fp_line (start -1.5 -2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1)) - (fp_line (start -1.885 -2.61) (end -2.61 -2.61) (layer F.SilkS) (width 0.12)) - (fp_line (start 2.61 2.61) (end 2.61 1.885) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.885 2.61) (end 2.61 2.61) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.61 2.61) (end -2.61 1.885) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.885 2.61) (end -2.61 2.61) (layer F.SilkS) (width 0.12)) - (fp_line (start 2.61 -2.61) (end 2.61 -1.885) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.885 -2.61) (end 2.61 -2.61) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad "" smd roundrect (at 1.12 1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at 1.12 0 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at 1.12 -1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at 0 1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at 0 0 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at 0 -1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at -1.12 1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at -1.12 0 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad "" smd roundrect (at -1.12 -1.12 270) (size 0.9 0.9) (layers F.Paste) (roundrect_rratio 0.25)) - (pad 29 smd rect (at 0 0 270) (size 3.35 3.35) (layers F.Cu F.Mask) - (net 1 GND)) - (pad 28 smd roundrect (at -1.5 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 20 DTR)) - (pad 27 smd roundrect (at -1 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 26 smd roundrect (at -0.5 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 22 "Net-(R9-Pad2)")) - (pad 25 smd roundrect (at 0 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 14 TXD0)) - (pad 24 smd roundrect (at 0.5 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 19 RTS)) - (pad 23 smd roundrect (at 1 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 22 smd roundrect (at 1.5 -2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 21 smd roundrect (at 2.45 -1.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 20 smd roundrect (at 2.45 -1 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 19 smd roundrect (at 2.45 -0.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 32 /TXLED)) - (pad 18 smd roundrect (at 2.45 0 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 34 /RXLED)) - (pad 17 smd roundrect (at 2.45 0.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 16 smd roundrect (at 2.45 1 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 15 smd roundrect (at 2.45 1.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 14 smd roundrect (at 1.5 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 13 smd roundrect (at 1 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 12 smd roundrect (at 0.5 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 11 smd roundrect (at 0 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 10 smd roundrect (at -0.5 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 9 smd roundrect (at -1 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 8 smd roundrect (at -1.5 2.45 270) (size 0.25 0.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 5 +5V)) - (pad 7 smd roundrect (at -2.45 1.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (pad 6 smd roundrect (at -2.45 1 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (pad 5 smd roundrect (at -2.45 0.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 11 "Net-(J1-Pad2)")) - (pad 4 smd roundrect (at -2.45 0 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 12 "Net-(J1-Pad3)")) - (pad 3 smd roundrect (at -2.45 -0.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 2 smd roundrect (at -2.45 -1 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (pad 1 smd roundrect (at -2.45 -1.5 270) (size 0.8 0.25) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)) - (model ${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module RF_Module:ESP-12E locked (layer B.Cu) (tedit 5A030172) (tstamp 6091B490) - (at 74.168 45.72 90) - (descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf") - (tags "Wi-Fi Module") - (path /6091C48A) - (attr smd) - (fp_text reference U1 (at -0.508 -13.97 90) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value ESP-12E (at -0.06 12.78 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 5.56 4.8) (end 8.12 7.36) (layer Dwgs.User) (width 0.12)) - (fp_line (start 2.56 4.8) (end 8.12 10.36) (layer Dwgs.User) (width 0.12)) - (fp_line (start -0.44 4.8) (end 6.88 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -3.44 4.8) (end 3.88 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -6.44 4.8) (end 0.88 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -8.12 6.12) (end -2.12 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -8.12 9.12) (end -5.12 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -8.12 4.8) (end -8.12 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start 8.12 4.8) (end -8.12 4.8) (layer Dwgs.User) (width 0.12)) - (fp_line (start 8.12 12.12) (end 8.12 4.8) (layer Dwgs.User) (width 0.12)) - (fp_line (start -8.12 12.12) (end 8.12 12.12) (layer Dwgs.User) (width 0.12)) - (fp_line (start -8.12 4.5) (end -8.73 4.5) (layer B.SilkS) (width 0.12)) - (fp_line (start -8.12 4.5) (end -8.12 12.12) (layer B.SilkS) (width 0.12)) - (fp_line (start -8.12 -12.12) (end -8.12 -11.5) (layer B.SilkS) (width 0.12)) - (fp_line (start -6 -12.12) (end -8.12 -12.12) (layer B.SilkS) (width 0.12)) - (fp_line (start 8.12 -12.12) (end 6 -12.12) (layer B.SilkS) (width 0.12)) - (fp_line (start 8.12 -11.5) (end 8.12 -12.12) (layer B.SilkS) (width 0.12)) - (fp_line (start 8.12 12.12) (end 8.12 4.5) (layer B.SilkS) (width 0.12)) - (fp_line (start -8.12 12.12) (end 8.12 12.12) (layer B.SilkS) (width 0.12)) - (fp_line (start -9.05 -13.1) (end -9.05 12.2) (layer B.CrtYd) (width 0.05)) - (fp_line (start 9.05 -13.1) (end -9.05 -13.1) (layer B.CrtYd) (width 0.05)) - (fp_line (start 9.05 12.2) (end 9.05 -13.1) (layer B.CrtYd) (width 0.05)) - (fp_line (start -9.05 12.2) (end 9.05 12.2) (layer B.CrtYd) (width 0.05)) - (fp_line (start -8 4) (end -8 12) (layer B.Fab) (width 0.12)) - (fp_line (start -7.5 3.5) (end -8 4) (layer B.Fab) (width 0.12)) - (fp_line (start -8 3) (end -7.5 3.5) (layer B.Fab) (width 0.12)) - (fp_line (start -8 -12) (end -8 3) (layer B.Fab) (width 0.12)) - (fp_line (start 8 -12) (end -8 -12) (layer B.Fab) (width 0.12)) - (fp_line (start 8 12) (end 8 -12) (layer B.Fab) (width 0.12)) - (fp_line (start -8 12) (end 8 12) (layer B.Fab) (width 0.12)) - (fp_text user %R (at 0.49 0.8 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text user "KEEP-OUT ZONE" (at 0.03 9.55 -90) (layer Cmts.User) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user Antenna (at -0.06 7 -90) (layer Cmts.User) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 22 smd rect (at 7.6 3.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 14 TXD0)) - (pad 21 smd rect (at 7.6 1.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 15 RXD0)) - (pad 20 smd rect (at 7.6 -0.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 26 GPIO5)) - (pad 19 smd rect (at 7.6 -2.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 27 GPIO4)) - (pad 18 smd rect (at 7.6 -4.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 28 FLSH)) - (pad 17 smd rect (at 7.6 -6.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 35 CS1)) - (pad 16 smd rect (at 7.6 -8.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 25 CS0)) - (pad 15 smd rect (at 7.6 -10.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 1 GND)) - (pad 14 smd rect (at 5 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 13 smd rect (at 3 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 12 smd rect (at 1 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 11 smd rect (at -1 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 10 smd rect (at -3 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 9 smd rect (at -5 -12 90) (size 1 1.8) (layers B.Cu B.Paste B.Mask)) - (pad 8 smd rect (at -7.6 -10.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 3 +3V3)) - (pad 7 smd rect (at -7.6 -8.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 17 MOSI)) - (pad 6 smd rect (at -7.6 -6.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask)) - (pad 5 smd rect (at -7.6 -4.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 16 SCLK)) - (pad 4 smd rect (at -7.6 -2.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask)) - (pad 3 smd rect (at -7.6 -0.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 21 EN)) - (pad 2 smd rect (at -7.6 1.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 18 ADC)) - (pad 1 smd rect (at -7.6 3.5 90) (size 2.5 1) (layers B.Cu B.Paste B.Mask) - (net 4 nRST)) - (model ${KISYS3DMOD}/RF_Module.3dshapes/ESP-12E.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B455) - (at 45.466 59.69) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /609222D7) - (attr smd) - (fp_text reference R16 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 1kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 18 ADC)) - (pad 1 smd roundrect (at -0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B444) - (at 46.99 61.468 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /60920300) - (attr smd) - (fp_text reference R15 (at -2.794 -0.254) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 13 VOUT)) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 18 ADC)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B433) - (at 51.562 55.88) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /609BD20C) - (attr smd) - (fp_text reference R14 (at -3.048 0) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 24 "Net-(R13-Pad1)")) - (pad 1 smd roundrect (at -0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B422) - (at 51.562 57.658 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6097C99D) - (attr smd) - (fp_text reference R13 (at 3.048 0) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 9 SEN_5V)) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 24 "Net-(R13-Pad1)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B411) - (at 43.688 56.896 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /609FC807) - (attr smd) - (fp_text reference R12 (at 0.254 1.27) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 23 SEN_12V)) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 8 "Net-(D4-Pad2)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60A911A8) - (at 42.926 62.23 270) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /609F31E2) - (attr smd) - (fp_text reference R11 (at -3.048 0 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 470Ohm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 10 +12V)) - (pad 1 smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 23 SEN_12V)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60B02F1E) - (at 48.26 33.528 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6098FB50) - (attr smd) - (fp_text reference R10 (at 0.762 -1.43 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 26 GPIO5)) - (pad 1 smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 7 "Net-(D3-Pad2)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091D95B) - (at 63.183 36.068 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6088365F) - (attr smd) - (fp_text reference R9 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 470Ohm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 22 "Net-(R9-Pad2)")) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 15 RXD0)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B3CD) - (at 50.8 33.528 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6098FB4A) - (attr smd) - (fp_text reference R8 (at 0.254 1.524 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 51Ohm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 27 GPIO4)) - (pad 1 smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 6 "Net-(D2-Pad2)")) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B3BC) - (at 67.818 43.18 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6079EA60) - (attr smd) - (fp_text reference R7 (at 0 1.27) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 30 "Net-(Q2-Pad1)")) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 19 RTS)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B3AB) - (at 71.628 38.354) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6079FFA8) - (attr smd) - (fp_text reference R6 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 29 "Net-(Q1-Pad1)")) - (pad 1 smd roundrect (at -0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 20 DTR)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B39A) - (at 70.485 45.72 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6085845D) - (attr smd) - (fp_text reference R5 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 25 CS0)) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B389) - (at 67.818 46.482 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6085AAA5) - (attr smd) - (fp_text reference R4 (at 0 -1.43 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 35 CS1)) - (pad 1 smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B378) - (at 64.77 46.482 90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6085B97B) - (attr smd) - (fp_text reference R3 (at 0 -1.43 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 28 FLSH)) - (pad 1 smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B367) - (at 69.977 48.895 180) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6085BEAF) - (attr smd) - (fp_text reference R2 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 21 EN)) - (pad 1 smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_SMD:R_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B356) - (at 73.152 48.895) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags resistor) - (path /6081B1DC) - (attr smd) - (fp_text reference R1 (at 0 1.397) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 12kOhm (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 4 nRST)) - (pad 1 smd roundrect (at -0.825 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 6091B2ED) - (at 68.58 66.04) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /6078273A/609480A1) - (attr virtual) - (fp_text reference J11 (at 1.778 1.778) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_LDO_IN (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 2 /Power/LDO_IN)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 6091B2E5) - (at 71.12 63.5) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /6078273A/60947827) - (attr virtual) - (fp_text reference J10 (at -1.016 -1.778) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_GND (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 1 GND)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 6091B2DD) - (at 73.66 60.96) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /6078273A/6094781B) - (attr virtual) - (fp_text reference J9 (at 1.524 1.524) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_3V3 (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 3 +3V3)) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer B.Cu) (tedit 59FED5CC) (tstamp 6091B2D5) - (at 50.8 30.48 90) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /608FF8C5) - (fp_text reference J8 (at 0 2.33 90) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x02_Male (at 0 -4.87 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1)) - (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 0 -1.27 180) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 26 GPIO5)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 27 GPIO4)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 6091B2BF) - (at 48.26 50.8) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /60971CC4) - (attr virtual) - (fp_text reference J7 (at 0 -1.998) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_ADC (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 18 ADC)) - ) - - (module TestPoint:TestPoint_Pad_D2.0mm (layer F.Cu) (tedit 5A0F774F) (tstamp 6091B2B7) - (at 76.2 48.26) - (descr "SMD pad as test Point, diameter 2.0mm") - (tags "test point SMD pad") - (path /609717CF) - (attr virtual) - (fp_text reference J6 (at 0 -1.998) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Testpoint_RST (at 0 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 0 1.2) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.5 0) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 -2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd circle (at 0 0) (size 2 2) (layers F.Cu F.Mask) - (net 4 nRST)) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal (layer B.Cu) (tedit 59FED5CB) (tstamp 6091B2AF) - (at 50.8 63.5 90) - (descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row") - (tags "Through hole angled pin header THT 1x03 2.54mm single row") - (path /6078273A/60929628) - (fp_text reference J5 (at 2.54 2.286 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x03_Male (at 4.385 -7.35 90) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 10.55 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start 10.55 -6.85) (end 10.55 1.8) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 -6.85) (end 10.55 -6.85) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end -1.8 -6.85) (layer B.CrtYd) (width 0.05)) - (fp_line (start -1.27 1.27) (end 0 1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start -1.27 0) (end -1.27 1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.042929 -5.46) (end 1.44 -5.46) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.042929 -4.7) (end 1.44 -4.7) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 -5.46) (end 4.1 -5.46) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 -4.7) (end 10.1 -5.46) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -4.7) (end 10.1 -4.7) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.44 -3.81) (end 4.1 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.042929 -2.92) (end 1.44 -2.92) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.042929 -2.16) (end 1.44 -2.16) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 -2.92) (end 4.1 -2.92) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 -2.16) (end 10.1 -2.92) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -2.16) (end 10.1 -2.16) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.44 -1.27) (end 4.1 -1.27) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.11 0.38) (end 1.44 0.38) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -0.28) (end 10.1 -0.28) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -0.16) (end 10.1 -0.16) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -0.04) (end 10.1 -0.04) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 0.08) (end 10.1 0.08) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 0.2) (end 10.1 0.2) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 0.32) (end 10.1 0.32) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 -0.38) (end 4.1 -0.38) (layer B.SilkS) (width 0.12)) - (fp_line (start 10.1 0.38) (end 10.1 -0.38) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 0.38) (end 10.1 0.38) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 1.33) (end 1.44 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.1 -6.41) (end 4.1 1.33) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.44 -6.41) (end 4.1 -6.41) (layer B.SilkS) (width 0.12)) - (fp_line (start 1.44 1.33) (end 1.44 -6.41) (layer B.SilkS) (width 0.12)) - (fp_line (start 4.04 -5.4) (end 10.04 -5.4) (layer B.Fab) (width 0.1)) - (fp_line (start 10.04 -4.76) (end 10.04 -5.4) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 -4.76) (end 10.04 -4.76) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -5.4) (end 1.5 -5.4) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -4.76) (end -0.32 -5.4) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -4.76) (end 1.5 -4.76) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 -2.86) (end 10.04 -2.86) (layer B.Fab) (width 0.1)) - (fp_line (start 10.04 -2.22) (end 10.04 -2.86) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 -2.22) (end 10.04 -2.22) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -2.86) (end 1.5 -2.86) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -2.22) (end -0.32 -2.86) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -2.22) (end 1.5 -2.22) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer B.Fab) (width 0.1)) - (fp_line (start 10.04 0.32) (end 10.04 -0.32) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 0.32) (end 10.04 0.32) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 0.32) (end -0.32 -0.32) (layer B.Fab) (width 0.1)) - (fp_line (start -0.32 0.32) (end 1.5 0.32) (layer B.Fab) (width 0.1)) - (fp_line (start 1.5 0.635) (end 2.135 1.27) (layer B.Fab) (width 0.1)) - (fp_line (start 1.5 -6.35) (end 1.5 0.635) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 -6.35) (end 1.5 -6.35) (layer B.Fab) (width 0.1)) - (fp_line (start 4.04 1.27) (end 4.04 -6.35) (layer B.Fab) (width 0.1)) - (fp_line (start 2.135 1.27) (end 4.04 1.27) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 2.77 -2.54 180) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 3 thru_hole oval (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 10 +12V)) - (pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 13 VOUT)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 5 +5V)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module TerminalBlock:TerminalBlock_bornier-2_P5.08mm locked (layer B.Cu) (tedit 59FF03AB) (tstamp 6091B257) - (at 66.04 71.12 180) - (descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2") - (tags "terminal block bornier2") - (path /6078273A/6092964F) - (fp_text reference J3 (at 2.54 5.08) (layer B.SilkS) hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_text value Conn_01x02_Male (at 2.54 -5.08) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (fp_line (start 7.79 -4) (end -2.71 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start 7.79 -4) (end 7.79 4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.71 4) (end -2.71 -4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.71 4) (end 7.79 4) (layer B.CrtYd) (width 0.05)) - (fp_line (start -2.54 -3.81) (end 7.62 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 3.81) (end -2.54 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 -3.81) (end 7.62 3.81) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.62 -2.54) (end -2.54 -2.54) (layer B.SilkS) (width 0.12)) - (fp_line (start 7.54 3.75) (end -2.46 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start 7.54 -3.75) (end 7.54 3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.46 -3.75) (end 7.54 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.46 3.75) (end -2.46 -3.75) (layer B.Fab) (width 0.1)) - (fp_line (start -2.41 -2.55) (end 7.49 -2.55) (layer B.Fab) (width 0.1)) - (fp_text user %R (at 2.54 0) (layer B.Fab) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (pad 2 thru_hole circle (at 5.08 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 5 +5V)) - (pad 1 thru_hole rect (at 0 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) - (net 1 GND)) - (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl - (offset (xyz 2.539999961853027 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.step - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module MountingHole:MountingHole_2.2mm_M2_Pad_Via locked (layer F.Cu) (tedit 56DDB9C7) (tstamp 6091B216) - (at 75 71) - (descr "Mounting Hole 2.2mm, M2") - (tags "mounting hole 2.2mm m2") - (path /60A2C3E0) - (attr virtual) - (fp_text reference H4 (at 0 -3.2) (layer F.SilkS) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value MountingHole_Pad (at 0 3.2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15)) - (fp_text user %R (at 0.3 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) - (net 1 GND)) - ) - - (module MountingHole:MountingHole_2.2mm_M2_Pad_Via locked (layer F.Cu) (tedit 56DDB9C7) (tstamp 6091B206) - (at 43 71) - (descr "Mounting Hole 2.2mm, M2") - (tags "mounting hole 2.2mm m2") - (path /60A2BB4B) - (attr virtual) - (fp_text reference H3 (at 0 -3.2) (layer F.SilkS) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value MountingHole_Pad (at 0 3.2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15)) - (fp_text user %R (at 0.3 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) - (net 1 GND)) - ) - - (module MountingHole:MountingHole_2.2mm_M2_Pad_Via locked (layer F.Cu) (tedit 56DDB9C7) (tstamp 6091B1F6) - (at 43 31) - (descr "Mounting Hole 2.2mm, M2") - (tags "mounting hole 2.2mm m2") - (path /60A2B21E) - (attr virtual) - (fp_text reference H2 (at 0 -3.2) (layer F.SilkS) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value MountingHole_Pad (at 0 3.2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15)) - (fp_text user %R (at 0.3 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) - (net 1 GND)) - ) - - (module MountingHole:MountingHole_2.2mm_M2_Pad_Via locked (layer F.Cu) (tedit 56DDB9C7) (tstamp 6091B1E6) - (at 75 31) - (descr "Mounting Hole 2.2mm, M2") - (tags "mounting hole 2.2mm m2") - (path /60A2A45B) - (attr virtual) - (fp_text reference H1 (at 0 -3.2) (layer F.SilkS) hide - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value MountingHole_Pad (at 0 3.2) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15)) - (fp_text user %R (at 0.3 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) - (net 1 GND)) - (pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) - (net 1 GND)) - ) - - (module Diode_SMD:D_SMA (layer F.Cu) (tedit 586432E5) (tstamp 6091B1B0) - (at 55.118 67.31 180) - (descr "Diode SMA (DO-214AC)") - (tags "Diode SMA (DO-214AC)") - (path /6078273A/607C7255) - (attr smd) - (fp_text reference D6 (at 4.572 -1.016) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value SS14 (at 0 2.6) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.4 1.65) (end 2 1.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer F.Fab) (width 0.1)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer F.Fab) (width 0.1)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer F.Fab) (width 0.1)) - (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2.5) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 2 smd rect (at 2 0 180) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask) - (net 10 +12V)) - (pad 1 smd rect (at -2 0 180) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask) - (net 2 /Power/LDO_IN)) - (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SMA.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 6091B198) - (at 51.562 59.436 180) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /6091A73E) - (attr smd) - (fp_text reference D5 (at 2.54 0) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 5 +5V)) - (pad 1 smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 9 SEN_5V)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 6091B185) - (at 43.942 53.086 270) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /60A1BE9D) - (attr smd) - (fp_text reference D4 (at -2.54 0 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 8 "Net-(D4-Pad2)")) - (pad 1 smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 6091B172) - (at 48.26 36.83 90) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /6098FB42) - (attr smd) - (fp_text reference D3 (at 0.762 -1.43 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 7 "Net-(D3-Pad2)")) - (pad 1 smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module LED_SMD:LED_0603_1608Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 6091B15F) - (at 50.8 36.83 90) - (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") - (tags LED) - (path /6098FB3C) - (attr smd) - (fp_text reference D2 (at 0 1.524 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value RED (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 6 "Net-(D2-Pad2)")) - (pad 1 smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Diode_SMD:D_SMA (layer F.Cu) (tedit 586432E5) (tstamp 6091B14C) - (at 62.484 67.31) - (descr "Diode SMA (DO-214AC)") - (tags "Diode SMA (DO-214AC)") - (path /6078273A/6078C973) - (attr smd) - (fp_text reference D1 (at 4.572 1.016) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value SS14 (at 0 2.6) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.4 1.65) (end 2 1.65) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer F.Fab) (width 0.1)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer F.Fab) (width 0.1)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer F.Fab) (width 0.1)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer F.Fab) (width 0.1)) - (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1)) - (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer F.SilkS) (width 0.12)) - (fp_text user %R (at 0 -2.5) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 2 smd rect (at 2 0) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask) - (net 5 +5V)) - (pad 1 smd rect (at -2 0) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask) - (net 2 /Power/LDO_IN)) - (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SMA.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_SMD:C_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60B18C65) - (at 51.562 51.054) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/607C2A6A) - (attr smd) - (fp_text reference C8 (at 0.254 -1.524) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100nF (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.775 0) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.775 0) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 5 +5V)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B123) - (at 51.816 53.34) + (net 9 "SEN_5V") + (net 10 "+12V") + (net 11 "VOUT") + (net 12 "TXD0") + (net 13 "RXD0") + (net 14 "SCLK") + (net 15 "MOSI") + (net 16 "ADC") + (net 17 "RTS") + (net 18 "DTR") + (net 19 "EN") + (net 20 "Net-(R9-Pad2)") + (net 21 "SEN_12V") + (net 22 "Net-(D12-Pad6)") + (net 23 "CS0") + (net 24 "GPIO1") + (net 25 "FLSH") + (net 26 "Net-(Q1-Pad1)") + (net 27 "Net-(Q2-Pad1)") + (net 28 "Net-(D9-Pad2)") + (net 29 "/TXLED") + (net 30 "Net-(D10-Pad2)") + (net 31 "/RXLED") + (net 32 "GPIO2") + (net 33 "GPIO3") + (net 34 "/Ext-IO/INIT_{IN}") + (net 35 "SWIM") + (net 36 "/Ext-IO/INIT_{OUT}") + (net 37 "~{BUSRST}") + (net 38 "~{INT}") + (net 39 "MISO") + (net 40 "Net-(R19-Pad1)") + (net 41 "unconnected-(U1-Pad14)") + (net 42 "unconnected-(U1-Pad13)") + (net 43 "unconnected-(U1-Pad12)") + (net 44 "unconnected-(U1-Pad11)") + (net 45 "unconnected-(U1-Pad10)") + (net 46 "unconnected-(U1-Pad9)") + (net 47 "unconnected-(U1-Pad4)") + (net 48 "unconnected-(U2-Pad2)") + (net 49 "unconnected-(U2-Pad1)") + (net 50 "unconnected-(U4-Pad2)") + (net 51 "Net-(D2-Pad4)") + (net 52 "Net-(D2-Pad5)") + (net 53 "unconnected-(U4-Pad8)") + (net 54 "unconnected-(U4-Pad9)") + (net 55 "unconnected-(U2-Pad9)") + (net 56 "unconnected-(U2-Pad27)") + (net 57 "unconnected-(U2-Pad23)") + (net 58 "unconnected-(U2-Pad22)") + (net 59 "unconnected-(U2-Pad21)") + (net 60 "unconnected-(U2-Pad20)") + (net 61 "unconnected-(U2-Pad17)") + (net 62 "unconnected-(U2-Pad16)") + (net 63 "unconnected-(U2-Pad15)") + (net 64 "unconnected-(U2-Pad14)") + (net 65 "unconnected-(U2-Pad13)") + (net 66 "unconnected-(U2-Pad12)") + (net 67 "unconnected-(U2-Pad11)") + (net 68 "unconnected-(U2-Pad10)") + (net 69 "unconnected-(J13-Pad5)") + (net 70 "unconnected-(J1-Pad4)") + (net 71 "Net-(J1-Pad3)") + (net 72 "Net-(J1-Pad2)") + (net 73 "unconnected-(U4-Pad1)") + (net 74 "Net-(D2-Pad6)") + (net 75 "unconnected-(U4-Pad5)") + (net 76 "unconnected-(U4-Pad6)") + (net 77 "unconnected-(U4-Pad7)") + (net 78 "unconnected-(U4-Pad10)") + (net 79 "unconnected-(U4-Pad11)") + (net 80 "SWDIO") + (net 81 "SWCLK") + (net 82 "unconnected-(U4-Pad14)") + (net 83 "unconnected-(U4-Pad15)") + (net 84 "unconnected-(U4-Pad16)") + (net 85 "unconnected-(U4-Pad17)") + (net 86 "unconnected-(U4-Pad18)") + (net 87 "unconnected-(U4-Pad19)") + (net 88 "unconnected-(U4-Pad20)") + (net 89 "SIG_R") + (net 90 "SIG_G") + (net 91 "SIG_B") + (net 92 "unconnected-(U5-Pad1)") + (net 93 "unconnected-(U5-Pad2)") + (net 94 "/Frontseat_stm32g031g/~{RST}") + (net 95 "/Frontseat_stm32g031g/LED_CLOCK") + (net 96 "/Frontseat_stm32g031g/PWM_2") + (net 97 "/Frontseat_stm32g031g/PWM_3") + (net 98 "/Frontseat_stm32g031g/PWM_4") + (net 99 "/Frontseat_stm32g031g/LED_DATA") + (net 100 "/Frontseat_stm32g031g/PWM_1") + (net 101 "/Frontseat_stm32g031g/ADC_6") + (net 102 "/Frontseat_stm32g031g/ADC_7") + (net 103 "unconnected-(U5-Pad16)") + (net 104 "unconnected-(U5-Pad18)") + (net 105 "unconnected-(U5-Pad19)") + (net 106 "/Frontseat_stm32g031g/~{INT}") + (net 107 "/Frontseat_stm32g031g/SCLK") + (net 108 "/Frontseat_stm32g031g/MISO") + (net 109 "/Frontseat_stm32g031g/MOSI") + (net 110 "/Frontseat_stm32g031g/INIT_{IN}") + (net 111 "/Frontseat_stm32g031g/INIT_{OUT}") + (net 112 "unconnected-(U5-Pad28)") + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b0bb) + (at 54.356 63.246 90) (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/609C5ABB) + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c989") (attr smd) - (fp_text reference C7 (at -2.794 0) (layer F.SilkS) + (fp_text reference "C1" (at -0.762 -1.68 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 18c2a0a3-585c-4867-9fb8-51fa95cb2277) ) - (fp_text value 10uF (at 0 1.68) (layer F.Fab) + (fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp b6e365cb-f756-40fc-9ef3-e50b77a43122) ) - (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 699f0751-ba71-46d5-85b9-671ffd8e636c) ) - (pad 2 smd roundrect (at 0.95 0) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.95 0) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 5 +5V)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl - (at (xyz 0 0 0)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0622bf76-3956-4cb4-af41-3b9f54eec6a9)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8d234ceb-f727-4b26-8a11-67bd639fd48d)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 06149271-05e6-4432-a136-168a496c0881)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6f9f3ccf-b80c-46bc-b3d9-9c913cd41a31)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 95a9bf74-cc01-4e8c-9d90-a1d38b5e4535)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b003fc07-cf13-42ab-899d-d6c4b071302c)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5e68cf88-b010-4f1f-801a-bae78626f2c0)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c62bc534-3db6-4002-8ede-52b1362896d1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e9bb26d0-cbb5-4a09-aaca-befe13eab482)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp ee4c9726-075c-41c2-b437-fd129be61b8f)) + (pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "/Power/LDO_IN") (pintype "passive") (tstamp d21c533c-a94e-462a-bd85-3b4e5fbd317b)) + (pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 7d5f19df-bb62-48b0-8a0f-d7bf212e630a)) + (model "${KIPRJMOD}/packages3D/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) - (module Capacitor_SMD:C_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B112) - (at 67.818 52.832 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/607B779D) - (attr smd) - (fp_text reference C6 (at 0 1.524 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100nF (at 0 1.43 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B101) - (at 69.342 58.862 270) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/609C4CDD) - (attr smd) - (fp_text reference C5 (at 0 -1.68 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.5 0.5) (thickness 0.08))) - ) - (pad 2 smd roundrect (at 0.95 0 270) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.95 0 270) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_SMD:C_0603_1608Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B0F0) - (at 73.66 45.72 180) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") - (tags capacitor) - (path /60820053) - (attr smd) - (fp_text reference C4 (at 0 -1.43) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100nF (at 0 1.43) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.4 0.4) (thickness 0.06))) - ) - (pad 2 smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 4 nRST)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B (layer F.Cu) (tedit 5EBA9318) (tstamp 6091B0DF) + (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu") + (tedit 5EBA9318) (tstamp 00000000-0000-0000-0000-00006091b0df) (at 66.548 60.452 90) (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") (tags "capacitor tantalum") - (path /6078273A/60794539) + (property "LCSC" "C16133") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060794539") (attr smd) - (fp_text reference C3 (at 2.032 -2.54 90) (layer F.SilkS) + (fp_text reference "C3" (at 2.032 -2.54 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5ef831c9-952c-4aa3-b8cf-d2f8404e1b35) ) - (fp_text value TAJB107K006RNJ (at 0 2.35 90) (layer F.Fab) + (fp_text value "TAJB107K006RNJ" (at 0 2.35 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6ea5831a-81f9-47f9-ab52-36b1e991d170) ) - (fp_line (start 2.45 1.65) (end -2.45 1.65) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.45 -1.65) (end 2.45 1.65) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.45 -1.65) (end 2.45 -1.65) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.45 1.65) (end -2.45 -1.65) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.46 1.51) (end 1.75 1.51) (layer F.SilkS) (width 0.12)) - (fp_line (start -2.46 -1.51) (end -2.46 1.51) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.75 -1.51) (end -2.46 -1.51) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer F.Fab) (width 0.1)) - (fp_line (start -1.75 1.4) (end 1.75 1.4) (layer F.Fab) (width 0.1)) - (fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer F.Fab) (width 0.1)) - (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer F.Fab) (width 0.1)) - (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.88 0.88) (thickness 0.13))) + (tstamp 609b81e2-1dea-4f28-af0e-716746b94fd2) ) - (pad 2 smd roundrect (at 1.5375 0 90) (size 1.325 2.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679) - (net 1 GND)) - (pad 1 smd roundrect (at -1.5375 0 90) (size 1.325 2.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl - (at (xyz 0 0 0)) + (fp_line (start 1.75 -1.51) (end -2.46 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 60fc7fef-46f7-4764-bd2e-c2e8f9c17cf9)) + (fp_line (start -2.46 -1.51) (end -2.46 1.51) (layer "F.SilkS") (width 0.12) (tstamp 7c113085-9371-44ad-9cbe-669b3252ca6f)) + (fp_line (start -2.46 1.51) (end 1.75 1.51) (layer "F.SilkS") (width 0.12) (tstamp e6a30907-5810-4b35-98ee-f29ed9572355)) + (fp_line (start -2.45 -1.65) (end 2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 010b9b69-93c9-4f59-9933-95ae213350a3)) + (fp_line (start 2.45 1.65) (end -2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8c7a2bd5-3883-4a2c-b27d-cf3861841d72)) + (fp_line (start 2.45 -1.65) (end 2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp edf90927-7013-498e-82ca-ba048e6c2859)) + (fp_line (start -2.45 1.65) (end -2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp feca4422-0ce9-4ad6-b711-228556285cf9)) + (fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp 0d5eb747-e346-4573-92cd-ec7cc823d5cc)) + (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer "F.Fab") (width 0.1) (tstamp 32a74a73-c8b4-4a62-a81e-c692021391a2)) + (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer "F.Fab") (width 0.1) (tstamp a7df9e92-8468-4c44-9a0a-9de97da61664)) + (fp_line (start -1.75 1.4) (end 1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp b241c598-bd06-46c7-b7be-ef02923f8031)) + (fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp b28c9224-4aa3-48ca-9ce4-abf6f319cab9)) + (pad "1" smd roundrect (at -1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453) + (net 3 "+3V3") (pintype "passive") (tstamp a64021e6-b38b-40b4-831b-d3a2df570b35)) + (pad "2" smd roundrect (at 1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453) + (net 1 "GND") (pintype "passive") (tstamp 0f30a3e4-1433-416b-8699-df1a3596be44)) + (model "${KIPRJMOD}/packages3D/CP_EIA-3528-21_Kemet-B.wrl" + (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) - (module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 60921D13) + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b0f0) + (at 73.66 45.72 180) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060820053") + (attr smd) + (fp_text reference "C4" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0ab6c840-33ce-41fb-8e24-e0d62fa6d5f4) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2fc157fa-51fe-49c7-96d3-5e290eb92bbb) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 816791df-f71a-4873-a238-8ea3ed54cef3) + ) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 6dfa1271-039e-4fb3-ab6a-02ba4a73b81e)) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9530273f-41ba-405e-a723-c966467daa9d)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1e87e70d-977f-4044-8614-c9396867a22f)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2f958764-5bdb-4057-b3e5-00c29c615353)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 78a866b9-4eb2-4212-89a2-bd8e0580b44e)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cd9addae-f12b-4119-bf58-7e483563a8fe)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8ade7f5b-5918-44e1-8616-b9f4b1a3d153)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 997b4854-619c-4fc3-bba7-7c81951ec53e)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d266e1b0-01da-4f04-a62f-d8b464a369dd)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp dd8b4da1-10b9-4a88-aa11-f3fb29af9382)) + (pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "nRST") (pintype "passive") (tstamp 5952be43-97c6-4d72-9557-607c9e067af0)) + (pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 4a6ff469-f5b3-493c-9114-b1ff40079878)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b101) + (at 69.342 58.862 -90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c4cdd") + (attr smd) + (fp_text reference "C5" (at 0 -1.68 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4806887c-d3d9-441a-a89b-7d7c44b1def2) + ) + (fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2b288a63-3647-45b5-8bce-d8563ab2e87c) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp b4e8a945-c853-4d74-a4af-e2e11a6cda57) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2ecf24e7-c0cc-4d68-a833-c563e7315ea8)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 40b0a077-bae2-44bf-b54d-3a4ea925d325)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 45687e1a-b0a3-41f9-9f64-abc1d5c5dc86)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 57fb64f6-f59b-41bf-8829-aade6712aba1)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp ab251936-2e5f-452c-a031-1d51b5d87c3f)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e18f5778-31a4-4aa3-959a-1efd7962c314)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 235abb73-d181-4ae6-8b4a-63be8918794e)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5149eb7a-3b1f-4899-a5ce-f247c6a042ea)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 701549a9-76ba-479e-9dd6-e81ba71ab152)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp add69197-6746-4cc7-87aa-c4cb59bae5c4)) + (pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 379c51ee-edac-49b3-86aa-b072fe0d9f73)) + (pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp ff422e60-5476-44a5-9ee2-92cfb7f97343)) + (model "${KIPRJMOD}/packages3D/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b112) + (at 67.818 52.832 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607b779d") + (attr smd) + (fp_text reference "C6" (at 0 1.524 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 92ce544c-f646-448d-bd03-adf56cdc058a) + ) + (fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f67feb0b-db99-41ad-821a-c7b92a0cdfdd) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 569d216b-f0ca-417b-b1eb-9d8bdd3882d9) + ) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 005b2a4c-4d95-456d-aa6c-c348d0b68910)) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp d5fad39a-d9b7-4c50-a92c-7d0d5526d4c5)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f365738-9102-4e1c-9e79-5ab89b47e979)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af6bf915-4487-405a-9725-fab11c05c327)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c5002b81-84e5-4065-ad0e-5ace9af9a413)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d4631c2e-1a65-42c3-8ea5-5201eb7ff287)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 029035d0-3ea6-4ff0-baeb-83598c088650)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 24ac1d2c-bce1-433f-b1dd-b23b85cef84b)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6a36534a-087a-41a6-8897-9c7162da22ac)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b18ffc80-10ed-4495-90c6-61b476e2f94e)) + (pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 3d876278-ed53-4f49-88aa-2c08a3f5202d)) + (pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 31ec753f-eb57-488d-aa61-c9004e90c5d2)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b123) + (at 51.816 53.34) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c5abb") + (attr smd) + (fp_text reference "C7" (at -2.794 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 81649647-b82c-4446-b308-9b21afe05817) + ) + (fp_text value "10uF" (at 0 1.68) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f5e8da3c-5198-4fbf-924f-2c677de0f1ca) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 284a5d4c-e8f3-4284-8819-b5a67bc10b0d) + ) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3648649c-e5d5-4afd-bf18-f481c9566354)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp eb172d5f-766e-48a6-bd50-529dd2b0ebbc)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 226e6c6b-e7a7-455a-a1c2-77b2df48c8e7)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 68c24379-d5f1-4510-a3e2-7ae85725f700)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7927ad87-35ce-4589-9d61-5cdae3f8ccf3)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7b62603f-5bc0-4609-9d68-cc48cab2241a)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 21d23352-0766-49d7-9274-2b74a82fdc71)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 33dafca1-d715-489c-99ad-24cdd5adbf51)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5e185548-6642-498c-95bf-245d3575a8be)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c46f96dd-c6cc-416c-bfcd-341e7761434b)) + (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+5V") (pintype "passive") (tstamp 1bb70e9c-8f52-4427-a12f-2c956c591ea4)) + (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 3ea7294c-ceee-413b-93ef-beff055b19f8)) + (model "${KIPRJMOD}/packages3D/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_SMA" (layer "F.Cu") + (tedit 586432E5) (tstamp 00000000-0000-0000-0000-00006091b14c) + (at 62.484 67.31) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "LCSC" "C2480") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c973") + (attr smd) + (fp_text reference "D1" (at 4.572 1.016) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f109a903-efa8-45a3-a5e0-206ca1e9ad5d) + ) + (fp_text value "SS14" (at 0 2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ae6c99d2-5925-4086-a867-8e2db3b10707) + ) + (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b55fbcde-81c5-4d1c-b877-1ee6bdf29722) + ) + (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 61f14dce-8297-43ed-9d38-5dc2c0cbaa78)) + (fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp b0f06645-0ec4-4438-98d1-355cb85a3c1d)) + (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp b1aef163-bc6b-4fc0-b11d-3e4d80e8bb73)) + (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 29d43e6a-7b4b-4f2d-9f9b-2e1b1c416019)) + (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6c7a7348-0916-43c9-b132-6f7994f79049)) + (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 82e9b262-23ee-470c-9703-22229e8e4aa3)) + (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp dae1718c-f24c-4d17-8d75-7b459b669708)) + (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 3467148a-e01f-4e26-b06d-5209d2d247f1)) + (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 39607e4a-93da-492d-9a4c-d1328e6b50c1)) + (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 62035027-bf62-4704-8cd3-934c8a8230de)) + (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 9db123da-426c-4fa1-a7ac-d44f91712876)) + (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 9db7b8ec-34fd-4e78-ba39-b7abf1dd2bda)) + (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp b27125e0-4eb4-49ce-9980-35a25ea6dcd7)) + (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp d02feb16-271d-405d-a072-15a0eba854bb)) + (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp efc44ba1-b9d7-4fe1-a22d-5d113c525a11)) + (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp f0afe279-7be7-4000-943d-3e5384eadb27)) + (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp ffaf1022-f445-42d4-88ed-301530bf8705)) + (pad "1" smd rect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "/Power/LDO_IN") (pinfunction "K") (pintype "passive") (tstamp 159584a3-ce5e-4dad-bd8f-6d84df65c3ba)) + (pad "2" smd rect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "+5V") (pinfunction "A") (pintype "passive") (tstamp fc429c66-1eaa-4564-b217-3447a31deb92)) + (model "${KIPRJMOD}/packages3D/D_SMA.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_SMA" (layer "F.Cu") + (tedit 586432E5) (tstamp 00000000-0000-0000-0000-00006091b1b0) + (at 55.118 67.31 180) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "LCSC" "C2480") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607c7255") + (attr smd) + (fp_text reference "D6" (at 4.572 -1.016) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3b39904e-a47a-4687-975e-53f25bd038a5) + ) + (fp_text value "SS14" (at 0 2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ff70ea51-9fd1-467a-82bc-0e56707ae8ea) + ) + (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4b946182-1967-49af-8577-90588f14e9ea) + ) + (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 18fdb185-0507-4b09-b9f0-fe5baa4df1ec)) + (fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 60fd03b6-bcb6-4ddd-9e58-3276092f8622)) + (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp c4c189a8-c7eb-4076-af86-69eb5e305ca1)) + (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 471c9d58-82da-4cab-be34-54f23b30c646)) + (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 91427a8d-fc61-49d4-8851-24035119bb41)) + (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 98628e0a-04d6-4fa4-8939-f2831f6a79b4)) + (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9dc04dce-fd33-48d9-9862-7bd2ff7483e6)) + (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 0d816b52-715e-4817-aa25-b6be306a6062)) + (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 1bc4bdaf-ac7f-49b4-ae30-3eca4602fe09)) + (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 26c406f5-be98-45a1-af59-044ecbd720bc)) + (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 3f2e0278-0639-4203-b087-242a93d1c017)) + (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 472d85d2-537e-4ff1-b788-15c9363bd491)) + (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 527204f1-6084-4235-b3e0-5b7d3834292a)) + (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 69a69d73-9ad0-4a52-ab58-1ce98d7daa64)) + (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 98b98b6b-a3e9-4f96-9e62-49041a2103cd)) + (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp bf91b856-c808-481e-a69e-1de2a7729bd0)) + (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp f6f6237c-bb1f-4ad1-acb7-4caea4a21c03)) + (pad "1" smd rect (at -2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "/Power/LDO_IN") (pinfunction "K") (pintype "passive") (tstamp 9a29bc62-bef4-4686-bdb0-a01b1d61d6f1)) + (pad "2" smd rect (at 2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "+12V") (pinfunction "A") (pintype "passive") (tstamp c692df13-ae4b-48c9-8fdd-660a11c677eb)) + (model "${KIPRJMOD}/packages3D/D_SMA.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_MiniMELF" (layer "F.Cu") + (tedit 5905D8F5) (tstamp 00000000-0000-0000-0000-00006091b1c3) + (at 74.168 67.056) + (descr "Diode Mini-MELF (SOD-80)") + (tags "Diode Mini-MELF (SOD-80)") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608e2da3") + (attr smd) + (fp_text reference "D7" (at 0 -2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 999ab8f5-7ef3-440f-b660-21462c76e9bf) + ) + (fp_text value "Z 5V" (at 0 1.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 18de91c2-1aba-49e4-ae15-ec830f335b45) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 18618f45-79c3-446b-815c-6b6f8fdd1986) + ) + (fp_line (start -2.55 -1) (end -2.55 1) (layer "F.SilkS") (width 0.12) (tstamp 217c8021-645a-48a2-88e0-6e4e4b18d6bb)) + (fp_line (start -2.55 1) (end 1.75 1) (layer "F.SilkS") (width 0.12) (tstamp 94150473-b85f-4427-8d7a-2928b592f90d)) + (fp_line (start 1.75 -1) (end -2.55 -1) (layer "F.SilkS") (width 0.12) (tstamp be406bb4-0715-444a-ae31-bae4a1fa3c77)) + (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 06b50b8e-71bb-4196-a586-2a85379f3e5a)) + (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 3f297a20-2fef-460b-baf5-f3d25c4f57ee)) + (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 7b611dd3-fd2b-49d4-9b1d-ac5b1c667fc3)) + (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp d1504dd6-9bd3-46e1-8b2b-88cfd70bf9a2)) + (fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 0ee18df3-696c-4b0d-ae93-9fda676474fa)) + (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 12e76f2e-6447-4bfb-ad38-9dbe052443ce)) + (fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 2f571b99-803b-4a4b-ae5f-cc6577e97f91)) + (fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 39bae065-2a92-4f63-9944-ac6d09f6adce)) + (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 4986e796-94f5-433d-ab6b-61a28d3ae37d)) + (fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 4ca3a7e0-7611-49a7-a14c-803fe48e121d)) + (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 6e1c8b36-1713-44c0-a38d-8281613079d5)) + (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7d6137e5-01c0-4ee2-a53b-fe6b3b5beaa6)) + (fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp aa96bd55-d5af-4e3d-bdcc-c65bfbac7e8f)) + (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp ba09beb9-d2a7-4df4-b242-7b749f3df59e)) + (fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp c3e8851d-088b-462f-8bd2-3bdb79c2f106)) + (pad "1" smd rect (at -1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "+5V") (pinfunction "K") (pintype "passive") (tstamp cbf1ea44-5642-4c8f-ab96-4cf8cb575aad)) + (pad "2" smd rect (at 1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp 06af3eba-1244-4360-acc0-3fa36608e8c1)) + (model "${KIPRJMOD}/packages3D/D_MiniMELF.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_MiniMELF" (layer "F.Cu") + (tedit 5905D8F5) (tstamp 00000000-0000-0000-0000-00006091b1d6) + (at 41.91 65.278 180) + (descr "Diode Mini-MELF (SOD-80)") + (tags "Diode Mini-MELF (SOD-80)") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608e7242") + (attr smd) + (fp_text reference "D8" (at 0 -2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 74cb5121-52c0-478d-bb45-d2f93c4cb9e6) + ) + (fp_text value "Z 12V" (at 0 1.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb01a30d-90fd-4721-a592-f648d2af4927) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e6e745de-7e46-4cdb-8179-a9baf10ef7c1) + ) + (fp_line (start -2.55 -1) (end -2.55 1) (layer "F.SilkS") (width 0.12) (tstamp 1e75e155-5a22-43c7-bd99-b08b77f8badf)) + (fp_line (start -2.55 1) (end 1.75 1) (layer "F.SilkS") (width 0.12) (tstamp 4e79daf0-787a-4697-b73d-d61d3f00bf43)) + (fp_line (start 1.75 -1) (end -2.55 -1) (layer "F.SilkS") (width 0.12) (tstamp d502b4c0-6073-41eb-86ef-40c3ed01b8b2)) + (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 79d84f33-38d6-4415-ab14-5d3c8473690b)) + (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 8c39b10e-9f62-4cb5-b763-debf4fadb04a)) + (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 8e809372-108a-43f5-8e12-140f39ae89eb)) + (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp aecb5417-c0dc-44f2-b0eb-5885d116fd4a)) + (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 0c27be57-dffe-40d4-b469-464163e90913)) + (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 10bc3c5a-1fb9-45bf-b20d-18c0eb089941)) + (fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 29f96797-fb9f-4a11-a459-242a54157499)) + (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 44538e80-8adf-41d1-886b-13dfac5231f9)) + (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 5efd355b-7fcb-4efe-a049-3c4716c56c12)) + (fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 9bab8b8a-3c34-4614-b00f-5245182ee4d0)) + (fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp ad15254f-6756-4c19-a15e-1a8bdda971ed)) + (fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp b6d2f536-a370-4ea7-895f-8f93534151d1)) + (fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp c9c3928b-c24a-4d57-81c8-33f991ea3a42)) + (fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp f7039201-f2a2-41af-a875-140d7d684bb7)) + (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp fcf0a1c8-3623-46a2-8cee-fe95d1dc21d0)) + (pad "1" smd rect (at -1.75 0 180) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "+12V") (pinfunction "K") (pintype "passive") (tstamp e290c2ca-40b3-4e28-82f8-90e95ced90fb)) + (pad "2" smd rect (at 1.75 0 180) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp 58694b1b-9d73-4724-a8a2-95899398ebdf)) + (model "${KIPRJMOD}/packages3D/D_MiniMELF.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" locked (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-00006091b1e6) + (at 75 31) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060a2a45b") + (attr exclude_from_pos_files) + (fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e23c448d-2231-40d2-b20a-6d20f73f0eb8) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 35e6c3fd-7913-41c1-a7da-fbc0a782721b) + ) + (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 60874b0e-d1ba-448c-8779-90b140cd0422) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp cae405f4-0771-49e2-b6a4-0a9bb3281fe6)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8b4da209-f244-4a95-a4b3-29a074eba095)) + (pad "1" thru_hole circle locked (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 05afa4c0-7e6b-4675-9303-77f3c3972ff1)) + (pad "1" thru_hole circle locked (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 200be569-c611-4bd4-8845-ca3bae888820)) + (pad "1" thru_hole circle locked (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3dfcb5cb-d36b-4b98-8306-71490a1965fb)) + (pad "1" thru_hole circle locked (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 52957cb8-0f64-486a-9130-0b502998834d)) + (pad "1" thru_hole circle locked (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 6178fac7-cb97-4c20-b821-f348ee60cfa4)) + (pad "1" thru_hole circle locked (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 7be77875-26ca-4826-b1b9-03ba6e6fd888)) + (pad "1" thru_hole circle locked (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 9b1d950f-683b-4d35-9312-0c744b7c56e3)) + (pad "1" thru_hole circle locked (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp b9311231-8c93-4cf7-a39a-802637bbccb9)) + (pad "1" thru_hole circle locked (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp dd006294-9976-4e94-9c24-d88250c24411)) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" locked (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-00006091b1f6) + (at 43 31) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060a2b21e") + (attr exclude_from_pos_files) + (fp_text reference "H2" (at 0 -3.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 834d6c57-129d-4d01-b33d-c398c88320da) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1db814fc-eb34-42c4-b441-6ebde4a04d25) + ) + (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d713987b-7bdf-4db7-97ed-b3a2a6944952) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 70afec75-d250-4484-9e38-ea576185f7c7)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8ab81be1-ad52-40dc-adfa-8adc92f990ee)) + (pad "1" thru_hole circle locked (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 1fa7ed73-0a05-4c8f-8a58-8d069853f1f5)) + (pad "1" thru_hole circle locked (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2b6dbb94-34f9-46c1-b5c2-669877ce5159)) + (pad "1" thru_hole circle locked (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5948660e-d9c4-444f-9afe-db3e41973661)) + (pad "1" thru_hole circle locked (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 6c8503f0-2dd0-4ea8-961c-b36f8272c977)) + (pad "1" thru_hole circle locked (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 7c83de76-a9cc-405c-a98f-03d167c08673)) + (pad "1" thru_hole circle locked (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 7caf3d56-6ff0-4a30-be80-eb1266cf1e8c)) + (pad "1" thru_hole circle locked (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 9110fe0b-9b0a-4e81-9405-6f0782ecd078)) + (pad "1" thru_hole circle locked (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c610fcc8-60e1-4060-9559-dfed03215e65)) + (pad "1" thru_hole circle locked (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp e485864a-8875-4fa3-b92c-95a2e9caf1f3)) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" locked (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-00006091b206) + (at 43 71) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060a2bb4b") + (attr exclude_from_pos_files) + (fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 83c636a4-74de-430f-a9ce-07826221f05f) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 28e9392b-c0d1-4ebd-8a6c-5388c919d4c2) + ) + (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e2609cac-e7b1-4837-b20e-f01f9286f2cc) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp bb1d77e2-2e0a-4f40-93fd-c12731963f96)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 83f49e25-43ce-4a02-a889-20479a2bce7d)) + (pad "1" thru_hole circle locked (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0d0f72ea-ab97-41a9-83bd-5009a88e7b2b)) + (pad "1" thru_hole circle locked (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 238971cf-5d0e-4151-ba90-c7e119968919)) + (pad "1" thru_hole circle locked (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2e419028-10f1-47c1-87d8-92da318e00bc)) + (pad "1" thru_hole circle locked (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 8f63fb36-f32a-41e0-98b3-3d05d140ca41)) + (pad "1" thru_hole circle locked (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a4e10989-5ba0-47cf-83db-637695d171b7)) + (pad "1" thru_hole circle locked (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp bdde50d4-f1ca-4ad6-a9ae-0e25efcba2f3)) + (pad "1" thru_hole circle locked (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d363b0e6-bcd6-4fab-9790-cdb230fb627a)) + (pad "1" thru_hole circle locked (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp df8e11c5-c774-44fd-8bae-19ce2ca44cfe)) + (pad "1" thru_hole circle locked (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f25a3182-3d85-4b3c-bb1a-dcf24f6e97d8)) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" locked (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-00006091b216) + (at 75 71) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060a2c3e0") + (attr exclude_from_pos_files) + (fp_text reference "H4" (at 0 -3.2) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1871ef69-19bb-49fc-960f-a41df4fb261f) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bc58381c-277e-492c-be2b-cf3c4c67ece9) + ) + (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5ebc8e01-4911-4fee-adf8-9ce48a0805b8) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 73ad7a39-8161-4119-9b03-f3071716377f)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 38b3255f-9cde-4430-bad7-2f2388cb1d58)) + (pad "1" thru_hole circle locked (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0ac1da2a-5b66-4ada-b66e-b3520b51a47d)) + (pad "1" thru_hole circle locked (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2e22e3b9-e973-4c82-82f5-6d4ce0a61247)) + (pad "1" thru_hole circle locked (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 577dd06b-41d0-4317-bb9a-1252ea396258)) + (pad "1" thru_hole circle locked (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 7bd8e002-124a-4196-aa55-d6c56d1cded6)) + (pad "1" thru_hole circle locked (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 8e8b3dfd-fb58-4cf8-a4ca-7e96599cfe81)) + (pad "1" thru_hole circle locked (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 9eb6d534-2645-4103-b260-04ba4c4e0a76)) + (pad "1" thru_hole circle locked (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a30f8149-a0eb-4540-be46-2fda206e4717)) + (pad "1" thru_hole circle locked (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a761dc6d-dcca-4bc7-a7cf-d9b6baa2d838)) + (pad "1" thru_hole circle locked (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp cb4bb793-73eb-4f46-b36c-956b89185ece)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00006091b2b7) + (at 76.2 48.26) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-0000609717cf") + (attr exclude_from_pos_files) + (fp_text reference "J6" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2d372fd7-82cf-4824-b5fc-5d04a6672ff1) + ) + (fp_text value "Testpoint_RST" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1863e61c-6942-46a0-9d43-7e8a7a71970c) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 48a10197-eb83-4090-a789-c5ab64fe4b91) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3465b9be-468c-4982-917f-0a5bd6fea1b6)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp eaad45d1-12e7-4523-b4ff-5d1ef9eaa582)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 4 "nRST") (pinfunction "Pin_1") (pintype "passive") (tstamp 0bf7629d-9b30-475e-8edd-b5aea21a2344)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00006091b2bf) + (at 48.26 50.8) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060971cc4") + (attr exclude_from_pos_files) + (fp_text reference "J7" (at 0.54 -1.9) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3180bda7-2313-4d33-9026-cfbca1571944) + ) + (fp_text value "Testpoint_ADC" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c7689553-2617-4e17-80f9-22f3824e3d8a) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a6cd0d6b-c3f9-45e6-a972-177cb6b38197) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6cc945f1-aa44-4449-8ac5-d0fedc168693)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6e3acd51-92cc-4079-b0ca-94ccf640d47a)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 16 "ADC") (pinfunction "Pin_1") (pintype "passive") (tstamp d8ed7b5e-fc47-4412-9b29-a21a4e8dbd24)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00006091b2dd) + (at 73.66 60.96) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006094781b") + (attr exclude_from_pos_files) + (fp_text reference "J9" (at 1.524 1.524) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp daa7dc38-54c0-480b-9d6b-60792768715a) + ) + (fp_text value "Testpoint_3V3" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 35c20276-68d3-40f8-bd91-c61e5f26660b) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a3d2f8fc-cb79-4803-80df-cd0a0f111fd0) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6c17cd18-1128-411b-9b7b-a06f49907edd)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp edfe4043-5d4e-4048-90c6-36d0a459cbbc)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 3 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp c0403adc-b358-4774-ac70-4e9550d7948b)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00006091b2e5) + (at 71.12 63.5) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060947827") + (attr exclude_from_pos_files) + (fp_text reference "J10" (at -1.524 -2.032) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e3f8037c-413d-444e-8c0a-6780de297e04) + ) + (fp_text value "Testpoint_GND" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f261774c-dfcb-4768-8013-e023d169838c) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 55c3aff1-597c-48e8-beab-225c03ca9d4d) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 16c154e4-f4c5-4e03-b8af-18e9e97f8cca)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 87c4afa9-765b-4328-9651-b669b143279b)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 4078b08d-bdba-4b81-b084-5d3651aa026c)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00006091b2ed) + (at 68.58 66.04) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609480a1") + (attr exclude_from_pos_files) + (fp_text reference "J11" (at 1.778 1.778) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cf9e45a9-06d4-4f12-91b6-46a6b40afce2) + ) + (fp_text value "Testpoint_LDO_IN" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 57c2c8f3-2dcc-48f2-a427-6a704da465bd) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 563e20b8-8222-41f3-a9ec-3a58da80ca02) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp bcebcb1d-4f80-4bf6-a4a5-60ac5707639f)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1d47c16e-bb4d-41ab-b34b-09473548becc)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 2 "/Power/LDO_IN") (pinfunction "Pin_1") (pintype "passive") (tstamp d7348d04-1e19-4acf-aced-f466ede40973)) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b356) + (at 73.152 48.895) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006081b1dc") + (attr smd) + (fp_text reference "R1" (at 0 1.397) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e61d19f0-7d5b-4532-89b1-def5fe8bed42) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1e18487c-982b-4ea7-ae14-6f4585acf9fd) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 842505bf-c2f7-409d-80c7-5d87a584c144) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 854cb60a-9753-48d5-bea9-ae043c354fda)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ea83c577-32e2-4a30-a61d-592904463b09)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 04efca5f-859e-419e-9537-6570dee9073d)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22d5b1b2-9e11-4dd2-94fa-ff58482934d8)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bfad935f-447c-4fcb-b213-5877e7eba83c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f77ae3de-e2f4-49b9-8092-867f077017d2)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2ac099c6-b9c6-4980-beeb-8f5c0726eba8)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4802ddac-025a-4f13-826e-c25613799a92)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7dcfd59a-05a3-4da9-b2d6-439039e2b990)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b1f93807-8149-46d9-95bc-f5919d44bd86)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp c3e27bba-1773-449a-b285-94edad955e45)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "nRST") (pintype "passive") (tstamp 954d7e97-3591-4cfb-86f7-23a59abfac60)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b367) + (at 69.977 48.895 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006085beaf") + (attr smd) + (fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 74ee5e68-cdf5-4374-831a-e012379794b2) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6248d564-75e2-42b6-a389-ce7a29be0c68) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 0fbfd44d-3117-4f45-855f-706747a8c8c7) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c37e6200-45eb-46ef-8223-a4d9209a474c)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ea8bef9b-e923-4ca9-bd46-30bf025ab83d)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 46b7b6e0-fece-4398-84aa-908d8f1e31e5)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 87eedebe-2c50-427f-953e-0c8c4fa354de)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 916e7139-af10-4446-9eb4-1018760088ab)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp be6fa65e-e95f-4188-8ee8-13928a7322e6)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 017f59f8-07a9-4528-95c7-51e49ff4a213)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0359fab7-3fea-4bd5-9e6c-44a2a74db6b9)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3b061c27-28d6-4b49-822b-ebe7b703144f)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e18aa856-ba57-42fc-b5df-1ae1aeb0a860)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 962601d5-04c8-46df-9331-63387a9b6e43)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 19 "EN") (pintype "passive") (tstamp cdc90340-3489-4238-a91b-7b01953071f4)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b378) + (at 64.77 46.482 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006085b97b") + (attr smd) + (fp_text reference "R3" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1ee7c097-31b7-4ff5-a2e7-4c519b12d50f) + ) + (fp_text value "12kOhm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f075762e-1e25-4f96-9c38-ecd81f0cda49) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 663835e9-b7a9-4b09-80c8-5cfbd1183e63) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 54a6e822-14ea-4cfb-9120-cbe0def835d8)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7028925e-3d21-4476-ae49-b5c79b9a2e1b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 43057129-93f7-4780-9904-5176eb97e8a7)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7933edc1-4a05-4c99-8271-e1d75ae33d06)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaf8ac64-6ee5-40a7-ba53-a3ac6de6698a)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dba20475-3b1c-46ac-a74a-4222c23c0fa3)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0578f90d-be47-41a2-a336-4f9472357450)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 231f3e01-5421-452b-a2c9-d49f2a8fbf09)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3c1e1693-5a13-468d-ab31-e4cc80952088)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 50b965b6-7794-46f1-904c-5f7f71ffced5)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp f279d6a3-4270-46c7-b8ec-46232208a686)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "FLSH") (pintype "passive") (tstamp 20307f1c-c528-4d86-9e9c-623974ac7095)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b389) + (at 67.818 46.482 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006085aaa5") + (attr smd) + (fp_text reference "R4" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 683938a9-4cad-470a-8a20-1c02ddf3a41c) + ) + (fp_text value "12kOhm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c3154098-bf60-498d-8deb-45ed479cf661) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp ba0bb642-6c5e-48cd-8e1e-d0e3c8fc8b17) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1b2d4289-a1eb-4ee7-bdf1-7aabe5d5c861)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2046db1d-6ed6-44eb-ac07-b30f8910835e)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 23b5bef6-0ddd-4cb0-96a7-f9d1f7685b18)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 27a9c20d-01b7-4b5a-9685-f75310b867f6)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9322d67-c3d9-4175-bcf7-6208c7e976bf)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c45dbae5-764d-458a-9f7e-fb4c2fabd3ad)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2f8af555-259c-4a60-b6a3-1db23e33a3af)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 400b8ccc-1682-4618-a10c-599ce69ec024)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6625822b-37dd-412d-8450-e24a6b6ead3a)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp bdbbce02-1749-411d-94c7-4099c4a38941)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 02897d8d-8507-4efe-88b6-216892e43f90)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 38 "~{INT}") (pintype "passive") (tstamp 0d60d279-1a26-47cf-a5a1-3d4cc57285c7)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b39a) + (at 70.485 45.72 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006085845d") + (attr smd) + (fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05ed375c-4b6d-47c7-8870-2a152174e404) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c4390247-e305-454f-8649-6f1397e88a02) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 23ddc2f6-2bae-4e89-90e1-e22976e891fa) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6e847ee1-5e2e-4879-8e82-848c9c3f9336)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 805bf5e6-7b3e-47f8-93b0-68164dc7865d)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 14131a7b-887d-426d-8e2a-c0d8b08465d7)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 647fd539-293f-41ac-8fe0-ce32748e06ec)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6eb87415-bb90-492c-87f6-29d82e7c5a1d)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7690dcf9-b190-4f66-bc09-780b96871f10)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1e4b03d9-5771-4bf4-b9d5-fba761140d59)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8e1ed270-cdf7-4aff-9a15-e4906a47da4d)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9f6baa42-44bb-4d11-88dd-d72b8d069589)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ce425960-f779-44c5-b34d-3aa47de0e4ed)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp d5286b2b-0971-4da7-a080-6dc1473aecd5)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 23 "CS0") (pintype "passive") (tstamp d926d32a-206d-4625-80c1-7226c8c33826)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b3ab) + (at 71.628 38.354) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006079ffa8") + (attr smd) + (fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3864c266-2557-441a-8d77-ef9f32d13cd1) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 731cbc38-6558-4e27-87d2-be0674c852d1) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp a7eb9a75-3ae6-4f00-b82a-57edeb48df82) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 74c90858-a09f-4931-8472-574c4be77848)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ae1171f2-65e7-453d-acde-02a15e3d8115)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5fb9e578-592a-43a5-9563-286dfea054aa)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d2c811d-d20f-4144-a2ff-dfc17482552b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e9b5dea2-bbdf-4808-b351-2bae23194754)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fc591d97-5c2d-430f-b073-8236e8d3ac74)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1f5b8d10-1f30-4a80-965d-e461895bfacc)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2aa4c640-d2b7-4545-85f7-2506d11bd5f7)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 61ee5586-1aa4-431c-ab99-19589c20ca08)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d3757df0-6ec6-4059-9fc3-2908b895a39e)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "DTR") (pintype "passive") (tstamp 84a2279e-313c-41b5-9b4f-24ba5051bdff)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 77ddfe41-dc21-4177-adf9-71a93135dbc6)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b3bc) + (at 67.818 43.18 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006079ea60") + (attr smd) + (fp_text reference "R7" (at 0 1.27) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d47b7d37-48ee-4045-8ad4-ec02a40c6991) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cbfbfa0f-4d76-4bda-aa55-78bb2e4b9427) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 9a0388f3-b117-4b06-b8b4-0afc710ecd1c) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3056a1dd-a47f-4920-a05d-6602c74e916a)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9ef94212-aa44-488c-951c-4903b056033b)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 24dec049-8ff5-4c1c-a225-34bc34768997)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9642842e-5603-4d0c-af19-f6c5b98b376f)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a89fe554-53c6-4f92-aed6-ea1cd59c6df4)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ff95ee60-0665-476a-8795-d70d71f52a54)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0bae8ff4-3637-4905-b848-1912e7c966ff)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 331a8f1d-aba1-4c8d-80e9-e9d3d72ed74b)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 401b4be2-2970-4419-a119-6f6701abc347)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fa4c9958-81e8-44ee-95fe-4c2b3bdd0163)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "RTS") (pintype "passive") (tstamp 744a26a5-f582-4124-b43a-189eeed1a84b)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 5d478594-3863-4c3c-a1e3-b6feea966063)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b444) + (at 46.99 61.468 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060920300") + (attr smd) + (fp_text reference "R15" (at -2.794 -0.254) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a02e51ff-5f6d-4333-abf5-15704e927b68) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7ef99fb2-71b6-4354-b945-b1369058272d) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 1895d8f8-990d-430d-b67c-a075969eb66e) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 103492a0-9819-4010-9e2e-842c23f0d126)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 23ba3811-b2b5-49fa-9cee-672d8530eb3f)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22c9dd54-a41d-423b-8c8b-1241eabe784e)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2dc3b890-ba65-464f-a541-349d298437b1)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 63a60159-28f1-4d11-9495-16d906bfbc8d)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ecb76522-09f3-49d5-91c0-a9d6fb4c3c92)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 180d6c44-7678-41bc-9960-c3038244a7fe)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 229e2530-c6a9-47e3-b5b7-1dd7ffa71ebc)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5007746c-118a-4666-ab73-9ff8995b9ff8)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ee3a0da1-6e8e-48f4-bae5-ef1d3b5d8170)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "ADC") (pintype "passive") (tstamp d01ff1f3-e52c-49e5-af33-10631a535453)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 11 "VOUT") (pintype "passive") (tstamp 198a85b6-fa56-44de-be3c-7cdabbfd460a)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091b455) + (at 45.466 59.69) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21190") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-0000609222d7") + (attr smd) + (fp_text reference "R16" (at 1.27 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2e921640-daa6-4568-a058-adc1c497f2e2) + ) + (fp_text value "1kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ad0ffe47-2ff0-4f85-b7b3-e8ea76b8015d) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 6867390f-e430-48a6-8a8f-dff3fa3eb5b2) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5ff0c4ac-c6a6-429a-8e04-75e7fd7c2e44)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c95266ea-938a-47f6-8bd6-c6b722617818)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38363509-c421-4ad5-925d-f11d1d859d90)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b604f96-de4a-44cd-b7e3-c18254c071e0)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 88a5142d-0da7-48fc-9613-c6b72efb56f3)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc3fb1fd-977d-4b24-80e2-6e7353377121)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 37cc7ec0-f582-493d-8201-0639dc396d87)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 58b79e5d-9aa1-4d48-a0b6-520d75e9ad83)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c67651d2-10d4-45e3-a381-1accd3530404)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d0673ece-c4db-4321-abe8-e14513f25488)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp a59f1301-f914-49ea-a65b-ff197d4f38dd)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "ADC") (pintype "passive") (tstamp 4a7e1d95-2b39-4936-bb09-bcccf69df677)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (layer "F.Cu") + (tedit 5DC5F6A4) (tstamp 00000000-0000-0000-0000-00006091b4cb) + (at 58.42 37.338 -90) + (descr "QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py") + (tags "QFN NoLead") + (property "LCSC" "C6568") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-0000607804b7") + (attr smd) + (fp_text reference "U2" (at 2.032 -3.81 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b4713e6c-83b4-4288-a749-038a578e6254) + ) + (fp_text value "CP2102-GMR" (at 0 3.8 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb677467-9ae8-42d5-9240-7ac5f1b8ed89) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a0190236-94ec-4f66-a6f9-c798bab11b05) + ) + (fp_line (start -1.885 -2.61) (end -2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp 6f19f141-21e7-401d-b101-ad650a2f2dce)) + (fp_line (start 2.61 2.61) (end 2.61 1.885) (layer "F.SilkS") (width 0.12) (tstamp 7914acba-3d04-4a88-84a4-157dd9ecf5c6)) + (fp_line (start 2.61 -2.61) (end 2.61 -1.885) (layer "F.SilkS") (width 0.12) (tstamp 7f1af019-1cec-4e42-8114-a8bf541824cb)) + (fp_line (start -2.61 2.61) (end -2.61 1.885) (layer "F.SilkS") (width 0.12) (tstamp 8ca25394-16d5-4fba-b823-c4728ca6f05f)) + (fp_line (start 1.885 2.61) (end 2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp cfd1b653-38c4-4ae0-80a9-9674ceb68eda)) + (fp_line (start 1.885 -2.61) (end 2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp ed4092f0-0bce-464e-b707-10cf7ed0395a)) + (fp_line (start -1.885 2.61) (end -2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp f7ca0d2b-8278-4a0b-b1c5-9afbfed0ea61)) + (fp_line (start -3.1 -3.1) (end -3.1 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 8cc8d918-5324-453d-8c5c-b8cd147b4f83)) + (fp_line (start 3.1 3.1) (end 3.1 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp a2d8aa5e-4ed4-4c48-8993-a7697b8ed880)) + (fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp dbb7bbc7-6d0d-44d3-9cc1-4364333fb66d)) + (fp_line (start -3.1 3.1) (end 3.1 3.1) (layer "F.CrtYd") (width 0.05) (tstamp ddd333ca-186c-4107-a92d-c4d7a1fcf7f7)) + (fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 20db2810-4ff7-4acd-a25f-9a59068cb417)) + (fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 265818cd-6ab8-4a4d-abbe-b79461ccfe75)) + (fp_line (start -1.5 -2.5) (end 2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 4e40770e-e07f-4186-85bf-d9f3703c9ada)) + (fp_line (start -2.5 -1.5) (end -1.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 7ba43928-130c-4370-9336-fed687d64d07)) + (fp_line (start -2.5 2.5) (end -2.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 9cd1881c-9f13-4f1f-8ea7-10a7d5e47cea)) + (pad "" smd roundrect (at 1.12 -1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 2bef8aed-8cb7-48f4-949b-9eb4640e3d95)) + (pad "" smd roundrect (at 1.12 1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 3b66de5c-3dee-4b23-a95b-bc43b7fcc6f9)) + (pad "" smd roundrect (at -1.12 1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 464b7102-27f8-4d04-b2bf-2c4204a6c642)) + (pad "" smd roundrect (at 0 1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 4d55bbc1-3943-4c27-8751-0bca7eb8e364)) + (pad "" smd roundrect (at 0 -1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 75373080-b5c4-4e98-8df4-73ae620461e4)) + (pad "" smd roundrect (at -1.12 0 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a522b0f5-725d-45c3-a4b9-99f25cb1a39b)) + (pad "" smd roundrect (at -1.12 -1.12 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp b20ec5ab-3b7b-4eb7-96e3-414ed0798267)) + (pad "" smd roundrect (at 0 0 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp db029ef6-59b7-4f9e-b9da-04a4003d2688)) + (pad "" smd roundrect (at 1.12 0 270) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp e59672db-d302-4ea2-9ecf-b6c2241952ff)) + (pad "1" smd roundrect (at -2.45 -1.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 49 "unconnected-(U2-Pad1)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp f4e2a0dd-4744-482a-bda7-38fd2b80c950)) + (pad "2" smd roundrect (at -2.45 -1 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 48 "unconnected-(U2-Pad2)") (pinfunction "~{RI}/CLK") (pintype "bidirectional+no_connect") (tstamp 48ead464-8da2-4fa2-83b6-2a231e7f6f56)) + (pad "3" smd roundrect (at -2.45 -0.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 386d6018-198a-44cc-94f5-b151bb2c7760)) + (pad "4" smd roundrect (at -2.45 0 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 71 "Net-(J1-Pad3)") (pinfunction "D+") (pintype "bidirectional") (tstamp 5f141707-e8e6-43b9-a1da-23f770c52182)) + (pad "5" smd roundrect (at -2.45 0.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 72 "Net-(J1-Pad2)") (pinfunction "D-") (pintype "bidirectional") (tstamp 28d98661-9acd-4b7e-909f-66a5c6b1cfc4)) + (pad "6" smd roundrect (at -2.45 1 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pinfunction "VDD") (pintype "passive") (tstamp 097b288c-42db-4a14-bc27-b552f3e4714f)) + (pad "7" smd roundrect (at -2.45 1.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pinfunction "REGIN") (pintype "power_in") (tstamp 3c6114ad-7f70-47f6-96ec-8faad569739c)) + (pad "8" smd roundrect (at -1.5 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+5V") (pinfunction "VBUS") (pintype "input") (tstamp 6467fce2-de94-4952-be1b-d849e67efb39)) + (pad "9" smd roundrect (at -1 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 55 "unconnected-(U2-Pad9)") (pinfunction "~{RSTb}") (pintype "input+no_connect") (tstamp c19a244a-eb28-4f79-b90c-ed77d63a67be)) + (pad "10" smd roundrect (at -0.5 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 68 "unconnected-(U2-Pad10)") (pinfunction "NC") (pintype "no_connect") (tstamp 3a3615ca-603c-4b79-8f95-6e2bf1ceafd3)) + (pad "11" smd roundrect (at 0 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 67 "unconnected-(U2-Pad11)") (pinfunction "~{SUSPENDb}") (pintype "output+no_connect") (tstamp 7c5acb3d-abb9-4783-b684-ff39ee0a42bf)) + (pad "12" smd roundrect (at 0.5 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 66 "unconnected-(U2-Pad12)") (pinfunction "SUSPEND") (pintype "output+no_connect") (tstamp d7cb4707-b0f1-45bf-a3b5-576e3e84f7a6)) + (pad "13" smd roundrect (at 1 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 65 "unconnected-(U2-Pad13)") (pinfunction "CHREN") (pintype "output+no_connect") (tstamp b7c0dbd5-76e4-4f5a-8450-d571f4948d8d)) + (pad "14" smd roundrect (at 1.5 2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 64 "unconnected-(U2-Pad14)") (pinfunction "CHR1") (pintype "output+no_connect") (tstamp 7384c2c6-334e-4ab2-800c-ba7cb9f7517d)) + (pad "15" smd roundrect (at 2.45 1.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 63 "unconnected-(U2-Pad15)") (pinfunction "CHR0") (pintype "output+no_connect") (tstamp e7f9def2-5130-4cb1-9bc6-c6a4d6dab48a)) + (pad "16" smd roundrect (at 2.45 1 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 62 "unconnected-(U2-Pad16)") (pinfunction "~{WAKEUP}/GPIO.3") (pintype "bidirectional+no_connect") (tstamp f640b718-f762-4a30-965f-0be0dbbfb83a)) + (pad "17" smd roundrect (at 2.45 0.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 61 "unconnected-(U2-Pad17)") (pinfunction "RS485/GPIO.2") (pintype "bidirectional+no_connect") (tstamp c9cea861-bd7c-4918-b9ac-68088b34867a)) + (pad "18" smd roundrect (at 2.45 0 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 31 "/RXLED") (pinfunction "~{RXT}/GPIO.1") (pintype "bidirectional") (tstamp 1890fd65-af8d-417f-9700-b48fa78457a7)) + (pad "19" smd roundrect (at 2.45 -0.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 29 "/TXLED") (pinfunction "~{TXT}/GPIO.0") (pintype "bidirectional") (tstamp ddc92cf7-df58-46b0-ac2d-afd4929db631)) + (pad "20" smd roundrect (at 2.45 -1 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 60 "unconnected-(U2-Pad20)") (pinfunction "GPIO.6") (pintype "bidirectional+no_connect") (tstamp 402552ed-e648-4575-b78a-acf36ea2a2aa)) + (pad "21" smd roundrect (at 2.45 -1.5 270) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 59 "unconnected-(U2-Pad21)") (pinfunction "GPIO.5") (pintype "bidirectional+no_connect") (tstamp 6da48e29-f5a9-4c9a-9f3e-792f940568fa)) + (pad "22" smd roundrect (at 1.5 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 58 "unconnected-(U2-Pad22)") (pinfunction "GPIO.4") (pintype "bidirectional+no_connect") (tstamp 62240e6a-dc94-44e6-9759-9c2bc6fd7baa)) + (pad "23" smd roundrect (at 1 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 57 "unconnected-(U2-Pad23)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp 9cab968f-230f-4e54-bb27-f8be5fa1c3ed)) + (pad "24" smd roundrect (at 0.5 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "RTS") (pinfunction "~{RTS}") (pintype "output") (tstamp 61cfba54-0d16-4c85-afb6-5d6b19214f98)) + (pad "25" smd roundrect (at 0 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "TXD0") (pinfunction "RXD") (pintype "input") (tstamp fb44374c-c109-4ab6-bfcb-f89ab83cdf6e)) + (pad "26" smd roundrect (at -0.5 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "Net-(R9-Pad2)") (pinfunction "TXD") (pintype "output") (tstamp 7c503a42-ad19-482d-8686-ed0af1570c54)) + (pad "27" smd roundrect (at -1 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 56 "unconnected-(U2-Pad27)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp 72e618c9-2e55-4150-8910-b624faf5230d)) + (pad "28" smd roundrect (at -1.5 -2.45 270) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "DTR") (pinfunction "~{DTR}") (pintype "output") (tstamp 4afdd71d-b14a-4949-82d2-26cfb1de5e9c)) + (pad "29" smd rect (at 0 0 270) (size 3.35 3.35) (layers "F.Cu" "F.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1a4b58c5-9a7a-469d-a267-abc44e20c99f)) + (model "${KIPRJMOD}/packages3D/QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") + (tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006091cc95) + (at 60.198 61.722) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "LCSC" "C6186") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c93e") + (attr smd) + (fp_text reference "U3" (at 0 -4.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7f6f86e5-cde2-4768-9df8-c7a770fe3068) + ) + (fp_text value "AMS1117-3.3" (at 0 4.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 923aee9d-5e15-4210-abfd-6fd9eb1c6b08) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 12656ac0-1adc-464a-b7fc-735f42a8a51a) + ) + (fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 4eb6bcc3-adae-4c06-958e-2ea90d8c8a26)) + (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp dd3712a5-c631-416e-b9d6-73efcfe202c8)) + (fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp f6b915b7-651f-4dc1-b8a4-cf707ccbebae)) + (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp f86c73d2-3c81-484b-8dab-e753b094fdcd)) + (fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 82a94fde-099a-41fe-a080-2541a9d33018)) + (fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 9599ea64-b60d-41de-8070-0bb13e757bc4)) + (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp a619be13-cc62-4ce6-8a0b-42c3695b6986)) + (fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp b870a53c-e3bf-4d4c-a875-d83a00210d27)) + (fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 3feed224-1230-4274-a976-31519f4ddb67)) + (fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 407df775-ef09-4f95-94da-e4ee12906aa5)) + (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 7602d513-f066-4137-8369-10a7b833152b)) + (fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 8aaba497-a335-453d-8d91-06c8df6951da)) + (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp fcd2a5e3-5936-4890-82db-3a6d5315f14e)) + (pad "1" smd rect (at -3.15 -2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8720f47b-6354-4ffa-a9d0-2a7fb56ba5fe)) + (pad "2" smd rect (at -3.15 0) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 4259811e-d281-4c45-80d1-5596d1ca9b27)) + (pad "2" smd rect (at 3.15 0) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 682f022f-d4d1-4ada-8f7c-2472f737c8ce)) + (pad "3" smd rect (at -3.15 2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "/Power/LDO_IN") (pinfunction "VI") (pintype "power_in") (tstamp 51e3d480-bc43-4174-bdc0-6b56f6eb0fe6)) + (model "${KIPRJMOD}/packages3D/SOT-223.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006091d95b) + (at 63.183 36.068 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23179") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006088365f") + (attr smd) + (fp_text reference "R9" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5a364e71-f42d-4fe1-b6d3-7f7cac3fc7f1) + ) + (fp_text value "470Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f9643ec6-7fa9-499c-b1c6-c265b1e5f2ce) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp ada8d3b2-fbe9-4242-92bc-f0be61eeb9c7) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0263e8b0-f3f2-4631-be12-47a1efe3eda6)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp a1bd19d9-3c6e-4e97-8569-8d2585137077)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 083d86be-3862-4fc4-9631-0f716dea5eb9)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a4d605d-afbc-43f9-b00b-de8b7fcb5cb6)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4f4ede3b-f69a-4a7a-a88f-f94d3ee4dc78)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6db302a8-a400-4b3c-8061-0f504d37fe8d)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 237bc908-0ab4-43e8-8aa5-73a2ac002fc3)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 34908ce5-ac37-4a3c-9b56-d08f26cd6dae)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bf81c619-247d-43dd-8daf-c04ca7edaed5)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c96e4087-a000-4292-a2c0-fa2842e9163a)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "RXD0") (pintype "passive") (tstamp 502a7df9-7978-49cf-b8b9-6dfb9e8e8b64)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "Net-(R9-Pad2)") (pintype "passive") (tstamp 8af9e9d7-27b8-4b47-869f-481758ddfb7a)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060921d13) (at 65.786 52.832 90) (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/609C54A2) + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c54a2") (attr smd) - (fp_text reference C2 (at 0 -1.68 90) (layer F.SilkS) + (fp_text reference "C2" (at 0 -1.68 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2c22f413-c89b-452d-90e3-cafdfb6bbb72) ) - (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) + (fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6bba9911-9771-4e77-82ed-1ce2a3c9721f) ) - (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp ff724117-d2d4-49a8-a7e7-f2e8bbf6f591) ) - (pad 2 smd roundrect (at 0.95 0 90) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.95 0 90) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 3 +3V3)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl - (at (xyz 0 0 0)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3a34ee3f-3a8b-4c5b-9740-70c0c3be4a67)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 76de2a06-4af4-4bd8-a45d-2ad9f735c21f)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1d2572f0-68cc-4270-882e-0e9504eae93e)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 434a9b58-c44f-4c83-9da3-2639a1ecbbce)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5450cd1a-069b-415e-8ce4-e4db3ce9bcc7)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6688385a-4e98-4dcf-9424-a6c944deb9df)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 76e94213-3f11-4f50-9eb3-c0cd3ee5f2c2)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9b9226d1-90e8-4512-9a0a-69a44449ad7d)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c8958aca-81a7-4f00-89c4-d400e342d220)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f91b50c2-6d4a-48fb-830a-098f3fed7776)) + (pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 95e8aa2e-75b8-4489-adee-56fc23259546)) + (pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp c9b49136-ce31-4646-942b-31d5907eafa0)) + (model "${KIPRJMOD}/packages3D/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) - (module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 6091B0BB) - (at 54.356 63.246 90) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") - (tags capacitor) - (path /6078273A/6078C989) + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060a82efd) + (at 75.692 38.608 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060b5c010") (attr smd) - (fp_text reference C1 (at 0 -1.68 90) (layer F.SilkS) + (fp_text reference "C9" (at 0 -1.43 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp cfd33ffc-17f0-4a0e-8eeb-29f565eb4978) ) - (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) + (fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp ed01a3cf-fc8f-4f57-ad02-fea6dd897cd5) ) - (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) - (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) - (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 0.5 0.5) (thickness 0.08))) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 471f6b6a-9e87-4d59-8013-530f0cc815b3) ) - (pad 2 smd roundrect (at 0.95 0 90) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 1 GND)) - (pad 1 smd roundrect (at -0.95 0 90) (size 1 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) - (net 2 /Power/LDO_IN)) - (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl - (at (xyz 0 0 0)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 0c0477c8-cc5f-414b-9079-dba6b39373ce)) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 379c03f5-bb4f-4b84-ad09-2c0d243c5a1f)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 85b72b26-e112-4ffe-b0db-d24da09ed9d8)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92d4b286-f93d-4bf4-8c08-7d86d1970a44)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9f2e14b1-439f-4d4d-9dd9-49ef00a0278f)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c8f589b1-9d0f-40b8-9536-922dad7afd6b)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0de7b9fa-7b7e-4554-a6aa-a434e19a452b)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7b68c144-a666-4d1d-859e-03662dd7c6fc)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8b6767dc-b4e6-4e4d-8e6f-f4fba3fbf534)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f9a5944e-f8a3-49b1-8d8e-612f83ef2ff8)) + (pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "FLSH") (pintype "passive") (tstamp 6e94c2c5-77a6-425b-a731-3f45feae276b)) + (pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 35b1fc30-36c4-496b-82d6-0825d5e5e9fe)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) - (dimension 20.32 (width 0.15) (layer Dwgs.User) - (gr_text "20,320 mm" (at 58.42 82.834) (layer Dwgs.User) + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-000060a83289) + (at 76.2 43.18) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060abdd61") + (attr exclude_from_pos_files) + (fp_text reference "J14" (at 0 -1.998) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3938aef4-a091-4505-9b2e-3540fefcfa03) ) - (feature1 (pts (xy 48.26 71.12) (xy 48.26 82.120421))) - (feature2 (pts (xy 68.58 71.12) (xy 68.58 82.120421))) - (crossbar (pts (xy 68.58 81.534) (xy 48.26 81.534))) - (arrow1a (pts (xy 48.26 81.534) (xy 49.386504 80.947579))) - (arrow1b (pts (xy 48.26 81.534) (xy 49.386504 82.120421))) - (arrow2a (pts (xy 68.58 81.534) (xy 67.453496 80.947579))) - (arrow2b (pts (xy 68.58 81.534) (xy 67.453496 82.120421))) - ) - (dimension 10.414 (width 0.15) (layer Dwgs.User) - (gr_text "10,414 mm" (at 73.787 82.834) (layer Dwgs.User) + (fp_text value "Testpoint_RST" (at 0 2.05) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp f1293e28-da6f-4345-89f3-e01777fabf26) ) - (feature1 (pts (xy 68.58 69.342) (xy 68.58 82.120421))) - (feature2 (pts (xy 78.994 69.342) (xy 78.994 82.120421))) - (crossbar (pts (xy 78.994 81.534) (xy 68.58 81.534))) - (arrow1a (pts (xy 68.58 81.534) (xy 69.706504 80.947579))) - (arrow1b (pts (xy 68.58 81.534) (xy 69.706504 82.120421))) - (arrow2a (pts (xy 78.994 81.534) (xy 77.867496 80.947579))) - (arrow2b (pts (xy 78.994 81.534) (xy 77.867496 82.120421))) - ) - (dimension 20.066 (width 0.15) (layer Dwgs.User) - (gr_text "20,066 mm" (at 40.767 90.454) (layer Dwgs.User) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 738d9845-3ddc-4681-b224-fb6d3ae36a76) ) - (feature1 (pts (xy 30.734 71.12) (xy 30.734 89.740421))) - (feature2 (pts (xy 50.8 71.12) (xy 50.8 89.740421))) - (crossbar (pts (xy 50.8 89.154) (xy 30.734 89.154))) - (arrow1a (pts (xy 30.734 89.154) (xy 31.860504 88.567579))) - (arrow1b (pts (xy 30.734 89.154) (xy 31.860504 89.740421))) - (arrow2a (pts (xy 50.8 89.154) (xy 49.673496 88.567579))) - (arrow2b (pts (xy 50.8 89.154) (xy 49.673496 89.740421))) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c9f9aada-a8ae-4cbc-a480-c579cb82983b)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b7975a62-a7ca-4844-8a13-e6e9f1f00f9b)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 25 "FLSH") (pinfunction "Pin_1") (pintype "passive") (tstamp 9c629251-0a27-468c-b8f8-780cc9c73238)) ) - (dimension 3.81 (width 0.15) (layer Dwgs.User) - (gr_text "3,810 mm" (at 97.566 73.025 270) (layer Dwgs.User) + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tedit 5FA16958) (tstamp 00000000-0000-0000-0000-000060a8329e) + (at 72.644 42.672) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "LCSC" "C2146") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060aa76e5") + (attr smd) + (fp_text reference "Q1" (at 0 -2.5) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 97ea5f2d-f860-4af1-b84f-effa98986da7) ) - (feature1 (pts (xy 68.58 74.93) (xy 96.852421 74.93))) - (feature2 (pts (xy 68.58 71.12) (xy 96.852421 71.12))) - (crossbar (pts (xy 96.266 71.12) (xy 96.266 74.93))) - (arrow1a (pts (xy 96.266 74.93) (xy 95.679579 73.803496))) - (arrow1b (pts (xy 96.266 74.93) (xy 96.852421 73.803496))) - (arrow2a (pts (xy 96.266 71.12) (xy 95.679579 72.246504))) - (arrow2b (pts (xy 96.266 71.12) (xy 96.852421 72.246504))) - ) - (dimension 19.05 (width 0.15) (layer Dwgs.User) - (gr_text "19,050 mm" (at 69.469 24.1) (layer Dwgs.User) + (fp_text value "S8050" (at 0 2.5) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp b28d6e73-f1a6-4f51-aa0a-9083c02e87af) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.075))) + (tstamp 25bfa6be-1c0b-473e-add7-1e3c3f83fb6e) + ) + (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 1f2a577a-5969-4b73-aae7-a1e93409c76d)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 96538f0d-0344-4217-9c87-13ccd601a1af)) + (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9aa9b3f8-7d00-40d2-9d8a-64cee566934c)) + (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp ab876cab-4579-4dd6-ac1f-fc19776f1134)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 142d77e3-a283-4f5d-9aeb-a5f520cafaa9)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1b1e940d-f495-470f-8e71-8850b168ebdf)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 5f9eb838-8c78-4b12-9707-ab94b3bf82ca)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp f5e89d34-d5b5-4864-87a2-b7bcdc1abe30)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 1c94036a-c8af-4453-bffd-6675edc6195a)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 42a9d32f-5042-4312-b450-f7d22b65fa8e)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 56e68821-4944-45dc-9990-45eebce504c6)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 9fce7c73-525c-4f6f-a1f2-0b2237157c72)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp f4996fd3-2f53-4e1c-a260-f12dfcb47ae5)) + (pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 30f79e0d-6bc6-4c1a-b762-4c7938a8c31a)) + (pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "RTS") (pinfunction "E") (pintype "passive") (tstamp e158ada6-c34c-470a-b955-217f479f8b8d)) + (pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "nRST") (pinfunction "C") (pintype "passive") (tstamp 070fb394-e87e-474a-8dd2-5df3ce9814de)) + (model "${KIPRJMOD}/packages3D/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 78.994 42.164) (xy 78.994 24.813579))) - (feature2 (pts (xy 59.944 42.164) (xy 59.944 24.813579))) - (crossbar (pts (xy 59.944 25.4) (xy 78.994 25.4))) - (arrow1a (pts (xy 78.994 25.4) (xy 77.867496 25.986421))) - (arrow1b (pts (xy 78.994 25.4) (xy 77.867496 24.813579))) - (arrow2a (pts (xy 59.944 25.4) (xy 61.070504 25.986421))) - (arrow2b (pts (xy 59.944 25.4) (xy 61.070504 24.813579))) ) - (dimension 15.24 (width 0.15) (layer Dwgs.User) - (gr_text "15,240 mm" (at 88.676 34.544 90) (layer Dwgs.User) + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tedit 5FA16958) (tstamp 00000000-0000-0000-0000-000060a832b3) + (at 67.31 39.37 90) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "LCSC" "C2146") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060aa4e39") + (attr smd) + (fp_text reference "Q2" (at 0 -2.5 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8bac2685-956a-4f9c-bbbc-bb296361cc42) ) - (feature1 (pts (xy 59.944 26.924) (xy 87.962421 26.924))) - (feature2 (pts (xy 59.944 42.164) (xy 87.962421 42.164))) - (crossbar (pts (xy 87.376 42.164) (xy 87.376 26.924))) - (arrow1a (pts (xy 87.376 26.924) (xy 87.962421 28.050504))) - (arrow1b (pts (xy 87.376 26.924) (xy 86.789579 28.050504))) - (arrow2a (pts (xy 87.376 42.164) (xy 87.962421 41.037496))) - (arrow2b (pts (xy 87.376 42.164) (xy 86.789579 41.037496))) - ) - (dimension 1.778 (width 0.15) (layer Dwgs.User) - (gr_text "1,778 mm" (at 59.055 23.084) (layer Dwgs.User) + (fp_text value "S8050" (at 0 2.5 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp f7cc1527-7244-4f65-834c-d58774cd770f) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.075))) + (tstamp 1db48ac6-b700-44b1-8267-e2e804d39930) + ) + (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 17b7afcd-920a-4365-9be0-c423942e5c8e)) + (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 1ad0027d-d2be-47b1-9569-5cdc4070ca50)) + (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 3fb036b6-894d-4144-a4d2-aad35149a0c9)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 655eff00-3bed-4065-93f5-baf347a260a6)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4f70108f-2012-4e73-a566-6da83ebd5950)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 64a637b8-6101-42ed-ac66-bf138ac2fda8)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 658d8750-de2a-4af0-a553-af9d9d386c4f)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp c67216e0-f9f1-4d84-afdd-f9c0f8171976)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 2659b110-5301-4ef2-bb94-32986766ea6d)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 2e22d8fe-dc12-4846-9957-56f61dea3974)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 44a960c0-e373-4355-a714-5c4f85d9857c)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 721824a7-0fcb-4ae6-adc3-a6138f7d59dd)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp ef7ab980-2510-432e-983a-22f2a1df75e2)) + (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "Net-(Q2-Pad1)") (pinfunction "B") (pintype "input") (tstamp bbff575f-0bf8-4dd2-a155-9621f7f39cb1)) + (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "DTR") (pinfunction "E") (pintype "passive") (tstamp 9b8e20d4-3e80-40c6-9178-98d122384c3f)) + (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "FLSH") (pinfunction "C") (pintype "passive") (tstamp bc0d406b-dcd7-478b-a664-092115aa2906)) + (model "${KIPRJMOD}/packages3D/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 59.944 42.164) (xy 59.944 23.797579))) - (feature2 (pts (xy 58.166 42.164) (xy 58.166 23.797579))) - (crossbar (pts (xy 58.166 24.384) (xy 59.944 24.384))) - (arrow1a (pts (xy 59.944 24.384) (xy 58.817496 24.970421))) - (arrow1b (pts (xy 59.944 24.384) (xy 58.817496 23.797579))) - (arrow2a (pts (xy 58.166 24.384) (xy 59.292504 24.970421))) - (arrow2b (pts (xy 58.166 24.384) (xy 59.292504 23.797579))) ) - (dimension 21.844 (width 0.15) (layer Dwgs.User) - (gr_text "21,844 mm" (at 29.434 64.008 270) (layer Dwgs.User) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060a8458c) + (at 58.166 42.164 -90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060bee99b") + (attr smd) + (fp_text reference "D10" (at 3.048 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp dd0a7f22-53c2-4dc2-9d38-65726b03da51) ) - (feature1 (pts (xy 43.942 74.93) (xy 30.147579 74.93))) - (feature2 (pts (xy 43.942 53.086) (xy 30.147579 53.086))) - (crossbar (pts (xy 30.734 53.086) (xy 30.734 74.93))) - (arrow1a (pts (xy 30.734 74.93) (xy 30.147579 73.803496))) - (arrow1b (pts (xy 30.734 74.93) (xy 31.320421 73.803496))) - (arrow2a (pts (xy 30.734 53.086) (xy 30.147579 54.212504))) - (arrow2b (pts (xy 30.734 53.086) (xy 31.320421 54.212504))) - ) - (dimension 12.954 (width 0.15) (layer Dwgs.User) - (gr_text "12,954 mm" (at 37.465 77.5) (layer Dwgs.User) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp dc08fcad-c54b-487d-86d3-25cdba270819) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 79471a8e-ef1f-4257-84ac-71ccac1de975) + ) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 22be81aa-72c5-4c15-b34e-e09e5a0adeae)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 293f26b4-f2db-4f81-83df-98bc004afcac)) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 50c8f2d4-4871-48a2-a800-009f12a094e2)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 02ba1be5-9ac9-4bcb-af7b-738bf9711f6b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9fe2fc4c-0202-45c8-8e37-89fb35d81f77)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1b3f4e6-989d-4e95-82c2-ea02b5e7066f)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec96bc6a-32a3-4ba5-859e-b4ff8a18d4fe)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 047b4a2a-1eeb-4198-8c6e-a1299d41f0e8)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1da235b5-3e02-4854-b35c-7c1715b16f48)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cf83477d-b940-4cda-89db-5af96ebf770e)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d89d99a7-4896-47aa-9886-2fc4b1974cd7)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp d9764d0a-07f2-47ce-b165-2780127be85c)) + (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 31 "/RXLED") (pinfunction "K") (pintype "passive") (tstamp 8097d604-6e54-432d-82fd-a55670f276cc)) + (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 30 "Net-(D10-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 4c1e5f57-f244-4573-b022-8c7a5f8cf1b6)) + (model "${KIPRJMOD}/packages3D/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 30.988 53.086) (xy 30.988 76.786421))) - (feature2 (pts (xy 43.942 53.086) (xy 43.942 76.786421))) - (crossbar (pts (xy 43.942 76.2) (xy 30.988 76.2))) - (arrow1a (pts (xy 30.988 76.2) (xy 32.114504 75.613579))) - (arrow1b (pts (xy 30.988 76.2) (xy 32.114504 76.786421))) - (arrow2a (pts (xy 43.942 76.2) (xy 42.815496 75.613579))) - (arrow2b (pts (xy 43.942 76.2) (xy 42.815496 76.786421))) ) - (dimension 15.494 (width 0.15) (layer Dwgs.User) - (gr_text "15,494 mm" (at 26.894 67.183 270) (layer Dwgs.User) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060a84a7b) + (at 61.722 42.164 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21189") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060bf97a0") + (attr smd) + (fp_text reference "R17" (at 3.048 0 -90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 733d3bee-9e39-47ba-8eb9-3f24973a5255) ) - (feature1 (pts (xy 51.562 74.93) (xy 27.607579 74.93))) - (feature2 (pts (xy 51.562 59.436) (xy 27.607579 59.436))) - (crossbar (pts (xy 28.194 59.436) (xy 28.194 74.93))) - (arrow1a (pts (xy 28.194 74.93) (xy 27.607579 73.803496))) - (arrow1b (pts (xy 28.194 74.93) (xy 28.780421 73.803496))) - (arrow2a (pts (xy 28.194 59.436) (xy 27.607579 60.562504))) - (arrow2b (pts (xy 28.194 59.436) (xy 28.780421 60.562504))) - ) - (dimension 20.574 (width 0.15) (layer Dwgs.User) - (gr_text "20,574 mm" (at 41.275 80.548) (layer Dwgs.User) + (fp_text value "220Ohm" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp b3e6ead8-4665-474a-af20-30f9c014631d) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 3e3a5e38-58c3-425a-a498-8de99f92e18d) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e48fe916-dce9-48a1-86a3-9a2898203dc3)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f8e9aa33-5bce-4ae5-8f23-6299b7613555)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1ac84c25-7603-455d-9dc9-2d9b02630142)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2abf7d08-c142-43bf-a9c2-d3b897f0b851)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 96637eea-ab96-4a63-ae86-83fccf78f22a)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c5447579-64a0-4aeb-84ac-0c2f19c8a980)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 168b5927-8fff-4868-ad5a-146d06e58b3f)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4d0bddf3-1c5f-4564-a2b4-35f07d1eb89f)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7fb5f910-ee31-4d72-b423-4daeb9398f33)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e71f617c-b926-4633-be12-8590418258c4)) + (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "Net-(D9-Pad2)") (pintype "passive") (tstamp 6dfbeb4e-253f-4240-a2e3-8370d5ab005a)) + (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 6a3bf7e8-c103-4eba-a881-458e53fcecea)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 30.988 59.436) (xy 30.988 79.834421))) - (feature2 (pts (xy 51.562 59.436) (xy 51.562 79.834421))) - (crossbar (pts (xy 51.562 79.248) (xy 30.988 79.248))) - (arrow1a (pts (xy 30.988 79.248) (xy 32.114504 78.661579))) - (arrow1b (pts (xy 30.988 79.248) (xy 32.114504 79.834421))) - (arrow2a (pts (xy 51.562 79.248) (xy 50.435496 78.661579))) - (arrow2b (pts (xy 51.562 79.248) (xy 50.435496 79.834421))) ) - (dimension 2.54 (width 0.15) (layer Dwgs.User) - (gr_text "2,540 mm" (at 49.53 15.972) (layer Dwgs.User) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060a84a8c) + (at 56.388 42.227 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21189") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060bfe0f3") + (attr smd) + (fp_text reference "R18" (at 2.985 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5c589da0-c1d6-4875-af6e-88f381f46d28) ) - (feature1 (pts (xy 50.8 36.83) (xy 50.8 16.685579))) - (feature2 (pts (xy 48.26 36.83) (xy 48.26 16.685579))) - (crossbar (pts (xy 48.26 17.272) (xy 50.8 17.272))) - (arrow1a (pts (xy 50.8 17.272) (xy 49.673496 17.858421))) - (arrow1b (pts (xy 50.8 17.272) (xy 49.673496 16.685579))) - (arrow2a (pts (xy 48.26 17.272) (xy 49.386504 17.858421))) - (arrow2b (pts (xy 48.26 17.272) (xy 49.386504 16.685579))) - ) - (dimension 17.272 (width 0.15) (layer Dwgs.User) - (gr_text "17,272 mm" (at 39.624 18.004) (layer Dwgs.User) + (fp_text value "220Ohm" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp c2d1fb9c-17b1-40fc-90ce-103aba31d5ce) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 65a2101d-a2b3-4afb-9cb2-907b641dbe02) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4932caf6-ac63-43f3-95dc-d29cc840320e)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c11bf923-894b-4bf1-b44c-c79ae40ad533)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2247a951-72b1-46ff-9fc0-78f981227bdc)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 655419f0-dfd4-4830-8334-c5b033bf5494)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c42ae2d-4b66-4991-bca5-44618a021cf4)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp afb6a44a-896e-4f84-87a9-ae986b148de5)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3c94a751-a5cf-4d6f-b5a8-7220f6fa12ef)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6eca0783-8aff-4088-8c7d-923f2bf76794)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 82d06059-65df-4ef6-9814-f55d34bea0b5)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e0d0669d-84fb-4c94-9b24-4fe4ebc3e62a)) + (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 30 "Net-(D10-Pad2)") (pintype "passive") (tstamp 82dbc7a8-e4bd-4669-8c46-e1193eaf6871)) + (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 454dcc54-11ad-4011-a347-b513e3b51e95)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 30.988 36.83) (xy 30.988 18.717579))) - (feature2 (pts (xy 48.26 36.83) (xy 48.26 18.717579))) - (crossbar (pts (xy 48.26 19.304) (xy 30.988 19.304))) - (arrow1a (pts (xy 30.988 19.304) (xy 32.114504 18.717579))) - (arrow1b (pts (xy 30.988 19.304) (xy 32.114504 19.890421))) - (arrow2a (pts (xy 48.26 19.304) (xy 47.133496 18.717579))) - (arrow2b (pts (xy 48.26 19.304) (xy 47.133496 19.890421))) ) - (dimension 9.906 (width 0.15) (layer Dwgs.User) - (gr_text "9,906 mm" (at 38.832 31.877 90) (layer Dwgs.User) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060ad620e) + (at 59.944 42.164 -90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060be9e4b") + (attr smd) + (fp_text reference "D9" (at 2.54 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 40110ddb-32f2-42e9-9e8b-f2231b4c3fe9) ) - (feature1 (pts (xy 48.26 26.924) (xy 39.545579 26.924))) - (feature2 (pts (xy 48.26 36.83) (xy 39.545579 36.83))) - (crossbar (pts (xy 40.132 36.83) (xy 40.132 26.924))) - (arrow1a (pts (xy 40.132 26.924) (xy 40.718421 28.050504))) - (arrow1b (pts (xy 40.132 26.924) (xy 39.545579 28.050504))) - (arrow2a (pts (xy 40.132 36.83) (xy 40.718421 35.703496))) - (arrow2b (pts (xy 40.132 36.83) (xy 39.545579 35.703496))) - ) - (dimension 5.08 (width 0.15) (layer Eco1.User) - (gr_text "5,080 mm" (at 23.846 35.56 270) (layer Eco1.User) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 18ee8c12-1bbf-48ad-8e4c-df39903e9251) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 07e04e2d-14cd-46ac-80bc-6f7847a1524b) + ) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2c9d00d7-2c20-460a-a5cb-671a9e4e1092)) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp ce2de1cd-e697-4cc9-8c4e-4e79bada97dd)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f36c5cb7-5bbd-4a33-a8dd-32ac25b41194)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 201585f3-da9b-45d1-bb8e-7972a81401d9)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4473dfe7-6681-46fb-a31d-9cd4449e9a34)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4ac41c52-0689-4a1a-b961-49a65a17225b)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6fa0d224-5890-443d-a14d-da31d20db0b8)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 88df6754-4382-4775-98bb-752269d49daa)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b0f2462e-b56d-402b-bc24-60ab1930c427)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp ba9c533c-1d6d-4dc8-ac32-3ccfdbdd9ed0)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp c04ce445-1ca3-407b-b4b1-097aba523688)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c7836c30-8150-4805-b922-37ae93a1e87a)) + (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 29 "/TXLED") (pinfunction "K") (pintype "passive") (tstamp 60b942cd-d655-4dad-9e7f-02c5d31ac6d3)) + (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "Net-(D9-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 8c8e2a4c-e246-48c6-aec5-5a4d8f37faa2)) + (model "${KIPRJMOD}/packages3D/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 35.56 38.1) (xy 24.559579 38.1))) - (feature2 (pts (xy 35.56 33.02) (xy 24.559579 33.02))) - (crossbar (pts (xy 25.146 33.02) (xy 25.146 38.1))) - (arrow1a (pts (xy 25.146 38.1) (xy 24.559579 36.973496))) - (arrow1b (pts (xy 25.146 38.1) (xy 25.732421 36.973496))) - (arrow2a (pts (xy 25.146 33.02) (xy 24.559579 34.146504))) - (arrow2b (pts (xy 25.146 33.02) (xy 25.732421 34.146504))) ) - (dimension 4.572 (width 0.15) (layer Eco1.User) - (gr_text "4,572 mm" (at 33.274 22.322) (layer Eco1.User) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060b18c65) + (at 51.562 51.054) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607c2a6a") + (attr smd) + (fp_text reference "C8" (at -0.762 -1.524) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9d6f1655-bfcb-4710-8e3c-75759343480f) ) - (feature1 (pts (xy 30.988 33.02) (xy 30.988 23.035579))) - (feature2 (pts (xy 35.56 33.02) (xy 35.56 23.035579))) - (crossbar (pts (xy 35.56 23.622) (xy 30.988 23.622))) - (arrow1a (pts (xy 30.988 23.622) (xy 32.114504 23.035579))) - (arrow1b (pts (xy 30.988 23.622) (xy 32.114504 24.208421))) - (arrow2a (pts (xy 35.56 23.622) (xy 34.433496 23.035579))) - (arrow2b (pts (xy 35.56 23.622) (xy 34.433496 24.208421))) - ) - (dimension 6.020225 (width 0.15) (layer Eco1.User) - (gr_text "6,020 mm" (at 26.872948 30.080425 270.4949014) (layer Eco1.User) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 83f33aa9-5989-48c1-a57f-6d90ab65ecfc) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp d61ebe96-4889-4d28-9da8-a120a88e8a85) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 0ded1baf-3c9b-49c9-a5be-73a10a76e733)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 498649cd-565f-44e5-8b1d-785dbd16d120)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1fcc7bd4-45bc-407a-8520-aaf258b28f1e)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3e7f1a45-73ea-44a7-860b-4d4bf636f065)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 738d5fa4-4044-478e-8ca8-57587d891958)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1a9d669-8c86-4ea4-94d6-60b7f52d0972)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 10238112-ab5a-4583-900e-81bb329b5865)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 29adbda8-1a1e-4da3-b21c-6cd471095205)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c60cce27-3920-4678-a9d6-2065fe27fe51)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ff295262-85d0-49a7-90c9-49cf03b10c2f)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+5V") (pintype "passive") (tstamp 03d6acf7-7e35-477e-8968-5d385c0d942b)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 294e68bc-db35-479d-bec1-5f59c5a9df6f)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 35.052 33.02) (xy 27.612501 33.084261))) - (feature2 (pts (xy 35 27) (xy 27.560501 27.064261))) - (crossbar (pts (xy 28.1469 27.059196) (xy 28.1989 33.079196))) - (arrow1a (pts (xy 28.1989 33.079196) (xy 27.602771 31.9578))) - (arrow1b (pts (xy 28.1989 33.079196) (xy 28.775569 31.947669))) - (arrow2a (pts (xy 28.1469 27.059196) (xy 27.570231 28.190723))) - (arrow2b (pts (xy 28.1469 27.059196) (xy 28.743029 28.180592))) ) - (dimension 32 (width 0.15) (layer Eco1.User) - (gr_text "32,000 mm" (at 59 79.3) (layer Eco1.User) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 12c90806-abae-46b3-9a32-62439ebda693) + (at 48.26 45.72) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/1ed3d387-f75a-40aa-a4df-e265bc13a670") + (attr exclude_from_pos_files) + (fp_text reference "J19" (at 1.19 -1.92) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 39603ff1-88d3-414f-aca7-a4aab0c4eceb) ) - (feature1 (pts (xy 75 71) (xy 75 78.586421))) - (feature2 (pts (xy 43 71) (xy 43 78.586421))) - (crossbar (pts (xy 43 78) (xy 75 78))) - (arrow1a (pts (xy 75 78) (xy 73.873496 78.586421))) - (arrow1b (pts (xy 75 78) (xy 73.873496 77.413579))) - (arrow2a (pts (xy 43 78) (xy 44.126504 78.586421))) - (arrow2b (pts (xy 43 78) (xy 44.126504 77.413579))) - ) - (dimension 40 (width 0.15) (layer Eco1.User) - (gr_text "40,000 mm" (at 91.3 51 90) (layer Eco1.User) + (fp_text value "Testpoint_SEN_5V" (at 0 2.05) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp def542fd-0b15-42d9-b09e-814e69a28b62) ) - (feature1 (pts (xy 75 31) (xy 90.586421 31))) - (feature2 (pts (xy 75 71) (xy 90.586421 71))) - (crossbar (pts (xy 90 71) (xy 90 31))) - (arrow1a (pts (xy 90 31) (xy 90.586421 32.126504))) - (arrow1b (pts (xy 90 31) (xy 89.413579 32.126504))) - (arrow2a (pts (xy 90 71) (xy 90.586421 69.873496))) - (arrow2b (pts (xy 90 71) (xy 89.413579 69.873496))) - ) - (dimension 48 (width 0.15) (layer Eco1.User) - (gr_text "48,000 mm" (at 55 82.58) (layer Eco1.User) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 24101c22-40d4-436f-b0cc-6d41593883b3) ) - (feature1 (pts (xy 31 71) (xy 31 81.866421))) - (feature2 (pts (xy 79 71) (xy 79 81.866421))) - (crossbar (pts (xy 79 81.28) (xy 31 81.28))) - (arrow1a (pts (xy 31 81.28) (xy 32.126504 80.693579))) - (arrow1b (pts (xy 31 81.28) (xy 32.126504 81.866421))) - (arrow2a (pts (xy 79 81.28) (xy 77.873496 80.693579))) - (arrow2b (pts (xy 79 81.28) (xy 77.873496 81.866421))) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp dbbb5fd5-a38b-4d6f-91c6-af784f8c7069)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9a5d48ed-9942-4c16-95ba-4a9cb2633d9c)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 9 "SEN_5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 1d820703-5fa3-4716-b5ae-466dd10b62c3)) ) - (dimension 48 (width 0.15) (layer Eco1.User) - (gr_text "48,000 mm" (at 95.28 51 270) (layer Eco1.User) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 24a8111a-9557-41ed-ada8-a31cfa7b6161) + (at 49.784 56.642 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/eac9fa66-353d-4528-83ce-e76bc6e3701d") + (attr smd) + (fp_text reference "R20" (at 0 1.27) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) + (tstamp 613800bc-b1e0-4bf3-b49e-8979212b0e34) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6cc6aeb7-7196-4d43-8fc9-cd8ac3479db3) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 29c8e42b-993a-4b82-984c-66f0d857a260) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 05d51c1c-cb47-4cbe-8f40-a3e16fd7f0cd)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 31ec2282-c299-4489-ad94-7f4f85e12e1e)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2735fa37-b6e9-409d-bdd6-a6877f99b1c7)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f616841-dcdd-4cf0-a616-ffe5992a7a4b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65bdfaba-6fc1-4fc6-827c-0293d3073097)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2c92039-744c-4b31-9763-d751e2c2b619)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 30370ed4-2809-44b7-b548-c65d839de3f8)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 55579cdc-c9d5-46b0-bb34-d7c38f97321d)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b2a13f1c-5c0b-46f2-87ba-60b44dd35d45)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d9ff5f88-dd7e-4e12-ae1a-ef042cdd3fe6)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp bc568965-b447-4491-9080-c14d6cc423e4)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 40 "Net-(R19-Pad1)") (pintype "passive") (tstamp 8248f65a-06e9-4629-b631-9fa7dc4daf1b)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) ) - (feature1 (pts (xy 75 75) (xy 94.566421 75))) - (feature2 (pts (xy 75 27) (xy 94.566421 27))) - (crossbar (pts (xy 93.98 27) (xy 93.98 75))) - (arrow1a (pts (xy 93.98 75) (xy 93.393579 73.873496))) - (arrow1b (pts (xy 93.98 75) (xy 94.566421 73.873496))) - (arrow2a (pts (xy 93.98 27) (xy 93.393579 28.126504))) - (arrow2b (pts (xy 93.98 27) (xy 94.566421 28.126504))) ) - (gr_line (start 50.292 52.324) (end 50.292 52.832) (layer B.SilkS) (width 0.15)) - (gr_line (start 48.768 52.324) (end 50.292 52.324) (layer B.SilkS) (width 0.15)) - (gr_line (start 48.768 52.832) (end 48.768 52.324) (layer B.SilkS) (width 0.15)) - (gr_line (start 47.752 52.324) (end 47.752 52.832) (layer B.SilkS) (width 0.15)) - (gr_line (start 46.228 52.324) (end 47.752 52.324) (layer B.SilkS) (width 0.15)) - (gr_line (start 46.228 52.832) (end 46.228 52.324) (layer B.SilkS) (width 0.15)) - (gr_text RESET (at 73.152 60.198) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 262926f1-2bbc-4690-897b-627e20b7c3d3) + (at 59.944 48.26 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/874cfa3e-3ded-4339-a5d3-4843ce4aafd1") + (attr smd) + (fp_text reference "R11" (at -2.794 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 640a774a-55e1-4112-ba23-31a9de5948a8) + ) + (fp_text value "51Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e2ac7a15-89db-480c-a6ed-48d5813c78be) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 5a684b2c-c45e-4007-88dd-28a4fc46f931) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2f684816-87d1-4120-9934-72adb87bfc8e)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a6e34f51-38ed-4d80-ad78-76535253740b)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 190bf023-ee6f-40f7-a87c-46d025e7079e)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bbd4733d-7ec0-4f17-beb6-0be64574337a)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cbc69a07-a6af-4364-b65a-db9e59118875)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2c6fd53-3d43-4d49-969f-81319987a8e5)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 019a7d8b-83b0-4b66-95b8-d0f78c6778ab)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 58dbeb9b-b7a7-45db-bba0-d89b36b2361a)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6dea03d6-5fe9-4260-8787-7a46b47181ec)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f2b4d7a1-d791-4411-9fda-f35e98a77f67)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 22 "Net-(D12-Pad6)") (pintype "passive") (tstamp 89bf40f6-42ef-46b1-96b1-82e08a9d6eac)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 24 "GPIO1") (pintype "passive") (tstamp 459b40f4-b646-4567-bc53-3db525b4c8ba)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text FLASH (at 68.58 30.734) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "LED_SMD:LED_RGB_5050-6" (layer "F.Cu") + (tedit 59155824) (tstamp 34e9c6e6-69c7-4471-af6d-baa9f6b8f60d) + (at 106.2482 27.6352) + (descr "http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf") + (tags "RGB LED 5050-6") + (property "LCSC" "-") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/6801e525-3830-4664-bb60-00a8c7a1c082") + (attr smd) + (fp_text reference "D2" (at 0 -3.5 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4a6e6226-9506-4f47-8c82-b833b761c295) + ) + (fp_text value "LED_RGB" (at 0 3.3) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6df4e652-50e0-47b4-b9d0-9b59e6ba7100) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.6 0.6) (thickness 0.06))) + (tstamp 4234b237-2169-4201-9ad6-1afa33192565) + ) + (fp_line (start 2.5 2.7) (end -2.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp 0992bba4-3168-420a-a13d-b86bf7cfc8a2)) + (fp_line (start -3.6 -2.7) (end 2.5 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 590be248-7394-4b9d-9199-2dda6defecce)) + (fp_line (start -3.6 -1.6) (end -3.6 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 8dd3b1c6-b1af-461a-ae3c-d6c8e597019e)) + (fp_line (start 3.65 -2.75) (end -3.65 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 108bfef8-2044-45c7-b677-fadf23de7076)) + (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 25d7f39e-7a7f-47a8-9d1b-2f65e16f5cdd)) + (fp_line (start -3.65 -2.75) (end -3.65 2.75) (layer "F.CrtYd") (width 0.05) (tstamp aba6ebfb-19d6-4144-b27e-0626a3d52ba1)) + (fp_line (start 3.65 2.75) (end 3.65 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp cab3030f-d5d7-4c61-917c-ad62463cd4c5)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 50a8c8ff-9ab2-460a-8634-404ca3c426ed)) + (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 7ee6f960-7fff-476d-8a54-0be24bf732cf)) + (fp_line (start -2.5 -1.9) (end -1.9 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8a5a90af-d89a-4bb3-be9b-4aaada876205)) + (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 94815b20-f229-44df-ac16-fd6985ecc51c)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp f7c18262-187d-428b-8b37-bc77c22d313c)) + (fp_circle (center 0 0) (end 0 -1.9) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7d772465-9fc3-456b-a9ae-d16925ad4c34)) + (pad "1" smd rect (at -2.4 -1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "RK") (pintype "passive") (tstamp 49d3d782-80ed-4fd1-9b21-904d1b3c0bc5)) + (pad "2" smd rect (at -2.4 0 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "GK") (pintype "passive") (tstamp a638aeeb-51a6-4357-9b10-eb281deefdf7)) + (pad "3" smd rect (at -2.4 1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "BK") (pintype "passive") (tstamp e7b8d5d7-239f-45cd-be3a-7c62ee612190)) + (pad "4" smd rect (at 2.4 1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 51 "Net-(D2-Pad4)") (pinfunction "BA") (pintype "passive") (tstamp ddb173f2-9904-4b07-946c-d77dd42fe11b)) + (pad "5" smd rect (at 2.4 0 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 52 "Net-(D2-Pad5)") (pinfunction "GA") (pintype "passive") (tstamp c1b34c98-eb01-4ce6-82b5-2c8d99d6bc0f)) + (pad "6" smd rect (at 2.4 -1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 74 "Net-(D2-Pad6)") (pinfunction "RA") (pintype "passive") (tstamp af20000e-10fe-493b-91f1-22423612bfa6)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_RGB_5050-6.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GND (at 66.294 66.548) (layer B.SilkS) (tstamp 60A84C83) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm" (layer "F.Cu") + (tedit 5D9F792A) (tstamp 3804d4fc-22dd-47d9-a6ef-62f07ee19d75) + (at 50.8762 37.7698 -90) + (descr "QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py") + (tags "QFN NoLead") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/102280cb-52f1-4d00-a983-b7d0fff143e3") + (attr smd) + (fp_text reference "U5" (at 0 -3.32 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 08a5762e-f776-4cdb-8287-8f6d29e53442) + ) + (fp_text value "STM32G031G8Ux" (at 0 3.32 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 09790c70-aea5-4ff5-a1b1-fa05e5b66927) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b397dddb-991f-47c3-846f-f9c78a69e5c2) + ) + (fp_line (start 1.885 -2.11) (end 2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 075cd338-b84d-46ee-b5e9-59c62e2d2023)) + (fp_line (start -1.885 2.11) (end -2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 411fc1c9-2a29-4fe5-912f-5d39b8bff8b0)) + (fp_line (start 2.11 -2.11) (end 2.11 -1.885) (layer "F.SilkS") (width 0.12) (tstamp 4b0b7f4c-349c-4643-8b11-7fe0bff25b71)) + (fp_line (start -1.885 -2.11) (end -2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 8631244c-f008-4e98-8634-c3a6a34443a2)) + (fp_line (start 1.885 2.11) (end 2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 987ed7bd-1f87-402c-8cdf-7b03e2ae697b)) + (fp_line (start 2.11 2.11) (end 2.11 1.885) (layer "F.SilkS") (width 0.12) (tstamp cb36ca1b-8fb1-4571-a099-737b64938712)) + (fp_line (start -2.11 2.11) (end -2.11 1.885) (layer "F.SilkS") (width 0.12) (tstamp fd3615ca-37c3-4e34-976e-9b6117c7197e)) + (fp_line (start 2.62 -2.62) (end -2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp 2046ebf4-090d-4211-ac59-177467b9a7bf)) + (fp_line (start -2.62 2.62) (end 2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp 896f0dea-8f79-470f-b866-dc32c8e3fd61)) + (fp_line (start -2.62 -2.62) (end -2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp c0a066a7-ce20-40f9-aa31-17554fd3418e)) + (fp_line (start 2.62 2.62) (end 2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp d5f37e18-ef5f-48ee-969a-d25eb232df8f)) + (fp_line (start 2 2) (end -2 2) (layer "F.Fab") (width 0.1) (tstamp 0d2b75e1-5ce3-4e16-911a-6f7d4dbddaa0)) + (fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp 4a6df616-b9b5-40f9-8dbf-d378f28a1a5b)) + (fp_line (start -1 -2) (end 2 -2) (layer "F.Fab") (width 0.1) (tstamp 807403ec-2a15-4970-9fd1-f99c6d3045cf)) + (fp_line (start 2 -2) (end 2 2) (layer "F.Fab") (width 0.1) (tstamp 91053e98-2f74-49f8-b1dd-c820f43ba2da)) + (fp_line (start -2 2) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp 94361129-842c-4cf6-a724-4ce64da59f12)) + (pad "1" smd custom (at -1.9975 -1.5 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 92 "unconnected-(U5-Pad1)") (pinfunction "PC14") (pintype "bidirectional+no_connect") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.05364) + (xy 0.3325 0.08) + (xy -0.3325 0.08) + (xy -0.3325 -0.08) + (xy 0.19886 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 0f18074f-daf0-41ba-8621-5b8843d879e4)) + (pad "2" smd roundrect (at -1.9375 -1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 93 "unconnected-(U5-Pad2)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp dc6cad40-f99b-45e2-87d9-02d837337a89)) + (pad "3" smd roundrect (at -1.9375 -0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 8a745682-61ba-4899-a560-4298f623c8e2)) + (pad "4" smd roundrect (at -1.9375 0 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp a7fa21ce-0383-4680-ad11-8ff2650cc9a8)) + (pad "5" smd roundrect (at -1.9375 0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 94 "/Frontseat_stm32g031g/~{RST}") (pinfunction "NRST") (pintype "input") (tstamp 6c3e3865-ceed-4ffc-9380-3db2194cf1af)) + (pad "6" smd roundrect (at -1.9375 1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 95 "/Frontseat_stm32g031g/LED_CLOCK") (pinfunction "PA0") (pintype "bidirectional") (tstamp 341d2d34-215c-4b1c-8da5-bc831bb4271d)) + (pad "7" smd custom (at -1.9975 1.5 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 96 "/Frontseat_stm32g031g/PWM_2") (pinfunction "PA1") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 -0.05364) + (xy 0.19886 0.08) + (xy -0.3325 0.08) + (xy -0.3325 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 9897f40b-5d8a-40b5-88b6-1703f9635bee)) + (pad "8" smd custom (at -1.5 1.9975 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 97 "/Frontseat_stm32g031g/PWM_3") (pinfunction "PA2") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.19886) + (xy 0.05364 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp 2b7167e9-cb86-4a44-be3b-b44451417665)) + (pad "9" smd roundrect (at -1 1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 98 "/Frontseat_stm32g031g/PWM_4") (pinfunction "PA3") (pintype "bidirectional") (tstamp 08b7b8bb-cde5-4c1a-bdee-f98a9eb92cd9)) + (pad "10" smd roundrect (at -0.5 1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 99 "/Frontseat_stm32g031g/LED_DATA") (pinfunction "PA4") (pintype "bidirectional") (tstamp 1e3fc00a-261d-4f0e-ab30-ec229f26fcb2)) + (pad "11" smd roundrect (at 0 1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 100 "/Frontseat_stm32g031g/PWM_1") (pinfunction "PA5") (pintype "bidirectional") (tstamp 9523d65a-9574-4cd9-9408-73024dbcb2a1)) + (pad "12" smd roundrect (at 0.5 1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 101 "/Frontseat_stm32g031g/ADC_6") (pinfunction "PA6") (pintype "bidirectional") (tstamp e192f2e4-8c0d-4379-b18d-508b16485113)) + (pad "13" smd roundrect (at 1 1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 102 "/Frontseat_stm32g031g/ADC_7") (pinfunction "PA7") (pintype "bidirectional") (tstamp a7b3e0bc-2616-44c1-af5a-b5f4f3ce87f4)) + (pad "14" smd custom (at 1.5 1.9975 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 91 "SIG_B") (pinfunction "PB0") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 -0.19886) + (xy 0.08 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.3325) + (xy -0.05364 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp 20cf17bd-6f88-4923-ad24-d593fbb8eabc)) + (pad "15" smd custom (at 1.9975 1.5 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 90 "SIG_G") (pinfunction "PB1") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.08) + (xy -0.19886 0.08) + (xy -0.3325 -0.05364) + (xy -0.3325 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp bf053c69-d457-4d86-bf5d-11bdfb0ba2bd)) + (pad "16" smd roundrect (at 1.9375 1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 103 "unconnected-(U5-Pad16)") (pinfunction "PA8") (pintype "bidirectional+no_connect") (tstamp 42d0b309-625c-4959-9451-83fecbf0d149)) + (pad "17" smd roundrect (at 1.9375 0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 89 "SIG_R") (pinfunction "PC6") (pintype "bidirectional") (tstamp e9ef1f01-ed7e-473b-aae8-b2026da1b347)) + (pad "18" smd roundrect (at 1.9375 0 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 104 "unconnected-(U5-Pad18)") (pinfunction "PA11") (pintype "bidirectional+no_connect") (tstamp 49ba95a4-7a43-4805-923d-adc1f80dfea6)) + (pad "19" smd roundrect (at 1.9375 -0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 105 "unconnected-(U5-Pad19)") (pinfunction "PA12") (pintype "bidirectional+no_connect") (tstamp 37d95fa6-5e26-4d51-8e89-24b35b460dea)) + (pad "20" smd roundrect (at 1.9375 -1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 80 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 18598cb6-8b64-46f9-b3f5-99b9b5780c0b)) + (pad "21" smd custom (at 1.9975 -1.5 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 81 "SWCLK") (pinfunction "PA14") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.08) + (xy -0.3325 0.08) + (xy -0.3325 0.05364) + (xy -0.19886 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 736ec613-fccf-402b-b6a8-6524c203d5bc)) + (pad "22" smd custom (at 1.5 -1.9975 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 106 "/Frontseat_stm32g031g/~{INT}") (pinfunction "PA15") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.19886) + (xy -0.05364 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp 883ca27f-691c-4a2a-82bc-0c20c06b39f4)) + (pad "23" smd roundrect (at 1 -1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 107 "/Frontseat_stm32g031g/SCLK") (pinfunction "PB3") (pintype "bidirectional") (tstamp 0fe4880b-8ca8-4f65-8ab3-3b5ae49ebef6)) + (pad "24" smd roundrect (at 0.5 -1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 108 "/Frontseat_stm32g031g/MISO") (pinfunction "PB4") (pintype "bidirectional") (tstamp c8369c5b-a8f7-4c61-80bd-c4fb087ae4d3)) + (pad "25" smd roundrect (at 0 -1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 109 "/Frontseat_stm32g031g/MOSI") (pinfunction "PB5") (pintype "bidirectional") (tstamp f80b76c1-88e1-4ea4-a56b-ea915f24ddff)) + (pad "26" smd roundrect (at -0.5 -1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 110 "/Frontseat_stm32g031g/INIT_{IN}") (pinfunction "PB6") (pintype "bidirectional") (tstamp 7aaa7c24-23f1-4629-9465-9abf26c93676)) + (pad "27" smd roundrect (at -1 -1.9375 270) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 111 "/Frontseat_stm32g031g/INIT_{OUT}") (pinfunction "PB7") (pintype "bidirectional") (tstamp eb4a1df6-4d53-4dc8-a59d-511e9989c635)) + (pad "28" smd custom (at -1.5 -1.9975 270) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 112 "unconnected-(U5-Pad28)") (pinfunction "PB8") (pintype "bidirectional+no_connect") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.3325) + (xy 0.05364 0.3325) + (xy -0.08 0.19886) + (xy -0.08 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp f17fe752-98bd-407b-b18d-00aa19c0caf3)) + (model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-28_4x4mm_P0.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GND (at 55.88 66.548) (layer B.SilkS) (tstamp 60A84C7E) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 3fc73750-6ffc-44e4-8333-9b099054e5c9) + (at 43.688 57.404 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23179") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/c29c6096-874c-4fe7-ba65-6a6152e78ded") + (attr smd) + (fp_text reference "R13" (at 0.762 -2.286 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 306361bf-ed4d-4757-9d76-3b4bce15594d) + ) + (fp_text value "470Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp befcc24e-4352-42d4-a0e4-c714ab96a759) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 43a28dfe-2531-4dea-a88f-b90e75a24f6f) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 61932ffe-2382-48dc-9c62-35d3c64ead53)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b66b7d06-3390-47cb-b6ae-694fa3cd11cf)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 008cfa38-fb82-4794-b125-fc7b198fb3ac)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7657d973-dba4-48d4-9c33-a7464cbcff57)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a5eb89a-38aa-48bf-a267-619dea20bef2)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp feb0b9d1-017d-4603-93b6-c1be08edb20d)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2535f7c8-3e39-4dfd-95f8-c0fd7f3b289b)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 25481863-1b16-4272-91a5-d4392bb6034a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp dd3014d3-5d9f-433b-9a9d-4033f47b44ac)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fb2ebb63-612d-4147-bb47-dd30fab32695)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "SEN_12V") (pintype "passive") (tstamp ac0c1dc1-ec59-45a6-9d44-91c0901ec136)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "+12V") (pintype "passive") (tstamp 561f00c5-cb31-4bca-948a-e06787511d6b)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GPIO5 (at 48.514 40.64 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 43eb5c1c-418b-4dbf-a8ab-b94e176afc3e) + (at 53.34 48.26) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/916b39a7-f0d0-4eef-ab1b-17c22bef3395") + (attr exclude_from_pos_files) + (fp_text reference "J17" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a4d0ffe8-1d6d-41ce-a8b8-3817874bb9cb) + ) + (fp_text value "Testpoint_SEN_12V" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a975bcc0-f08d-40f3-ab5d-61747ff18fb6) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fdf88c10-ea47-4a81-930d-de99fd0b5e66) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 29fe3007-e763-4231-853a-3bdb6f0f3242)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 255815d5-19d7-48ad-83b1-1656650e52dc)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 21 "SEN_12V") (pinfunction "Pin_1") (pintype "passive") (tstamp def1f11a-d569-4277-8dee-da186d55a4e5)) ) - (gr_text GPIO4 (at 50.546 40.64 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp 497714c5-31b3-4618-bc4c-47376e558f0d) + (at 43.942 53.086 -90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/3e7cdd91-118f-419e-8ce4-8e64c075f1f7") + (attr smd) + (fp_text reference "D4" (at -2.286 0 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9a801028-3430-4c10-917d-80ad27cc8826) + ) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0d690e84-3297-48c1-a249-6c67e18d2c77) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 05ae7dd0-d398-4bba-ac7a-298afd4e53c2) + ) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 35efa032-f198-4e6d-ad6b-d4de832ccf3a)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3de2f36b-7ef4-4b47-8605-36de3caacde6)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 7256ab14-19f0-404e-bf99-89f6d98e2d58)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 078ffe1c-898d-4a9e-ba05-8d15c58755a0)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8f9c7864-bc12-46ac-8eaa-42d513446496)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e56fe90a-0c7b-46f1-90c3-7bbfd2f216e5)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e5bd310e-1298-43b6-a167-12a6e4c038be)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0a264676-9286-4aca-a733-8b0528bb5a0e)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6290a6c8-88ad-4283-bbe9-0d553667f816)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp ac2cac06-c4f9-426b-82b1-3dbe3ef3ff4c)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b6f27e8e-9a78-4f93-817a-9710039e0d83)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e3e5a95e-b5fe-4b4d-9a81-de7cfbf49645)) + (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 93887be2-1a9d-403f-bc79-f2d4e89cc58b)) + (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "Net-(D4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp eb1ae62f-95d2-4245-bb1c-7f0b1a40372f)) + (model "${KIPRJMOD}/packages3D/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GPIO5 (at 48.26 34.036 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 63b093d0-2c10-464d-8cc6-42327fb06b54) + (at 118.7182 25.6152) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/2265d06c-5de3-42c2-8f12-2e8783f51da0") + (attr smd) + (fp_text reference "R12" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 385d749f-dfd4-4e29-9c4f-ab169f3903d1) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3e2a6b8f-c385-47cd-90d8-a6a8d00d4d94) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp a842ad43-ebe7-4958-9d72-2d5d5a5c6e33) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 34a75b0e-cb86-4aea-9d67-8e55b526742e)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4b7756c8-9c67-4360-bf22-abb55162031f)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4ba5c450-221f-4018-9e86-c2c79cf852e6)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a15b6fb-c74d-40de-9fbc-95da38e90e02)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d88dc960-331c-4d27-93ec-42c019f15f81)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dfc33b3e-f3b5-4712-9aae-8ede215d2f73)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a47e0851-2c3b-4aa6-8f22-ba9ac34481f5)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cb0407ca-2833-4e96-bbb0-1aefdec5d61f)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f7b48c51-2e3f-4425-b1c0-eca1de055507)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fc9466dc-dae8-4546-a468-6036792641c1)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 52 "Net-(D2-Pad5)") (pintype "passive") (tstamp 3a7cf863-719e-4f84-a0b4-e25a7c2e3634)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 90 "SIG_G") (pintype "passive") (tstamp 8f4590cc-c8f9-4bd3-99ca-216db6439aec)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GPIO4 (at 50.8 34.036 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 732e0e91-63e3-4ac7-81e2-16953214d21a) + (at 118.7182 28.1252) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/9d74152e-7191-42ca-a6ac-12dbe4241544") + (attr smd) + (fp_text reference "R10" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3969dfa6-8a96-4477-a82b-69e59543d752) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 893e4f6a-2ed1-4ff0-abce-e78a2408120b) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 2ff5332d-bb1d-4b95-af84-5dcc4b03e954) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 058afbf0-d589-4c95-bef5-349c4ee1393f)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 14ef26ef-1907-4b25-9dc3-3f6224d5c40b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3d7668b7-bcc0-4fca-a67f-40f4480b4421)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7071792b-17dd-4ab3-b5a9-6d2c7e898465)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 75a8fbb4-3c2d-4888-ace2-66e74ebf344d)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp facd4848-0c09-4d23-8bd0-4b818df3981d)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 596a7fc1-5333-4369-a8d0-f24303c488c8)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6ffc8f67-ed43-4232-99f3-63aaf17389d9)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7add2f49-2fd7-489e-8f6a-131a7d0c913d)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 87cd9493-6d99-487d-b165-e5615a6aecc9)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 74 "Net-(D2-Pad6)") (pintype "passive") (tstamp 9385d34b-d761-433b-b741-4b835c2aa005)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 89 "SIG_R") (pintype "passive") (tstamp 0d3eed82-00f5-4086-90c6-b9da0bc39baf)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GND (at 42.926 48.26 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 7a7918e6-e1a2-4386-92eb-fa2bfcf2ba88) + (at 104.0982 32.9352) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/761406f4-13fa-4c19-8252-e4370dda9ba0") + (attr exclude_from_pos_files) + (fp_text reference "J20" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a4631c1a-753d-4369-9f84-d0104783484c) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 238d4208-b9d9-4249-8e0e-4e90159ea086) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e93b0f37-f79a-44a8-bdd7-985575c70fba) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 23d3581e-473c-43e4-bd01-56ec3add2858)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 71bce844-9d8c-4348-9e2e-945125840764)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 81 "SWCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp 948f8818-d3c6-4d79-a7cb-6293f0bb1493)) ) - (gr_text CS (at 43.18 45.72) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 7dd7e78d-ce90-437d-9d38-3ce8accad582) + (at 46.05 40.85) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/5efc1587-fe2e-45ca-a2ca-2ce4f234ad9f") + (attr smd) + (fp_text reference "C11" (at 0 -1.5 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bbfc34c0-c3e1-4157-91fb-caea2b1323da) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a2649ec8-ce7f-4717-96e0-b64b05ce4d94) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 52258b4a-db15-4718-a950-6e12cc3e0ff6) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp a7983968-0328-4ba6-9f77-1ce94634d47d)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp bc324ac3-54c5-4612-a08a-9c37bbde6f3b)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0609250a-ae6a-466a-a6ac-e9d892b46fd9)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65289905-399b-41ae-b125-e2df05fd622b)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 72d17b7c-b95e-4697-b55c-c91f44b15045)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f10dc6c5-ceba-4131-8767-a9a301a6ff5f)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 33b39fde-0bc7-42d8-a73e-97f12468ce00)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5390e073-d229-4f53-a27b-51d7a3b0f90c)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6842b5cb-e570-4a9e-ba42-9bfd4c86407d)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d14cd360-5f62-4565-b1d6-99a4d2b81b9a)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 37 "~{BUSRST}") (pintype "passive") (tstamp 9bb74347-e949-41ca-92fa-883b9e984b4f)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp fa92bb10-a3bd-43cc-9036-acf883c9dd0b)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text MOSI (at 43.688 43.18) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 9a17d8a7-b0f6-4677-8ef9-18fbdea075e8) + (at 45.3 46.25 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/6439483e-4696-4f78-ab34-0abb62a3103c") + (attr smd) + (fp_text reference "C10" (at 2.1 -0.75 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5f20e102-4f21-4125-9405-7db531931c4c) + ) + (fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a235c4e9-3147-40fa-b726-785c10026a7f) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 33d341e0-ec44-45b9-a9fa-c36a571f69d2) + ) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 76e02afb-39c8-425b-80b1-9e50f07efcf5)) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp ad2235f1-5b4b-4457-96ab-e656df9efb66)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 46c2ae48-b580-4f92-9d1e-ffda4ae4c61c)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a92ef14d-e8f4-4a9b-bc4d-45de81182207)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f1de0725-3e80-47a0-9443-0f510719d2c2)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fcc4f79b-3a19-453d-8911-3f25343df3d2)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5c59c4bc-d629-4787-8c5f-935c43612459)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 67eee229-0483-4eaf-adff-757675956609)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9bd302b8-f8d2-41e5-8f30-6036751d70b6)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a3b6353a-87e8-4f0b-a6c2-21dc169d25b7)) + (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 38 "~{INT}") (pintype "passive") (tstamp 2cf49d57-3882-456e-85fc-94fb6916718f)) + (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp b5c2674a-1e8f-43ba-b792-0184c20e4109)) + (model "${KIPRJMOD}/packages3D/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text CLK (at 43.434 40.64) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 9a7cc262-189b-43b8-ad39-231e3399d93b) + (at 43.688 55.626) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/61dc5206-9bd4-4b14-a458-235cedf18af0") + (attr smd) + (fp_text reference "R14" (at -1.27 -2.286 270) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 360e3c8b-990a-46ed-8484-189c40ab7c0b) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bf983275-969f-4e08-895e-fc014db285cc) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp c8c1125c-7538-4dae-ac86-315e091889e8) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4a26daec-a2ce-47c7-8d70-c9a58f511e82)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f6bc3a09-7cc9-45f9-b2ef-40a3e0b3558c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7cbb4be9-16df-4253-84d4-4f89fcea5e82)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a2dfb25-ee6b-4246-a968-85d75e9a5afe)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e41633d1-e1a8-45ac-bd82-173a521f3ab8)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec695be8-67eb-4623-860a-cde63611882a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8c4d14a9-f4c3-45ba-8565-1d236c8fb002)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9296df4f-f403-418c-9868-2dca8c6edbe0)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ac633f93-8428-4902-9a09-46291d2f8f9b)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e094d1a5-af4d-419d-a71c-2187734dde75)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "Net-(D4-Pad2)") (pintype "passive") (tstamp 3044c5c6-d5db-4e0c-a9b3-c0ef0301bfe8)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "SEN_12V") (pintype "passive") (tstamp d37d1b7a-f3cb-4b50-8581-4add1572bc42)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text VDD (at 43.434 38.1) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 9af07d27-ae22-4956-8a45-7042957d4aac) + (at 46.05 42.65 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/3d1501ef-6383-4bd6-ba25-28b7899a6804") + (attr smd) + (fp_text reference "R8" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5cf73acf-a0f8-4cc6-9ffd-35c4f6636e1d) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 73e4f084-fc9c-4665-b832-4e34460be880) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp b3a10558-4016-4d61-884a-5bf4dcf80e33) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6ccd7d63-d573-4680-a5cf-76546efcd574)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp a00e7978-9b1b-4433-a588-4d9561321f55)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1d26baf1-b056-47e6-87a8-bed0e1121652)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af236a30-2b13-4fbb-ae5a-fc4239208619)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c2039b6a-5cfc-44a8-8084-76863209ae18)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d5debac9-885a-416c-b0b2-0572794f4a69)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 67b63286-7048-469d-9941-12febb90b8ae)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e205cf2c-3e8f-49f1-97ba-d4535774ccee)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e9e2d9b8-04f5-4950-a7ab-63703a63325e)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp eb56e33d-1c17-4eb9-bd3e-a6a59e4a1543)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "+3V3") (pintype "passive") (tstamp 32bcfa2e-1ae4-4929-a015-9a5f60facbbb)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 37 "~{BUSRST}") (pintype "passive") (tstamp b4b32fee-15c0-48e5-af6b-56d816d82c59)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text GND (at 42.926 61.214 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp a48c0883-6485-4e6c-8c0a-d52f47f67db9) + (at 52.324 59.436 -90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/744ebebf-56f4-477b-86a6-457c3f5a23ee") + (attr smd) + (fp_text reference "D5" (at -2.286 -0.254 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ed639aa9-d26f-4094-8381-f6e4b83f1285) + ) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bf0c8ddf-1c4a-4728-b4c1-97be58859cea) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp d2a32201-7d40-4d74-8d6f-b1ca8dbe0ba1) + ) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 41b3756d-5de9-4d0b-bb04-9cb792dc6c75)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp aa0af7dc-59a9-4459-b534-6cf4b9eaa9bf)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e11bc651-ade9-4dec-a8a8-eed3b8c26fd8)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3380b298-2638-45f4-afbc-94ee26b81cdb)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65740b39-78c1-4fbb-9897-e3315dde63aa)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b84a11a4-751a-4f9f-a68f-2d4f09e93670)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp beab8577-4df9-4373-beed-ce9aa7eb2a15)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1ecde772-1205-4ee7-b838-c4990ae744ca)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6333590f-fc8e-48a7-b4ad-01cd21be5d2d)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 85b5ba42-89c7-447b-bd27-30e034c98d0a)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp dfb4b495-ea1b-4bb6-b13c-76f56841332e)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e5968355-9684-41c0-a553-9f298bd6d5b6)) + (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "SEN_5V") (pinfunction "K") (pintype "passive") (tstamp fd936a08-b3d0-4018-affe-7ca47645cb9a)) + (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "+5V") (pinfunction "A") (pintype "passive") (tstamp 1f8a46fa-ef3a-43ad-9ffa-b1c1ef281032)) + (model "${KIPRJMOD}/packages3D/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text RXD (at 43.434 58.42) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp a9651ab4-2fe1-4dee-bb35-3f5d72e59552) + (at 49.847 58.42) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/fe272caa-7fb3-4892-9f5f-7977716926c8") + (attr smd) + (fp_text reference "R19" (at 0 1.524) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c61ecac9-575e-4841-9a7d-5fcbe872f5ef) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9aab3c97-f033-42ec-be71-b8abeffd1634) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 35515ab1-5f9b-4a91-92c4-74d323f4f6ba) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5945804d-aeeb-40aa-a80e-ffa8fb131985)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e4f5b658-c1a2-400a-a944-5c40d538500a)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 073a48f3-fdc0-451c-8638-6490ed52242e)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 11e2cf41-8631-46a1-b4ed-f8dd14b2435a)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6683b0d3-6db8-4f3e-9283-e8b146c40e0c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d439cbc5-65c5-4fc9-899d-a70ad1f66edf)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 17b886a1-7110-48b1-85b3-710712c98767)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1ecfd289-37ae-4f43-89bf-c61eca226794)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 845dc9a0-54eb-4f9c-b0f0-e4976826fb53)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b2aa3a19-3bf7-485a-9b1d-97f28f0ba552)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 40 "Net-(R19-Pad1)") (pintype "passive") (tstamp 681b60cd-491b-4e1a-8e3a-43bbc875cbb9)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "SEN_5V") (pintype "passive") (tstamp c2557647-3c8a-4b59-9edc-a1fb8bb957f2)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text TXD (at 43.434 55.88) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp b08d18b4-979e-41d6-83ca-74ad30fbbdc5) + (at 108.1282 32.1652) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/21e76397-b06e-4e87-be57-622b34e6d8de") + (attr smd) + (fp_text reference "R23" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3e925d37-c8fa-41f4-b27d-52d4e6565328) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 445c11e9-c9dc-4651-9eb6-6a545bcf6e88) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp dcd9727a-468d-4d55-8e4e-b9cf1479d408) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0520a8e9-15c0-4bc5-8d48-af5a04117ca5)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 944c0aae-7b9e-4090-b72e-2fe98caa6b22)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5fa7dfa7-9b8e-4b13-a317-a4106ac74df6)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8508d417-7a7d-4da1-ad78-4bf2493b275a)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bef10a8e-f98e-4157-a1f0-6ba90a0072c0)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ef323f3c-84ab-4a51-ab00-39e16bcaba1b)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 92ffeba2-189b-4a71-b092-60014cbfdfea)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp abd00de6-1b64-4ed4-bda3-ef6f9cf90610)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f58f2964-5ad9-49a6-94e6-aa503d6fc55c)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fef55ab8-0df3-4265-95ec-2accb9b61cdc)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 51 "Net-(D2-Pad4)") (pintype "passive") (tstamp a9f30a88-b42b-4816-93e0-8c1e28e05c16)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 91 "SIG_B") (pintype "passive") (tstamp 356c28e2-472d-409d-8be4-6606abe4bb18)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text VDD (at 43.434 53.34) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp b2aef13e-b4e3-4998-8f20-c496acd53397) + (at 58.166 48.26 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/68aaa12a-561c-48eb-abb6-e47c91b28e7a") + (attr smd) + (fp_text reference "R21" (at -2.794 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3ef9e7b4-3b1e-4bf2-bd94-505b7de750dd) + ) + (fp_text value "51Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a0715d39-b31d-4eb8-95e3-2d6e712028ea) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 015acd4f-6494-4893-827c-96731e1acc9b) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 655fbf73-c22d-4383-a886-b515a94e6ca9)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp be6231c9-5ab6-4a0a-9006-e738474d65af)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f6b3ffb-8639-4e62-a061-f984d4a2749f)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce450f61-9179-40c1-8279-62b6c9e43caf)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e7f778a8-b832-4fd7-a90c-df47494abd44)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f82c0d2e-2382-4830-a592-e7471a1217f3)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 47e706f2-d58d-465d-bf95-b6515954819b)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 69a85993-2ec3-4462-b72f-a3ca3de5c057)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b3d1ac9c-8a30-4fe7-8811-9aa7e440a3a7)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d063864b-453d-469b-a277-2ac60da0e97c)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "Net-(D12-Pad5)") (pintype "passive") (tstamp ba357225-5a77-4e68-a89b-7179e5ef4559)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 32 "GPIO2") (pintype "passive") (tstamp 41b583e2-dae4-45e1-89db-67964d056649)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text UART (at 40.64 64.516 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp b87c04ac-bb39-4660-8abc-17b244a15c77) + (at 112.4482 32.6752) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g") + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/a0b55039-1d75-4207-a887-4b9b89cd6a4f") + (attr exclude_from_pos_files) + (fp_text reference "J18" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 447fd898-9a71-4086-8b91-b487412b68b9) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3c4778e1-9ee6-410d-9da9-c820cc1afc21) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 488d96b8-7c8c-4bb9-9d04-3193f2e449b8) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 5dde85ef-0127-4b6e-80e5-7ae917f76346)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fbf46b46-9707-4080-8c64-6d03b0d61ed7)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 80 "SWDIO") (pinfunction "Pin_1") (pintype "passive") (tstamp 57167905-b7a8-4613-8ee0-c41993d59782)) ) - (gr_text SPI (at 40.64 34.798 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (layer "F.Cu") + (tedit 5BA58892) (tstamp c86d86b1-13ec-4ae8-b257-2ae6625f9416) + (at 106.9806 44.1024) + (descr "UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf)") + (tags "UFQFPN 0.5") + (property "LCSC" "C329283") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/95a378f0-32a4-4207-99cd-5728b8025aaf") + (attr smd) + (fp_text reference "U4" (at 0 -2.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0b8e0559-a6de-4f59-8a5f-cdb1b7b7c00e) + ) + (fp_text value "STM32L011F4Ux" (at 0 2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fe1ca1fa-9956-4796-9165-decbb3da31a4) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.7 0.7) (thickness 0.1))) + (tstamp b3c918e5-11d2-4a04-a869-85cc2e50dd0b) + ) + (fp_line (start 1.62 1.62) (end 1.32 1.62) (layer "F.SilkS") (width 0.12) (tstamp 14a30b6e-09a9-47fd-9333-5987a4afa53c)) + (fp_line (start -1.62 -1.62) (end -1.32 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 25e3e8a8-0bd0-4717-9012-e364927dc0eb)) + (fp_line (start -1.62 1.62) (end -1.62 1.32) (layer "F.SilkS") (width 0.12) (tstamp 378b276b-ac88-424c-955d-ffc24ec7501c)) + (fp_line (start 1.62 -1.62) (end 1.62 -1.32) (layer "F.SilkS") (width 0.12) (tstamp b9732c26-539d-4408-a6a0-ecf139dfb81d)) + (fp_line (start 1.62 -1.62) (end 1.32 -1.62) (layer "F.SilkS") (width 0.12) (tstamp c3753dac-3d8e-4eab-8fc8-8582f264f39f)) + (fp_line (start -1.62 1.62) (end -1.32 1.62) (layer "F.SilkS") (width 0.12) (tstamp dcb83e42-82bd-44f0-a60e-9b4e96e84579)) + (fp_line (start 1.62 1.62) (end 1.62 1.32) (layer "F.SilkS") (width 0.12) (tstamp fa05ba1d-c2d7-466d-9e2d-e54ab6baa192)) + (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 03470c8e-e384-4f91-a310-66dbb568deb8)) + (fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a88c832a-3cc7-4ab9-986d-0d361610e631)) + (fp_line (start -1.75 1.75) (end -1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b38481a3-6b26-4a79-8e84-1133fb81221b)) + (fp_line (start 1.75 -1.75) (end 1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp c9151759-2f09-4826-9ced-6160745aaa75)) + (fp_line (start -1.5 -0.5) (end -0.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 2c1d62a7-c9c1-4d1f-bd03-3185405c53d4)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 67c3fbc6-b237-4bf5-ba13-0d925500f127)) + (fp_line (start -1.5 1.5) (end -1.5 -0.5) (layer "F.Fab") (width 0.1) (tstamp 986b56f7-bb08-4a55-ba25-6150c95bf473)) + (fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp a39bd917-6008-4aab-9dc0-ce164ea3ff17)) + (fp_line (start -0.5 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp d592a65e-517e-4940-a1f6-fb8bd56ec983)) + (pad "1" smd custom (at -1.475 -1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 73 "unconnected-(U4-Pad1)") (pinfunction "PC14") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.325 0) + (xy 0.325 0.15) + (xy 0.175 0.15) + (xy 0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp b83c0d83-8368-439a-931d-b6eae1bbe311)) + (pad "2" smd rect (at -1.3 -0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 50 "unconnected-(U4-Pad2)") (pinfunction "PC15") (pintype "bidirectional") (tstamp 5597fbf8-17e4-49f0-a4c2-705900f2fc42)) + (pad "3" smd rect (at -1.3 0) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "~{BUSRST}") (pinfunction "NRST") (pintype "input") (tstamp dafea3e8-762f-4b03-b892-cde8d74e27b4)) + (pad "4" smd rect (at -1.3 0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp 19867f92-7f62-403d-a776-230c0a55e85b)) + (pad "5" smd custom (at -1.475 1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 75 "unconnected-(U4-Pad5)") (pinfunction "PA0") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.325 0) + (xy 0.175 0.15) + (xy 0.175 -0.15) + (xy 0.325 -0.15) + ) (width 0) (fill yes)) + ) (tstamp cd8ba3f9-693f-472c-a200-18e205c28a7f)) + (pad "6" smd custom (at -1 1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 76 "unconnected-(U4-Pad6)") (pinfunction "PA1") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 -0.175) + (xy -0.15 -0.175) + (xy 0 -0.325) + (xy 0.15 -0.325) + ) (width 0) (fill yes)) + ) (tstamp e4c6e7fd-8472-4eee-837f-c53c8102f519)) + (pad "7" smd rect (at -0.5 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 77 "unconnected-(U4-Pad7)") (pinfunction "PA4") (pintype "bidirectional") (tstamp 39e657a2-3599-4436-955c-a1be90c62ccf)) + (pad "8" smd rect (at 0 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 53 "unconnected-(U4-Pad8)") (pinfunction "PA5") (pintype "bidirectional") (tstamp 4ef0f0e7-cc89-4ea1-ad8f-3737f83c8b42)) + (pad "9" smd rect (at 0.5 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 54 "unconnected-(U4-Pad9)") (pinfunction "PA6") (pintype "bidirectional") (tstamp 2a22d334-a851-4132-a9f1-13cc86ac90c5)) + (pad "10" smd custom (at 1 1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 78 "unconnected-(U4-Pad10)") (pinfunction "PA7") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 -0.175) + (xy -0.15 -0.175) + (xy -0.15 -0.325) + (xy 0 -0.325) + ) (width 0) (fill yes)) + ) (tstamp 4a79b2c2-4718-4246-b33e-08e4ac3eeca4)) + (pad "11" smd custom (at 1.475 1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 79 "unconnected-(U4-Pad11)") (pinfunction "PB1") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy -0.175 0.15) + (xy -0.325 0) + (xy -0.325 -0.15) + (xy -0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp eb8285d9-35fd-4d0e-a8fd-a913f1c271ed)) + (pad "12" smd rect (at 1.3 0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp ce447a90-f8b3-4dd4-acf3-14da32814b5f)) + (pad "13" smd rect (at 1.3 0) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 18a6247a-11d3-493e-ae31-0967dcbe0b1c)) + (pad "14" smd rect (at 1.3 -0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 82 "unconnected-(U4-Pad14)") (pinfunction "PA9") (pintype "bidirectional") (tstamp 5a3d580a-25c9-4cad-8f12-085282b69386)) + (pad "15" smd custom (at 1.475 -1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 83 "unconnected-(U4-Pad15)") (pinfunction "PA10") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy -0.175 0.15) + (xy -0.325 0.15) + (xy -0.325 0) + (xy -0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp 39c7cf04-07f4-4dbe-978e-f9e0081a4ffc)) + (pad "16" smd custom (at 1 -1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 84 "unconnected-(U4-Pad16)") (pinfunction "PA13") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0 0.325) + (xy -0.15 0.325) + (xy -0.15 0.175) + (xy 0.15 0.175) + ) (width 0) (fill yes)) + ) (tstamp 9685a9a2-badc-4eac-96a2-188916b06133)) + (pad "17" smd rect (at 0.5 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 85 "unconnected-(U4-Pad17)") (pinfunction "PA14") (pintype "bidirectional") (tstamp a55e3fe5-24d7-488d-9e4d-217848de3af0)) + (pad "18" smd rect (at 0 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 86 "unconnected-(U4-Pad18)") (pinfunction "PB6") (pintype "bidirectional") (tstamp d019e61d-052e-4236-94a4-0b934a7ce388)) + (pad "19" smd rect (at -0.5 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 87 "unconnected-(U4-Pad19)") (pinfunction "PB7") (pintype "bidirectional") (tstamp 05507244-dc4b-43a4-82bb-e4a9c53659e5)) + (pad "20" smd custom (at -1 -1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 88 "unconnected-(U4-Pad20)") (pinfunction "PB9") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 0.325) + (xy 0 0.325) + (xy -0.15 0.175) + (xy 0.15 0.175) + ) (width 0) (fill yes)) + ) (tstamp 1702c53d-df4b-4c20-8e86-577c95778df6)) + (model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/ST_UFQFPN-20_3x3mm_P0.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text "12V OUT" (at 46.99 48.26 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp d7c04660-b167-4d19-8f58-15587bdf7026) + (at 53.34 43.18) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/3a12708a-1a06-45b4-8378-2ebf8388e2fd") + (attr exclude_from_pos_files) + (fp_text reference "J16" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4c15d312-cc0f-4213-b832-8551a87b1717) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 31aab52d-4e8d-4e37-97e8-d101e7b9f0ba) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9708b09f-de32-451b-baf3-996a32c605d7) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 18cf20c3-ecf9-48ab-86a7-32f5bbd9d0a3)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 910293e6-ff7d-455a-ba76-abff3955f62d)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 34 "/Ext-IO/INIT_{IN}") (pinfunction "Pin_1") (pintype "passive") (tstamp f6567e2e-fa9f-44cf-9072-f96cdca3b266)) ) - (gr_text "5V OUT" (at 49.53 48.768 90) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp d99ba2f6-186f-4dae-8969-a6f8bd3b2a65) + (at 56.388 48.26 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/34eb6719-7713-41ef-b8d2-9cc36d38f374") + (attr smd) + (fp_text reference "R22" (at -2.794 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8a550695-f510-4aa7-8d0e-8f9c7904fbf1) + ) + (fp_text value "51Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c1b7ffe3-520f-4431-ab66-f16bc8517534) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp c35504fc-2cc8-4d8b-803f-229b4d8a9326) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0af0361f-0985-4fa8-b37b-6113b5e1ab8a)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 21675cb8-3bed-4efb-a135-d0b8c84d01bb)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b844b4d-2d02-4596-b2a7-23a6bf982afe)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 85e2c8f8-beaa-4ec6-9798-36f7f749dfd5)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 903d2f9c-f032-4a50-b68f-3e88ddfa4c21)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea01ab32-4982-4b0c-ae74-43da942328f6)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0794f0db-87f8-4d3b-8356-b00cffb2b6d1)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 17b94626-5f2f-4bb3-b62b-85039c2e43cd)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6e1d3cc6-77a8-4cd6-bcda-33aefaea671c)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b9c9ddb4-52d6-42bd-87c1-b679acb750ef)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "Net-(D12-Pad4)") (pintype "passive") (tstamp e3cbeee2-0aab-4966-9e54-f0eb42fd7f11)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 33 "GPIO3") (pintype "passive") (tstamp 8d0670fd-9c98-4387-ba91-14d86508f4b4)) + (model "${KIPRJMOD}/packages3D/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text "12V IN" (at 50.8 66.548) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" locked (layer "B.Cu") + (tedit 59FF03D1) (tstamp 00000000-0000-0000-0000-00006091b242) + (at 35.56 68.58 90) + (descr "simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4") + (tags "terminal block bornier4") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060b13d6d") + (attr through_hole) + (fp_text reference "J2" (at 7.6 4.8 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 83edc93c-1f63-4bf0-9de7-11f3aaf55d3e) + ) + (fp_text value "Conn_01x04_Male" (at 7.6 -4.75 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 7dcc7a24-e7a4-4e7f-b216-d46449cff4f0) + ) + (fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp f37c3459-84fe-4a1c-ab4f-58bb2f28dc4b) + ) + (fp_line (start -2.54 -3.81) (end 17.78 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 47ca1f3f-2757-418d-8fe2-382f763dfa2a)) + (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 714d6e0e-04f0-4c8e-99b7-de04fe22e60d)) + (fp_line (start 17.78 -2.54) (end -2.54 -2.54) (layer "B.SilkS") (width 0.12) (tstamp b3ed1977-7416-4496-967d-b4311993305f)) + (fp_line (start 17.78 -3.81) (end 17.78 3.81) (layer "B.SilkS") (width 0.12) (tstamp c58e8e1e-2981-4f31-ae62-9daaa5045006)) + (fp_line (start -2.54 3.81) (end 17.78 3.81) (layer "B.SilkS") (width 0.12) (tstamp f1019434-7a0d-43c5-b7bf-05d7d763a7ac)) + (fp_line (start 17.97 -4) (end 17.97 4) (layer "B.CrtYd") (width 0.05) (tstamp 05213eaf-3d31-4685-9672-7aa709e3e226)) + (fp_line (start 17.97 -4) (end -2.73 -4) (layer "B.CrtYd") (width 0.05) (tstamp 161eb6ca-8137-4154-9336-7a2d4515e18a)) + (fp_line (start -2.73 4) (end -2.73 -4) (layer "B.CrtYd") (width 0.05) (tstamp 419a1618-d394-43b3-9e38-8e9828d704ee)) + (fp_line (start -2.73 4) (end 17.97 4) (layer "B.CrtYd") (width 0.05) (tstamp baa46d1e-4e6a-403d-9562-002db158710b)) + (fp_line (start -2.48 -3.75) (end -2.48 3.75) (layer "B.Fab") (width 0.1) (tstamp 06ece7f1-006e-4f78-ad4a-ab8018633948)) + (fp_line (start -2.48 -2.55) (end 17.72 -2.55) (layer "B.Fab") (width 0.1) (tstamp 3fd92c0c-076f-47f1-baeb-d28563229a6c)) + (fp_line (start 17.72 3.75) (end 17.72 -3.75) (layer "B.Fab") (width 0.1) (tstamp 47d2724b-edb4-4441-8680-da8b7c004d07)) + (fp_line (start -2.48 3.75) (end 17.72 3.75) (layer "B.Fab") (width 0.1) (tstamp 4abfcad9-1b3c-4cac-86a4-9cb9f3cd954b)) + (fp_line (start 17.72 -3.75) (end -2.43 -3.75) (layer "B.Fab") (width 0.1) (tstamp 5330b149-4e14-43c2-8136-ce5131f0ed4d)) + (fp_line (start -2.43 -3.75) (end -2.48 -3.75) (layer "B.Fab") (width 0.1) (tstamp a19d7f5f-9371-4fd1-8ee2-5df8a28426f0)) + (pad "1" thru_hole rect locked (at 0 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp ae8acb76-14b3-4dd3-8560-2ae1292f95da)) + (pad "2" thru_hole circle locked (at 5.08 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 13 "RXD0") (pinfunction "Pin_2") (pintype "passive") (tstamp 316a1795-a921-4bd7-926c-fbbfae03b127)) + (pad "3" thru_hole circle locked (at 10.16 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 12 "TXD0") (pinfunction "Pin_3") (pintype "passive") (tstamp dff4184d-0bf4-4741-83df-1f3a425042f1)) + (pad "4" thru_hole circle locked (at 15.24 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 11 "VOUT") (pinfunction "Pin_4") (pintype "passive") (tstamp bc473e4a-c90b-407f-916d-7807b942d60e)) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_text "5V IN" (at 60.452 66.548) (layer B.SilkS) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + + (footprint "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" locked (layer "B.Cu") + (tedit 6203BDE5) (tstamp 00000000-0000-0000-0000-00006091b257) + (at 66.04 71.12 180) + (descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2") + (tags "terminal block bornier2") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006092964f") + (attr through_hole) + (fp_text reference "J3" (at 2.54 5.08) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp adb32192-9af9-4bce-96d3-9eff36936d67) + ) + (fp_text value "Conn_01x02_Male" (at 2.54 -5.08) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp cf57a022-3931-43c8-8a2a-208f90a1e4a3) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp b2f5a35b-01f0-454e-8903-4795f148259f) + ) + (fp_line (start 7.62 -3.81) (end 7.62 3.81) (layer "B.SilkS") (width 0.12) (tstamp 6f2e8ad6-08a0-4532-ae9b-fc77017180c9)) + (fp_line (start 7.62 -2.54) (end -2.54 -2.54) (layer "B.SilkS") (width 0.12) (tstamp 78e659e4-1c91-4c58-844a-c9a1fc0bf5b5)) + (fp_line (start 7.62 3.81) (end -2.54 3.81) (layer "B.SilkS") (width 0.12) (tstamp b3df3cff-0806-4120-8df4-c4c15787c1aa)) + (fp_line (start -2.54 -3.81) (end 7.62 -3.81) (layer "B.SilkS") (width 0.12) (tstamp ce8d3322-e5b4-473b-9698-e56ca2a3a35c)) + (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer "B.SilkS") (width 0.12) (tstamp cf04614d-8f9d-4aa0-bf3b-ca2d77ceb1d9)) + (fp_line (start -2.71 4) (end 7.79 4) (layer "B.CrtYd") (width 0.05) (tstamp 277723fc-bfb9-48c4-8f63-e8566c11d799)) + (fp_line (start 7.79 -4) (end 7.79 4) (layer "B.CrtYd") (width 0.05) (tstamp 7e474fcf-0f6d-47ac-b102-33a7ee1d74e7)) + (fp_line (start -2.71 4) (end -2.71 -4) (layer "B.CrtYd") (width 0.05) (tstamp 80e98bd0-6282-4412-9fa1-88ea95393ae8)) + (fp_line (start 7.79 -4) (end -2.71 -4) (layer "B.CrtYd") (width 0.05) (tstamp fc050968-b500-4430-b91e-6556aab7f610)) + (fp_line (start 7.54 3.75) (end -2.46 3.75) (layer "B.Fab") (width 0.1) (tstamp 64f89b14-78c4-4e70-9243-ba1c8fe76b8c)) + (fp_line (start -2.46 3.75) (end -2.46 -3.75) (layer "B.Fab") (width 0.1) (tstamp 8df4dba3-915d-4d92-a761-ccd6695abee3)) + (fp_line (start -2.41 -2.55) (end 7.49 -2.55) (layer "B.Fab") (width 0.1) (tstamp 93018143-915f-416b-a50a-646fb9ed3ad8)) + (fp_line (start 7.54 -3.75) (end 7.54 3.75) (layer "B.Fab") (width 0.1) (tstamp b10f320a-c8e1-40f1-bc07-ba2ff3dc83d3)) + (fp_line (start -2.46 -3.75) (end 7.54 -3.75) (layer "B.Fab") (width 0.1) (tstamp d7f27a40-2641-4aee-9781-f10149b5ca3c)) + (pad "1" thru_hole rect locked (at 0 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f0694cc8-e65f-4bd7-91d9-66c23b918aa8)) + (pad "2" thru_hole circle locked (at 5.08 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 5 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp d87e0768-206a-46fe-bd61-3be7e76ce014)) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_line (start 45.212 53.34) (end 44.958 53.086) (layer F.SilkS) (width 0.15) (tstamp 60924466)) - (gr_line (start 45.212 52.832) (end 45.212 53.34) (layer F.SilkS) (width 0.15)) - (gr_line (start 44.958 53.086) (end 45.212 52.832) (layer F.SilkS) (width 0.15)) - (gr_text "12V Power" (at 46.228 53.34 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) + + (footprint "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" locked (layer "B.Cu") + (tedit 59FF03D1) (tstamp 00000000-0000-0000-0000-00006091b26f) + (at 35.56 48.26 90) + (descr "simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4") + (tags "terminal block bornier4") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-0000608bfa99") + (attr through_hole) + (fp_text reference "J4" (at 7.6 4.8 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp f146ce09-1c56-4245-8dc1-8bb2f01e4768) + ) + (fp_text value "Conn_01x04_Male" (at 7.6 -4.75 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 889e4cd0-8aae-4fda-9005-c08ee03477e7) + ) + (fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 7444b4b5-f2da-419a-966b-4d75a90a3f1b) + ) + (fp_line (start 17.78 -3.81) (end 17.78 3.81) (layer "B.SilkS") (width 0.12) (tstamp 08e0ddb3-d644-4f86-bfba-5b07fad3d70b)) + (fp_line (start 17.78 -2.54) (end -2.54 -2.54) (layer "B.SilkS") (width 0.12) (tstamp 0bd750ff-9cdd-4f1c-a2e0-d527746a74ea)) + (fp_line (start -2.54 -3.81) (end 17.78 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 42ec7d97-c5c0-4206-9955-e43157f49848)) + (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 49a7737b-6aff-43aa-8ca1-980a04045b83)) + (fp_line (start -2.54 3.81) (end 17.78 3.81) (layer "B.SilkS") (width 0.12) (tstamp d65a551b-f0e7-4259-9727-656c776ed317)) + (fp_line (start 17.97 -4) (end 17.97 4) (layer "B.CrtYd") (width 0.05) (tstamp 97fccbb2-917f-414c-aba4-650f03acef1a)) + (fp_line (start -2.73 4) (end -2.73 -4) (layer "B.CrtYd") (width 0.05) (tstamp cc1418f1-4436-4a67-bef5-75c043b288cb)) + (fp_line (start -2.73 4) (end 17.97 4) (layer "B.CrtYd") (width 0.05) (tstamp cdcab434-a2fb-4087-8bd0-1afd6581ee81)) + (fp_line (start 17.97 -4) (end -2.73 -4) (layer "B.CrtYd") (width 0.05) (tstamp d3dfcec3-2a39-45b2-a23d-a2620a08cf4b)) + (fp_line (start 17.72 3.75) (end 17.72 -3.75) (layer "B.Fab") (width 0.1) (tstamp 571cfdd4-5577-4e77-bd14-cb1409b174e5)) + (fp_line (start -2.43 -3.75) (end -2.48 -3.75) (layer "B.Fab") (width 0.1) (tstamp 8975a2e4-69b1-4662-8f4a-558a41fa7616)) + (fp_line (start -2.48 -2.55) (end 17.72 -2.55) (layer "B.Fab") (width 0.1) (tstamp add06bd2-c591-4cb7-be4d-fa003b66659f)) + (fp_line (start 17.72 -3.75) (end -2.43 -3.75) (layer "B.Fab") (width 0.1) (tstamp b8479d8c-1c58-4a5b-8d88-35f24a1f0952)) + (fp_line (start -2.48 3.75) (end 17.72 3.75) (layer "B.Fab") (width 0.1) (tstamp d7bff284-0d16-4a76-9006-1b9862c9f4fe)) + (fp_line (start -2.48 -3.75) (end -2.48 3.75) (layer "B.Fab") (width 0.1) (tstamp dbf4298e-34ea-4dc9-82f6-8c47d7db3ba2)) + (pad "1" thru_hole rect locked (at 0 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 6160c65d-4561-441c-8b6c-b42135984af9)) + (pad "2" thru_hole circle locked (at 5.08 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 15 "MOSI") (pinfunction "Pin_2") (pintype "passive") (tstamp 3e23cfd1-5d1b-4701-bce8-9ca0a23cad73)) + (pad "3" thru_hole circle locked (at 10.16 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 14 "SCLK") (pinfunction "Pin_3") (pintype "passive") (tstamp be1fb565-fa5c-4b78-a7f6-57ef1690993f)) + (pad "4" thru_hole circle locked (at 15.24 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 11 "VOUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 75386eaf-56e6-4812-9bd1-0b925ac20efd)) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_line (start 53.34 59.436) (end 53.594 59.69) (layer F.SilkS) (width 0.15) (tstamp 60924464)) - (gr_line (start 53.594 59.182) (end 53.34 59.436) (layer F.SilkS) (width 0.15)) - (gr_line (start 53.594 59.69) (end 53.594 59.182) (layer F.SilkS) (width 0.15)) - (gr_text "5V Power" (at 54.61 56.388 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" (layer "B.Cu") + (tedit 59FED5CB) (tstamp 00000000-0000-0000-0000-00006091b2af) + (at 50.8 63.5 90) + (descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row") + (tags "Through hole angled pin header THT 1x03 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929628") + (attr through_hole) + (fp_text reference "J5" (at 2.54 2.286 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 9c90776a-359e-4326-bf78-74352905f232) + ) + (fp_text value "Conn_01x03_Male" (at 4.385 -7.35 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5d290d08-45d5-4ce0-b48a-a1afd050aacb) + ) + (fp_text user "${REFERENCE}" (at 2.77 -2.54 180) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d914329c-36c7-4619-8de8-40cde42afd60) + ) + (fp_line (start 4.1 0.08) (end 10.1 0.08) (layer "B.SilkS") (width 0.12) (tstamp 1cd95b75-b29a-4ee5-a393-985cc64f8ce6)) + (fp_line (start 4.1 -0.04) (end 10.1 -0.04) (layer "B.SilkS") (width 0.12) (tstamp 1d572842-5507-45c4-8acc-10391fd8e6da)) + (fp_line (start 10.1 -0.38) (end 4.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 2a5f3117-4233-4be4-8d18-b64dcfab5a3d)) + (fp_line (start 4.1 1.33) (end 1.44 1.33) (layer "B.SilkS") (width 0.12) (tstamp 40751cce-e8cf-4b9d-8be0-e132a57f48c5)) + (fp_line (start 4.1 0.38) (end 10.1 0.38) (layer "B.SilkS") (width 0.12) (tstamp 4c1ee018-d13f-4af8-9466-3e2eb33e403b)) + (fp_line (start 1.042929 -2.92) (end 1.44 -2.92) (layer "B.SilkS") (width 0.12) (tstamp 4f83e2c8-2ef1-4926-90b2-32da75b65dba)) + (fp_line (start 4.1 0.2) (end 10.1 0.2) (layer "B.SilkS") (width 0.12) (tstamp 4fbbc8a6-15bb-44b6-8ac6-87cc0e72f953)) + (fp_line (start 1.44 -3.81) (end 4.1 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 53c15f12-fdd5-4041-876e-51c6365f59c9)) + (fp_line (start 4.1 0.32) (end 10.1 0.32) (layer "B.SilkS") (width 0.12) (tstamp 5ce3757d-5f65-40ac-8cca-3931c111f1fd)) + (fp_line (start 10.1 -2.16) (end 10.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp 70207834-a2c3-4b40-8126-40ea3648e2e9)) + (fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "B.SilkS") (width 0.12) (tstamp 76933845-6124-49a6-a472-f96d42d6e178)) + (fp_line (start 1.042929 -4.7) (end 1.44 -4.7) (layer "B.SilkS") (width 0.12) (tstamp 77a824cb-5d1d-4715-bb10-136e54e08f06)) + (fp_line (start 10.1 -5.46) (end 4.1 -5.46) (layer "B.SilkS") (width 0.12) (tstamp 7d8e52a0-9698-4972-9cad-dc8b6cdda211)) + (fp_line (start 10.1 -4.7) (end 10.1 -5.46) (layer "B.SilkS") (width 0.12) (tstamp 8cbff72b-fcca-4669-bbbc-68e8e73e1f79)) + (fp_line (start -1.27 0) (end -1.27 1.27) (layer "B.SilkS") (width 0.12) (tstamp 8ffb8cd3-4a3c-452b-b0c7-ef97298db276)) + (fp_line (start 1.042929 -2.16) (end 1.44 -2.16) (layer "B.SilkS") (width 0.12) (tstamp 9035f1bf-35b2-4b7f-9526-376cdbcce454)) + (fp_line (start 4.1 -0.28) (end 10.1 -0.28) (layer "B.SilkS") (width 0.12) (tstamp 940c9b9d-b58a-4c26-bb55-6300cffdbc1e)) + (fp_line (start 1.44 -1.27) (end 4.1 -1.27) (layer "B.SilkS") (width 0.12) (tstamp 9ba80c22-8493-4e01-b2a6-f32cc643c868)) + (fp_line (start 1.44 -6.41) (end 4.1 -6.41) (layer "B.SilkS") (width 0.12) (tstamp a2f2c43a-6a0a-41e3-a573-2ba95205b59e)) + (fp_line (start 1.44 1.33) (end 1.44 -6.41) (layer "B.SilkS") (width 0.12) (tstamp acd010dc-6514-4934-b4b6-97fa31947584)) + (fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "B.SilkS") (width 0.12) (tstamp aff9b602-e6e6-47ec-afaf-583f08d4566a)) + (fp_line (start 4.1 -0.16) (end 10.1 -0.16) (layer "B.SilkS") (width 0.12) (tstamp b49e3a24-f68c-44bf-b95f-4292b1e44139)) + (fp_line (start 10.1 -2.92) (end 4.1 -2.92) (layer "B.SilkS") (width 0.12) (tstamp c53f2afa-06f7-4bb4-a7b5-907e40f567ac)) + (fp_line (start 4.1 -2.16) (end 10.1 -2.16) (layer "B.SilkS") (width 0.12) (tstamp c7affd1e-2f96-4a7f-93c6-ecbc5c8f9494)) + (fp_line (start 10.1 0.38) (end 10.1 -0.38) (layer "B.SilkS") (width 0.12) (tstamp da13f2c5-5198-4b01-b20a-7a131cfb17a6)) + (fp_line (start -1.27 1.27) (end 0 1.27) (layer "B.SilkS") (width 0.12) (tstamp dc638096-a289-47d5-b449-820b7209c7ef)) + (fp_line (start 4.1 -4.7) (end 10.1 -4.7) (layer "B.SilkS") (width 0.12) (tstamp dee19e5b-9438-452d-9e04-c392e5829da3)) + (fp_line (start 1.042929 -5.46) (end 1.44 -5.46) (layer "B.SilkS") (width 0.12) (tstamp ee154e48-956b-4582-8087-47ba5edb25f6)) + (fp_line (start 4.1 -6.41) (end 4.1 1.33) (layer "B.SilkS") (width 0.12) (tstamp f3f81446-e68e-48a5-899d-66ec6aefb3b9)) + (fp_line (start 10.55 -6.85) (end 10.55 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 143db20f-2dd9-4e5a-9851-dc8bc1fc2852)) + (fp_line (start 10.55 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 8dbee847-b13f-4912-ad69-2200875591a5)) + (fp_line (start -1.8 1.8) (end -1.8 -6.85) (layer "B.CrtYd") (width 0.05) (tstamp ab324e75-e54a-4e99-8a10-df91dfc421f5)) + (fp_line (start -1.8 -6.85) (end 10.55 -6.85) (layer "B.CrtYd") (width 0.05) (tstamp b48b8aaf-5d46-4150-8679-705274591ff8)) + (fp_line (start -0.32 -4.76) (end -0.32 -5.4) (layer "B.Fab") (width 0.1) (tstamp 0b76bc5d-0ae6-4352-82e8-df7f398ae6d8)) + (fp_line (start -0.32 -2.22) (end 1.5 -2.22) (layer "B.Fab") (width 0.1) (tstamp 19f1c7c1-9626-4d8f-9aff-e5037f729f33)) + (fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "B.Fab") (width 0.1) (tstamp 1c3908a4-0390-4115-b818-d1ac8c987957)) + (fp_line (start 4.04 -6.35) (end 1.5 -6.35) (layer "B.Fab") (width 0.1) (tstamp 1d26e3bf-3156-45e8-af16-5864eb4f78c7)) + (fp_line (start 4.04 1.27) (end 4.04 -6.35) (layer "B.Fab") (width 0.1) (tstamp 24634b08-c6fe-49e9-8619-9aef97ceffb9)) + (fp_line (start 2.135 1.27) (end 4.04 1.27) (layer "B.Fab") (width 0.1) (tstamp 2691f1f0-9a4e-4ba1-b755-33a7eb396d75)) + (fp_line (start 10.04 -4.76) (end 10.04 -5.4) (layer "B.Fab") (width 0.1) (tstamp 45ca173a-7093-4efd-8d9e-fd1f7de5c364)) + (fp_line (start 4.04 -2.22) (end 10.04 -2.22) (layer "B.Fab") (width 0.1) (tstamp 4fd74853-59e2-42e3-8f84-5683f7445af0)) + (fp_line (start 4.04 -5.4) (end 10.04 -5.4) (layer "B.Fab") (width 0.1) (tstamp 8939fbb1-0bbc-4a7b-b1b9-dbd49de808f9)) + (fp_line (start 1.5 0.635) (end 2.135 1.27) (layer "B.Fab") (width 0.1) (tstamp 8b7b86c2-493b-42f3-9e13-3f8dc5985623)) + (fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 926c1893-c18d-4276-af71-a0ed092b7caf)) + (fp_line (start 4.04 -4.76) (end 10.04 -4.76) (layer "B.Fab") (width 0.1) (tstamp 977aa831-321f-44aa-9772-114ace934751)) + (fp_line (start 10.04 0.32) (end 10.04 -0.32) (layer "B.Fab") (width 0.1) (tstamp 98f7d12c-66f2-420c-8c96-fe57855d62c7)) + (fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "B.Fab") (width 0.1) (tstamp a8185065-c82e-4242-b64f-44b776b86bb8)) + (fp_line (start -0.32 -4.76) (end 1.5 -4.76) (layer "B.Fab") (width 0.1) (tstamp bb86b618-2b4c-49c9-a5d9-61b485cbd5a0)) + (fp_line (start -0.32 0.32) (end -0.32 -0.32) (layer "B.Fab") (width 0.1) (tstamp c7c380e9-0ab2-4a95-8db8-e607f0d88862)) + (fp_line (start -0.32 -5.4) (end 1.5 -5.4) (layer "B.Fab") (width 0.1) (tstamp cef84374-1ecc-4ff2-97f9-3a33e3886527)) + (fp_line (start -0.32 -2.86) (end 1.5 -2.86) (layer "B.Fab") (width 0.1) (tstamp d8be1777-2440-4b77-86b0-e98ce863cdfa)) + (fp_line (start 10.04 -2.22) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp d9ea4bcf-3df2-460b-ac37-0843cc7d707d)) + (fp_line (start 1.5 -6.35) (end 1.5 0.635) (layer "B.Fab") (width 0.1) (tstamp e9fa6b7f-09ca-4b14-80d4-f4aa1346b792)) + (fp_line (start 4.04 -2.86) (end 10.04 -2.86) (layer "B.Fab") (width 0.1) (tstamp eb83564c-97a0-4f99-a7dc-842c8389f2af)) + (fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "B.Fab") (width 0.1) (tstamp f3e9f417-8dc5-4943-99bd-a6cef3cf469e)) + (fp_line (start -0.32 -2.22) (end -0.32 -2.86) (layer "B.Fab") (width 0.1) (tstamp f9479ee8-b7f4-4bcf-926c-dce8d8953ecc)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 5 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp b7408013-ae99-4ccb-af53-248ace4703a6)) + (pad "2" thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 11 "VOUT") (pinfunction "Pin_2") (pintype "passive") (zone_connect 2) (tstamp b7df5a22-6244-43e3-a27e-3443d58acd66)) + (pad "3" thru_hole oval (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 10 "+12V") (pinfunction "Pin_3") (pintype "passive") (tstamp 0b719b48-28ba-4852-a12f-1035bd31f248)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x03_P2.54mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) ) - (gr_line (start 35 75) (end 75 75) (layer Edge.Cuts) (width 0.1) (tstamp 6091C1A0)) - (gr_line (start 31 31) (end 31 71) (layer Edge.Cuts) (width 0.1) (tstamp 6091C19F)) - (gr_line (start 75 27) (end 35 27) (layer Edge.Cuts) (width 0.1) (tstamp 6091C19E)) - (gr_arc (start 35 71) (end 31 71) (angle -90) (layer Edge.Cuts) (width 0.1)) - (gr_arc (start 35 31) (end 35 27) (angle -90) (layer Edge.Cuts) (width 0.1)) - (gr_arc (start 75 71) (end 75 75) (angle -90) (layer Edge.Cuts) (width 0.1)) - (gr_arc (start 75 31) (end 79 31) (angle -90) (layer Edge.Cuts) (width 0.1)) - (gr_line (start 79 71) (end 79 31) (layer Edge.Cuts) (width 0.1)) - (gr_text LUX (at 64.77 63.5) (layer B.SilkS) (tstamp 6091654A) + + (footprint "RF_Module:ESP-12E" locked (layer "B.Cu") + (tedit 5A030172) (tstamp 00000000-0000-0000-0000-00006091b490) + (at 74.168 45.72 90) + (descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf") + (tags "Wi-Fi Module") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-00006091c48a") + (attr smd) + (fp_text reference "U1" (at -0.508 -13.97 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp e397a328-de4e-4153-9b99-2240278b436d) + ) + (fp_text value "ESP-12E" (at -0.06 12.78 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d21452b4-2562-4d1e-ac89-e58499640147) + ) + (fp_text user "Antenna" (at -0.06 7 -90) (layer "Cmts.User") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 852d052d-a98c-4f70-8806-85d79b036dd3) + ) + (fp_text user "KEEP-OUT ZONE" (at 0.03 9.55 -90) (layer "Cmts.User") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8e0dca7d-74ef-4f4e-a6dd-d1ef77b93fce) + ) + (fp_text user "${REFERENCE}" (at 0.49 0.8 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 85a11eec-eb12-4878-90ed-a49a00f2772b) + ) + (fp_line (start 8.12 12.12) (end 8.12 4.5) (layer "B.SilkS") (width 0.12) (tstamp 11c65b87-dd6c-4af2-a687-096b9168ef59)) + (fp_line (start 8.12 -12.12) (end 6 -12.12) (layer "B.SilkS") (width 0.12) (tstamp 22e7ac3e-d80f-415f-8993-f1c69e9aa660)) + (fp_line (start -8.12 12.12) (end 8.12 12.12) (layer "B.SilkS") (width 0.12) (tstamp 448040ca-a02e-4b7e-8437-aed42d571bd5)) + (fp_line (start -8.12 4.5) (end -8.12 12.12) (layer "B.SilkS") (width 0.12) (tstamp 58d95fbe-5b8c-4b0d-bcfa-7aada067b269)) + (fp_line (start -6 -12.12) (end -8.12 -12.12) (layer "B.SilkS") (width 0.12) (tstamp b5743b39-04ba-46cd-947c-611b9f092447)) + (fp_line (start 8.12 -11.5) (end 8.12 -12.12) (layer "B.SilkS") (width 0.12) (tstamp b817b385-d3bd-4a69-bcb7-c1ec83a31ef7)) + (fp_line (start -8.12 4.5) (end -8.73 4.5) (layer "B.SilkS") (width 0.12) (tstamp c6155a4e-857d-4b0c-a2d0-30324dc98985)) + (fp_line (start -8.12 -12.12) (end -8.12 -11.5) (layer "B.SilkS") (width 0.12) (tstamp e97c8af1-0f0e-462c-998b-aea4912440d6)) + (fp_line (start -8.12 6.12) (end -2.12 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 0137aac6-8e99-47bc-bae2-82c9390f9045)) + (fp_line (start 8.12 4.8) (end -8.12 4.8) (layer "Dwgs.User") (width 0.12) (tstamp 29caec1d-1761-4979-b30f-40655dac635e)) + (fp_line (start -8.12 4.8) (end -8.12 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 2ffe113d-4b89-415c-a9f0-88d275969962)) + (fp_line (start -8.12 12.12) (end 8.12 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 3196c391-31df-40aa-ac68-07fc0c09779d)) + (fp_line (start -3.44 4.8) (end 3.88 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 40366197-85ac-441f-ba3e-4c1c703fd352)) + (fp_line (start 2.56 4.8) (end 8.12 10.36) (layer "Dwgs.User") (width 0.12) (tstamp 4680e782-ff76-4a93-a08b-bdc2897eef6a)) + (fp_line (start -8.12 9.12) (end -5.12 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 77ee59e4-dbd9-4cf9-9bdb-a84706339a4b)) + (fp_line (start 5.56 4.8) (end 8.12 7.36) (layer "Dwgs.User") (width 0.12) (tstamp 8c274486-4671-4349-996e-f269d9acf502)) + (fp_line (start 8.12 12.12) (end 8.12 4.8) (layer "Dwgs.User") (width 0.12) (tstamp 8c8c6f29-a97a-4b4e-88c1-c53c057fe0de)) + (fp_line (start -6.44 4.8) (end 0.88 12.12) (layer "Dwgs.User") (width 0.12) (tstamp 9207f927-751b-4946-9315-d5a1652c1cdd)) + (fp_line (start -0.44 4.8) (end 6.88 12.12) (layer "Dwgs.User") (width 0.12) (tstamp fd1d06c0-6290-42b1-a18e-4693c092b415)) + (fp_line (start -9.05 -13.1) (end -9.05 12.2) (layer "B.CrtYd") (width 0.05) (tstamp 6d94bd54-0713-4e9e-9f8a-40a937145402)) + (fp_line (start 9.05 -13.1) (end -9.05 -13.1) (layer "B.CrtYd") (width 0.05) (tstamp 95fdd41f-879b-4183-897c-ad6f1e5df1b2)) + (fp_line (start -9.05 12.2) (end 9.05 12.2) (layer "B.CrtYd") (width 0.05) (tstamp d6d8a661-7dee-425e-a1ec-152cb262687d)) + (fp_line (start 9.05 12.2) (end 9.05 -13.1) (layer "B.CrtYd") (width 0.05) (tstamp e920c04a-6843-4de8-8643-9b84401cf5fd)) + (fp_line (start 8 -12) (end -8 -12) (layer "B.Fab") (width 0.12) (tstamp 00393472-ebe8-4403-b495-78c4b9bbf5b0)) + (fp_line (start -8 3) (end -7.5 3.5) (layer "B.Fab") (width 0.12) (tstamp 06aac5a9-cb64-400c-a55f-e814d5a28716)) + (fp_line (start -7.5 3.5) (end -8 4) (layer "B.Fab") (width 0.12) (tstamp 69b6fb57-e424-49df-8782-da2bbccc00c3)) + (fp_line (start -8 4) (end -8 12) (layer "B.Fab") (width 0.12) (tstamp 738f4a1a-7a76-4082-8c06-c3c3c544adbd)) + (fp_line (start -8 12) (end 8 12) (layer "B.Fab") (width 0.12) (tstamp 7bbadccb-5b3d-4035-b84d-e3ad9b8e4c7c)) + (fp_line (start 8 12) (end 8 -12) (layer "B.Fab") (width 0.12) (tstamp e0460850-f75e-4d5a-bb12-527cce4d6be7)) + (fp_line (start -8 -12) (end -8 3) (layer "B.Fab") (width 0.12) (tstamp fc7a61b8-d452-43f6-a07e-fe10baaa77e6)) + (pad "1" smd rect locked (at -7.6 3.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 4 "nRST") (pinfunction "~{RST}") (pintype "input") (tstamp 0d0a789d-20a7-4112-90e1-dc8aa81fc98d)) + (pad "2" smd rect locked (at -7.6 1.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 16 "ADC") (pinfunction "ADC") (pintype "input") (tstamp 0c3a4d97-2fe1-4a4e-8ca2-179fbbba3744)) + (pad "3" smd rect locked (at -7.6 -0.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 19 "EN") (pinfunction "EN") (pintype "input") (tstamp 302bd6df-5da0-40df-9b5f-970f63f1b3c3)) + (pad "4" smd rect locked (at -7.6 -2.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 47 "unconnected-(U1-Pad4)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (tstamp 778e1984-a0c3-4333-96cf-af1d41df071f)) + (pad "5" smd rect locked (at -7.6 -4.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 14 "SCLK") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 8169f1c3-5383-48b9-bac5-172dcd7d5181)) + (pad "6" smd rect locked (at -7.6 -6.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 39 "MISO") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 07b3b053-ec7c-47ca-9eb1-d643c3710a50)) + (pad "7" smd rect locked (at -7.6 -8.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 15 "MOSI") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp eb81bb4a-3a56-4102-bd67-96c0bfcf4fc5)) + (pad "8" smd rect locked (at -7.6 -10.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 3 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 5af8648b-8d8f-443b-847a-806a2283a615)) + (pad "9" smd rect locked (at -5 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 46 "unconnected-(U1-Pad9)") (pinfunction "CS0") (pintype "input+no_connect") (tstamp 586273a1-904d-4378-a4ae-2c38f3278e13)) + (pad "10" smd rect locked (at -3 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 45 "unconnected-(U1-Pad10)") (pinfunction "MISO") (pintype "bidirectional+no_connect") (tstamp a439fd66-fcc4-46a3-8331-ab25f5a6c65d)) + (pad "11" smd rect locked (at -1 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 44 "unconnected-(U1-Pad11)") (pinfunction "GPIO9") (pintype "bidirectional+no_connect") (tstamp a138c41c-397a-411e-a50f-8abf3dd0dad0)) + (pad "12" smd rect locked (at 1 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 43 "unconnected-(U1-Pad12)") (pinfunction "GPIO10") (pintype "bidirectional+no_connect") (tstamp 35d7ebc4-2900-4bf5-b916-6d54f67d0fcf)) + (pad "13" smd rect locked (at 3 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 42 "unconnected-(U1-Pad13)") (pinfunction "MOSI") (pintype "bidirectional+no_connect") (tstamp 015a493c-f58e-4569-930b-bf346be7f724)) + (pad "14" smd rect locked (at 5 -12 90) (size 1 1.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 41 "unconnected-(U1-Pad14)") (pinfunction "SCLK") (pintype "bidirectional+no_connect") (tstamp d8307ced-8679-4b5f-b4ab-64a5a63af05d)) + (pad "15" smd rect locked (at 7.6 -10.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp da28e7db-b57b-4058-b851-66ca91b18841)) + (pad "16" smd rect locked (at 7.6 -8.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 23 "CS0") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 210e2fc8-e886-46c0-aa08-83aa09f721bc)) + (pad "17" smd rect locked (at 7.6 -6.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 38 "~{INT}") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp d8af5f47-ad05-4eae-931e-b19d9b85803e)) + (pad "18" smd rect locked (at 7.6 -4.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 25 "FLSH") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 9902ff90-b2d8-4202-a307-eb7ac08cc7fc)) + (pad "19" smd rect locked (at 7.6 -2.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 34 "/Ext-IO/INIT_{IN}") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp ebfb63ec-9b65-4da9-8b95-0550b2ad0276)) + (pad "20" smd rect locked (at 7.6 -0.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 37 "~{BUSRST}") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 56c7c399-3238-4d7a-b1d8-1ec34ee3c4a0)) + (pad "21" smd rect locked (at 7.6 1.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 13 "RXD0") (pinfunction "GPIO3/RXD") (pintype "bidirectional") (tstamp 3b6edd42-19e1-41d5-a0ae-bc7a42316ca2)) + (pad "22" smd rect locked (at 7.6 3.5 90) (size 2.5 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 12 "TXD0") (pinfunction "GPIO1/TXD") (pintype "bidirectional") (tstamp 4ddf3822-c4d4-4837-9e80-d7b12bff3830)) + (model "${KIPRJMOD}/packages3D/ESP-12E.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "fiatlux:fiat" locked (layer "B.Cu") + (tedit 609107ED) (tstamp 00000000-0000-0000-0000-000060924796) + (at 72.898 63.246 180) + (attr through_hole) + (fp_text reference "G***" (at 0 0) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror)) + (tstamp 919ae733-98a9-40ef-8c32-0feee611cec1) + ) + (fp_text value "LOGO" (at 0.75 0) (layer "B.SilkS") hide + (effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror)) + (tstamp 65a5cd28-cfdc-4b57-958a-185014225366) + ) + (fp_poly (pts + (xy -1.83896 1.49352) + (xy -2.53492 1.49352) + (xy -2.535078 1.43891) + (xy -2.535123 1.426758) + (xy -2.535214 1.405148) + (xy -2.535349 1.374781) + (xy -2.535524 1.336359) + (xy -2.535735 1.290584) + (xy -2.535979 1.238157) + (xy -2.536254 1.179781) + (xy -2.536555 1.116156) + (xy -2.53688 1.047985) + (xy -2.537224 0.975969) + (xy -2.537586 0.90081) + (xy -2.537961 0.823209) + (xy -2.538166 0.78105) + (xy -2.541096 0.1778) + (xy -2.00152 0.1778) + (xy -2.00152 -0.35052) + (xy -2.54043 -0.35052) + (xy -2.537779 -0.52705) + (xy -2.537288 -0.562694) + (xy -2.536747 -0.607127) + (xy -2.536169 -0.658978) + (xy -2.535569 -0.716878) + (xy -2.534959 -0.779454) + (xy -2.534352 -0.845336) + (xy -2.533761 -0.913154) + (xy -2.533201 -0.981537) + (xy -2.532683 -1.049114) + (xy -2.532463 -1.0795) + (xy -2.531941 -1.150661) + (xy -2.531351 -1.226643) + (xy -2.53071 -1.305599) + (xy -2.530034 -1.385679) + (xy -2.529339 -1.465035) + (xy -2.528642 -1.541818) + (xy -2.527958 -1.614178) + (xy -2.527304 -1.680268) + (xy -2.526696 -1.738239) + (xy -2.526636 -1.74371) + (xy -2.523475 -2.032) + (xy -2.843858 -2.032) + (xy -2.899957 -2.031941) + (xy -2.953004 -2.031771) + (xy -3.002135 -2.031501) + (xy -3.046484 -2.03114) + (xy -3.085186 -2.030699) + (xy -3.117378 -2.030189) + (xy -3.142194 -2.029618) + (xy -3.15877 -2.028998) + (xy -3.16624 -2.028339) + (xy -3.166576 -2.02819) + (xy -3.167504 -2.021938) + (xy -3.16838 -2.007561) + (xy -3.169112 -1.987092) + (xy -3.169611 -1.962566) + (xy -3.169664 -1.95834) + (xy -3.170121 -1.929378) + (xy -3.170799 -1.900281) + (xy -3.171603 -1.87456) + (xy -3.172382 -1.85674) + (xy -3.173123 -1.840718) + (xy -3.174047 -1.816715) + (xy -3.175079 -1.786905) + (xy -3.176144 -1.753464) + (xy -3.177168 -1.718567) + (xy -3.177352 -1.71196) + (xy -3.178403 -1.674982) + (xy -3.17954 -1.637121) + (xy -3.180677 -1.601097) + (xy -3.181728 -1.56963) + (xy -3.182606 -1.545442) + (xy -3.18265 -1.54432) + (xy -3.183586 -1.519003) + (xy -3.184696 -1.486732) + (xy -3.185872 -1.450712) + (xy -3.18701 -1.414144) + (xy -3.187669 -1.39192) + (xy -3.188721 -1.356233) + (xy -3.189776 -1.321799) + (xy -3.190892 -1.286806) + (xy -3.192132 -1.249439) + (xy -3.193556 -1.207887) + (xy -3.195223 -1.160335) + (xy -3.197195 -1.104972) + (xy -3.197836 -1.08712) + (xy -3.198841 -1.057903) + (xy -3.200008 -1.022094) + (xy -3.201222 -0.983258) + (xy -3.202373 -0.94496) + (xy -3.202962 -0.92456) + (xy -3.204012 -0.888761) + (xy -3.205181 -0.850923) + (xy -3.206362 -0.814427) + (xy -3.207446 -0.782652) + (xy -3.208012 -0.76708) + (xy -3.208983 -0.739826) + (xy -3.210118 -0.705797) + (xy -3.211306 -0.668372) + (xy -3.212441 -0.630931) + (xy -3.213058 -0.6096) + (xy -3.214108 -0.573801) + (xy -3.215281 -0.535963) + (xy -3.216468 -0.499466) + (xy -3.21756 -0.467691) + (xy -3.218131 -0.45212) + (xy -3.219114 -0.424867) + (xy -3.220262 -0.390838) + (xy -3.221466 -0.353413) + (xy -3.222616 -0.315972) + (xy -3.223242 -0.29464) + (xy -3.224309 -0.258555) + (xy -3.225497 -0.220158) + (xy -3.226695 -0.182922) + (xy -3.227792 -0.150317) + (xy -3.228348 -0.13462) + (xy -3.229332 -0.106388) + (xy -3.230479 -0.071472) + (xy -3.231678 -0.033342) + (xy -3.232821 0.004529) + (xy -3.233425 0.0254) + (xy -3.234453 0.059554) + (xy -3.235597 0.094178) + (xy -3.236755 0.126404) + (xy -3.237826 0.153363) + (xy -3.238473 0.16764) + (xy -3.239329 0.187682) + (xy -3.240332 0.215467) + (xy -3.241405 0.248581) + (xy -3.242469 0.284608) + (xy -3.243448 0.321136) + (xy -3.243611 0.32766) + (xy -3.244565 0.364244) + (xy -3.245615 0.400978) + (xy -3.246682 0.435391) + (xy -3.24769 0.465008) + (xy -3.248561 0.487357) + (xy -3.248689 0.49022) + (xy -3.249563 0.511729) + (xy -3.250588 0.54074) + (xy -3.251679 0.574603) + (xy -3.25275 0.610661) + (xy -3.253687 0.64516) + (xy -3.254659 0.680578) + (xy -3.255743 0.716139) + (xy -3.256851 0.749259) + (xy -3.257898 0.777351) + (xy -3.258783 0.79756) + (xy -3.259628 0.817247) + (xy -3.260615 0.844777) + (xy -3.261671 0.877835) + (xy -3.262723 0.914108) + (xy -3.263698 0.951281) + (xy -3.263974 0.96266) + (xy -3.264894 0.999006) + (xy -3.265896 1.034578) + (xy -3.266912 1.067222) + (xy -3.267874 1.094781) + (xy -3.268713 1.115099) + (xy -3.268967 1.12014) + (xy -3.269805 1.138156) + (xy -3.270808 1.163938) + (xy -3.271892 1.195093) + (xy -3.272975 1.22923) + (xy -3.273974 1.263957) + (xy -3.274 1.26492) + (xy -3.275024 1.301315) + (xy -3.276147 1.338778) + (xy -3.277279 1.374449) + (xy -3.27833 1.405465) + (xy -3.279149 1.42748) + (xy -3.280057 1.451929) + (xy -3.281132 1.483595) + (xy -3.282281 1.51954) + (xy -3.283408 1.556825) + (xy -3.284283 1.5875) + (xy -3.285298 1.622848) + (xy -3.286398 1.658648) + (xy -3.287494 1.692182) + (xy -3.288498 1.720727) + (xy -3.289249 1.7399) + (xy -3.290046 1.760317) + (xy -3.291045 1.788546) + (xy -3.292168 1.822243) + (xy -3.293338 1.859064) + (xy -3.294477 1.896667) + (xy -3.294832 1.90881) + (xy -3.298249 2.02692) + (xy -1.83896 2.02692) + (xy -1.83896 1.49352) + ) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 11a230ff-4652-4d65-af2c-e4be531e1713)) + (fp_poly (pts + (xy 3.301653 1.770381) + (xy 3.302418 1.51384) + (xy 3.045969 1.51384) + (xy 2.99591 1.513767) + (xy 2.948991 1.513557) + (xy 2.906182 1.513224) + (xy 2.868451 1.512783) + (xy 2.836767 1.512247) + (xy 2.812097 1.511632) + (xy 2.795411 1.51095) + (xy 2.787676 1.510218) + (xy 2.787256 1.51003) + (xy 2.786461 1.504057) + (xy 2.785484 1.489424) + (xy 2.784395 1.467629) + (xy 2.783265 1.440171) + (xy 2.782165 1.408545) + (xy 2.781657 1.39192) + (xy 2.780572 1.356531) + (xy 2.779433 1.322459) + (xy 2.778315 1.291744) + (xy 2.777294 1.266426) + (xy 2.776445 1.248546) + (xy 2.776214 1.2446) + (xy 2.775374 1.228726) + (xy 2.774344 1.205052) + (xy 2.773216 1.175934) + (xy 2.772081 1.14373) + (xy 2.771161 1.11506) + (xy 2.770082 1.0816) + (xy 2.768919 1.048715) + (xy 2.767767 1.018902) + (xy 2.766722 0.994656) + (xy 2.765999 0.98044) + (xy 2.765085 0.962217) + (xy 2.763995 0.936535) + (xy 2.762833 0.906091) + (xy 2.761705 0.873583) + (xy 2.761065 0.85344) + (xy 2.75997 0.819353) + (xy 2.758746 0.784061) + (xy 2.757509 0.750787) + (xy 2.756379 0.722752) + (xy 2.755867 0.7112) + (xy 2.754974 0.691568) + (xy 2.754071 0.67073) + (xy 2.753109 0.647396) + (xy 2.752036 0.620277) + (xy 2.750803 0.588079) + (xy 2.749359 0.549514) + (xy 2.747654 0.503291) + (xy 2.745784 0.45212) + (xy 2.743806 0.397888) + (xy 2.742146 0.352629) + (xy 2.740761 0.31516) + (xy 2.739604 0.284301) + (xy 2.73863 0.258871) + (xy 2.737795 0.237688) + (xy 2.737052 0.219572) + (xy 2.736357 0.20334) + (xy 2.735664 0.187813) + (xy 2.735555 0.18542) + (xy 2.734553 0.161812) + (xy 2.73337 0.131386) + (xy 2.732132 0.097481) + (xy 2.730962 0.063436) + (xy 2.73055 0.0508) + (xy 2.729429 0.017307) + (xy 2.728176 -0.017644) + (xy 2.726922 -0.05061) + (xy 2.725793 -0.07815) + (xy 2.72543 -0.08636) + (xy 2.724623 -0.104367) + (xy 2.723797 -0.123553) + (xy 2.722912 -0.144961) + (xy 2.721928 -0.169637) + (xy 2.720804 -0.198624) + (xy 2.719499 -0.232969) + (xy 2.717975 -0.273714) + (xy 2.716191 -0.321905) + (xy 2.714105 -0.378587) + (xy 2.712713 -0.41656) + (xy 2.71122 -0.457029) + (xy 2.709681 -0.498217) + (xy 2.708185 -0.537784) + (xy 2.706821 -0.573392) + (xy 2.705678 -0.602701) + (xy 2.705097 -0.61722) + (xy 2.704142 -0.6412) + (xy 2.702907 -0.672995) + (xy 2.701479 -0.710265) + (xy 2.69995 -0.75067) + (xy 2.698408 -0.791871) + (xy 2.697444 -0.81788) + (xy 2.695958 -0.857757) + (xy 2.694439 -0.897811) + (xy 2.692972 -0.935837) + (xy 2.691645 -0.969631) + (xy 2.69054 -0.99699) + (xy 2.689955 -1.01092) + (xy 2.688726 -1.040284) + (xy 2.687327 -1.075111) + (xy 2.685942 -1.110708) + (xy 2.684922 -1.13792) + (xy 2.682943 -1.191903) + (xy 2.681287 -1.23693) + (xy 2.67991 -1.274197) + (xy 2.678766 -1.3049) + (xy 2.677809 -1.330235) + (xy 2.676995 -1.3514) + (xy 2.676278 -1.369591) + (xy 2.675613 -1.386004) + (xy 2.674954 -1.401835) + (xy 2.674622 -1.4097) + (xy 2.673558 -1.435711) + (xy 2.672288 -1.4682) + (xy 2.670952 -1.503492) + (xy 2.669693 -1.537908) + (xy 2.669374 -1.54686) + (xy 2.668212 -1.578537) + (xy 2.666974 -1.610348) + (xy 2.665783 -1.63925) + (xy 2.664763 -1.662203) + (xy 2.664443 -1.66878) + (xy 2.663617 -1.686793) + (xy 2.662549 -1.71257) + (xy 2.661333 -1.743719) + (xy 2.660061 -1.777851) + (xy 2.658828 -1.812575) + (xy 2.658794 -1.81356) + (xy 2.657647 -1.846058) + (xy 2.656546 -1.875953) + (xy 2.655561 -1.901435) + (xy 2.654762 -1.920696) + (xy 2.65422 -1.931929) + (xy 2.654156 -1.93294) + (xy 2.653579 -1.945267) + (xy 2.652994 -1.964091) + (xy 2.652511 -1.985747) + (xy 2.652437 -1.99009) + (xy 2.65176 -2.032) + (xy 2.005977 -2.032) + (xy 2.008666 -2.01041) + (xy 2.008941 -2.003284) + (xy 2.009238 -1.986483) + (xy 2.009553 -1.960488) + (xy 2.009883 -1.925782) + (xy 2.010227 -1.88285) + (xy 2.010581 -1.832175) + (xy 2.010943 -1.774239) + (xy 2.01131 -1.709526) + (xy 2.011681 -1.638519) + (xy 2.012052 -1.561702) + (xy 2.01242 -1.479558) + (xy 2.012784 -1.39257) + (xy 2.013141 -1.301221) + (xy 2.013487 -1.205995) + (xy 2.013822 -1.107375) + (xy 2.014141 -1.005844) + (xy 2.014372 -0.9271) + (xy 2.014679 -0.821238) + (xy 2.014996 -0.716559) + (xy 2.01532 -0.613642) + (xy 2.015648 -0.513066) + (xy 2.015979 -0.415413) + (xy 2.01631 -0.32126) + (xy 2.016639 -0.231189) + (xy 2.016963 -0.145778) + (xy 2.017281 -0.065608) + (xy 2.01759 0.008742) + (xy 2.017888 0.076693) + (xy 2.018172 0.137664) + (xy 2.01844 0.191075) + (xy 2.018691 0.236348) + (xy 2.018921 0.272902) + (xy 2.019128 0.300158) + (xy 2.019221 0.30988) + (xy 2.019417 0.33284) + (xy 2.019622 0.364328) + (xy 2.019833 0.403498) + (xy 2.020047 0.449502) + (xy 2.020263 0.501491) + (xy 2.020479 0.558619) + (xy 2.020692 0.620036) + (xy 2.020901 0.684896) + (xy 2.021103 0.752351) + (xy 2.021297 0.821552) + (xy 2.02148 0.891653) + (xy 2.02165 0.961804) + (xy 2.021806 1.031159) + (xy 2.021945 1.098869) + (xy 2.022065 1.164086) + (xy 2.022164 1.225964) + (xy 2.02224 1.283654) + (xy 2.022291 1.336308) + (xy 2.022315 1.383078) + (xy 2.022309 1.423117) + (xy 2.022273 1.455577) + (xy 2.022203 1.47961) + (xy 2.022098 1.494368) + (xy 2.022093 1.49479) + (xy 2.02184 1.51384) + (xy 1.50368 1.51384) + (xy 1.50368 2.02692) + (xy 3.300889 2.02692) + (xy 3.301653 1.770381) + ) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 2af87758-699b-4d9c-b516-d5c3188ea46f)) + (fp_poly (pts + (xy 1.034934 1.95199) + (xy 1.10247 1.822561) + (xy 1.165366 1.686545) + (xy 1.223851 1.543346) + (xy 1.278151 1.392371) + (xy 1.328497 1.233025) + (xy 1.373254 1.07188) + (xy 1.377455 1.055525) + (xy 1.381794 1.038087) + (xy 1.386572 1.01827) + (xy 1.392092 0.994775) + (xy 1.398655 0.966307) + (xy 1.406564 0.931568) + (xy 1.416121 0.889261) + (xy 1.425321 0.84836) + (xy 1.429551 0.828396) + (xy 1.435095 0.800567) + (xy 1.441557 0.767026) + (xy 1.448541 0.729921) + (xy 1.455651 0.691404) + (xy 1.462488 0.653627) + (xy 1.468659 0.618739) + (xy 1.473765 0.588892) + (xy 1.47741 0.566235) + (xy 1.477792 0.563687) + (xy 1.481281 0.539957) + (xy 1.485435 0.511474) + (xy 1.489942 0.480401) + (xy 1.49449 0.448906) + (xy 1.498766 0.419152) + (xy 1.50246 0.393307) + (xy 1.505258 0.373534) + (xy 1.506686 0.36322) + (xy 1.509065 0.345584) + (xy 1.511268 0.329288) + (xy 1.511488 0.32766) + (xy 1.51353 0.311798) + (xy 1.516382 0.288617) + (xy 1.519716 0.260892) + (xy 1.523205 0.231401) + (xy 1.526521 0.20292) + (xy 1.529335 0.178225) + (xy 1.531319 0.160094) + (xy 1.53159 0.15748) + (xy 1.533679 0.137813) + (xy 1.535793 0.119191) + (xy 1.536699 0.11176) + (xy 1.538722 0.093921) + (xy 1.541337 0.06795) + (xy 1.544371 0.035844) + (xy 1.54765 -0.000396) + (xy 1.551002 -0.038773) + (xy 1.554253 -0.077288) + (xy 1.557229 -0.113942) + (xy 1.559758 -0.146736) + (xy 1.561666 -0.173673) + (xy 1.562248 -0.18288) + (xy 1.563744 -0.205784) + (xy 1.565255 -0.225345) + (xy 1.566573 -0.23905) + (xy 1.567275 -0.24384) + (xy 1.568126 -0.251367) + (xy 1.569259 -0.267092) + (xy 1.570554 -0.289058) + (xy 1.571892 -0.315311) + (xy 1.572573 -0.3302) + (xy 1.573857 -0.357923) + (xy 1.575112 -0.38239) + (xy 1.576229 -0.401646) + (xy 1.577098 -0.413735) + (xy 1.577419 -0.41656) + (xy 1.578047 -0.423882) + (xy 1.578954 -0.439602) + (xy 1.580051 -0.461967) + (xy 1.581254 -0.489219) + (xy 1.582419 -0.51816) + (xy 1.583671 -0.549072) + (xy 1.584932 -0.577373) + (xy 1.586107 -0.601133) + (xy 1.587101 -0.618425) + (xy 1.58777 -0.626919) + (xy 1.589141 -0.643946) + (xy 1.590416 -0.670331) + (xy 1.591593 -0.705273) + (xy 1.592671 -0.74797) + (xy 1.593648 -0.797621) + (xy 1.594521 -0.853425) + (xy 1.595289 -0.91458) + (xy 1.595949 -0.980285) + (xy 1.596501 -1.049739) + (xy 1.596941 -1.122139) + (xy 1.597267 -1.196686) + (xy 1.597479 -1.272576) + (xy 1.597573 -1.34901) + (xy 1.597548 -1.425185) + (xy 1.597401 -1.500301) + (xy 1.597132 -1.573555) + (xy 1.596737 -1.644146) + (xy 1.596216 -1.711274) + (xy 1.595565 -1.774136) + (xy 1.594783 -1.831931) + (xy 1.593868 -1.883859) + (xy 1.592818 -1.929117) + (xy 1.591631 -1.966903) + (xy 1.591109 -1.97993) + (xy 1.588858 -2.032) + (xy 0.996827 -2.032) + (xy 0.993789 -1.90373) + (xy 0.993005 -1.868174) + (xy 0.992138 -1.824628) + (xy 0.991226 -1.775263) + (xy 0.990307 -1.722248) + (xy 0.989418 -1.667752) + (xy 0.988598 -1.613945) + (xy 0.987974 -1.56972) + (xy 0.987299 -1.522606) + (xy 0.986567 -1.476678) + (xy 0.985808 -1.433384) + (xy 0.98505 -1.394175) + (xy 0.98432 -1.360501) + (xy 0.983647 -1.333813) + (xy 0.98306 -1.31556) + (xy 0.982961 -1.31318) + (xy 0.982119 -1.291887) + (xy 0.981114 -1.263028) + (xy 0.980028 -1.229191) + (xy 0.978945 -1.192968) + (xy 0.977948 -1.156946) + (xy 0.977915 -1.1557) + (xy 0.976932 -1.120885) + (xy 0.975855 -1.086862) + (xy 0.974764 -1.055908) + (xy 0.973739 -1.030303) + (xy 0.972862 -1.012327) + (xy 0.972778 -1.01092) + (xy 0.971683 -0.991003) + (xy 0.970381 -0.964307) + (xy 0.969029 -0.934202) + (xy 0.967785 -0.904062) + (xy 0.967693 -0.9017) + (xy 0.965967 -0.862311) + (xy 0.963709 -0.818525) + (xy 0.961025 -0.771826) + (xy 0.958019 -0.723699) + (xy 0.954798 -0.67563) + (xy 0.951468 -0.629105) + (xy 0.948133 -0.585608) + (xy 0.9449 -0.546625) + (xy 0.941873 -0.513641) + (xy 0.93916 -0.488142) + (xy 0.9373 -0.474226) + (xy 0.935748 -0.46324) + (xy 0.933569 -0.446485) + (xy 0.931968 -0.433586) + (xy 0.929132 -0.411236) + (xy 0.926639 -0.394641) + (xy 0.923791 -0.379454) + (xy 0.921702 -0.36957) + (xy 0.918672 -0.355599) + (xy 0.55651 -0.3556) + (xy 0.194348 -0.3556) + (xy 0.19125 -0.37973) + (xy 0.19083 -0.387978) + (xy 0.190415 -0.4057) + (xy 0.19001 -0.43221) + (xy 0.189619 -0.466821) + (xy 0.189247 -0.508846) + (xy 0.188898 -0.5576) + (xy 0.188576 -0.612396) + (xy 0.188285 -0.672547) + (xy 0.188031 -0.737369) + (xy 0.187818 -0.806173) + (xy 0.187649 -0.878274) + (xy 0.18753 -0.952985) + (xy 0.187519 -0.96266) + (xy 0.187403 -1.043623) + (xy 0.187238 -1.12613) + (xy 0.187031 -1.209071) + (xy 0.186784 -1.291337) + (xy 0.186504 -1.371819) + (xy 0.186193 -1.449408) + (xy 0.185858 -1.522994) + (xy 0.185502 -1.591469) + (xy 0.18513 -1.653722) + (xy 0.184747 -1.708644) + (xy 0.184358 -1.755128) + (xy 0.184142 -1.77673) + (xy 0.181399 -2.032) + (xy -0.4318 -2.032) + (xy -0.432828 -1.89611) + (xy -0.433135 -1.858737) + (xy -0.433469 -1.823653) + (xy -0.433811 -1.792462) + (xy -0.434143 -1.766771) + (xy -0.434444 -1.748183) + (xy -0.434676 -1.738834) + (xy -0.434879 -1.729973) + (xy -0.435176 -1.711911) + (xy -0.435557 -1.685608) + (xy -0.436008 -1.652023) + (xy -0.436517 -1.612116) + (xy -0.437073 -1.566846) + (xy -0.437662 -1.517171) + (xy -0.438273 -1.464052) + (xy -0.438863 -1.411174) + (xy -0.439527 -1.352592) + (xy -0.440228 -1.294117) + (xy -0.440947 -1.237058) + (xy -0.441668 -1.182722) + (xy -0.44237 -1.132419) + (xy -0.443037 -1.087457) + (xy -0.44365 -1.049144) + (xy -0.444192 -1.018788) + (xy -0.444511 -1.0033) + (xy -0.445039 -0.976986) + (xy -0.445646 -0.942075) + (xy -0.446308 -0.900131) + (xy -0.447004 -0.852716) + (xy -0.44771 -0.801393) + (xy -0.448404 -0.747724) + (xy -0.449065 -0.693273) + (xy -0.449554 -0.65024) + (xy -0.450183 -0.594789) + (xy -0.450868 -0.537629) + (xy -0.451585 -0.480536) + (xy -0.452312 -0.425285) + (xy -0.453023 -0.373652) + (xy -0.453695 -0.327415) + (xy -0.454305 -0.288347) + (xy -0.454673 -0.2667) + (xy -0.455263 -0.23181) + (xy -0.455936 -0.188751) + (xy -0.456665 -0.139512) + (xy -0.457422 -0.086083) + (xy -0.458179 -0.030454) + (xy -0.458907 0.025387) + (xy -0.459579 0.079448) + (xy -0.459723 0.09144) + (xy -0.460383 0.145383) + (xy -0.460472 0.1524) + (xy 0.160985 0.1524) + (xy 0.892317 0.1524) + (xy 0.880654 0.23749) + (xy 0.876557 0.267411) + (xy 0.872746 0.295305) + (xy 0.86952 0.318969) + (xy 0.86718 0.3362) + (xy 0.866277 0.3429) + (xy 0.865199 0.350909) + (xy 0.864132 0.358531) + (xy 0.862872 0.36703) + (xy 0.861217 0.37767) + (xy 0.858963 0.391714) + (xy 0.855908 0.410426) + (xy 0.851846 0.43507) + (xy 0.846576 0.466909) + (xy 0.839894 0.507207) + (xy 0.838077 0.51816) + (xy 0.812629 0.661953) + (xy 0.785494 0.796365) + (xy 0.756478 0.922067) + (xy 0.725389 1.039729) + (xy 0.692033 1.150021) + (xy 0.656216 1.253613) + (xy 0.617746 1.351173) + (xy 0.57643 1.443373) + (xy 0.563594 1.469798) + (xy 0.536785 1.524) + (xy 0.16764 1.524) + (xy 0.167591 1.34747) + (xy 0.167549 1.316501) + (xy 0.167442 1.276404) + (xy 0.167274 1.22821) + (xy 0.167051 1.172951) + (xy 0.166776 1.111658) + (xy 0.166457 1.045364) + (xy 0.166096 0.975099) + (xy 0.1657 0.901895) + (xy 0.165274 0.826784) + (xy 0.164822 0.750797) + (xy 0.164349 0.674965) + (xy 0.164264 0.66167) + (xy 0.160985 0.1524) + (xy -0.460472 0.1524) + (xy -0.461108 0.202051) + (xy -0.461869 0.259362) + (xy -0.462637 0.315235) + (xy -0.463384 0.367586) + (xy -0.46408 0.414335) + (xy -0.464698 0.453399) + (xy -0.464804 0.45974) + (xy -0.465395 0.496711) + (xy -0.466068 0.541811) + (xy -0.466794 0.593009) + (xy -0.467548 0.648274) + (xy -0.4683 0.705577) + (xy -0.469023 0.762887) + (xy -0.469691 0.818173) + (xy -0.469865 0.83312) + (xy -0.470507 0.886631) + (xy -0.471213 0.94203) + (xy -0.471956 0.997417) + (xy -0.47271 1.050894) + (xy -0.473446 1.100561) + (xy -0.474139 1.144519) + (xy -0.474761 1.18087) + (xy -0.474954 1.19126) + (xy -0.475503 1.222669) + (xy -0.476126 1.262566) + (xy -0.476799 1.309282) + (xy -0.4775 1.361145) + (xy -0.478209 1.416486) + (xy -0.478901 1.473633) + (xy -0.479557 1.530917) + (xy -0.480082 1.57988) + (xy -0.480682 1.634304) + (xy -0.481348 1.688734) + (xy -0.482058 1.741718) + (xy -0.482789 1.791804) + (xy -0.48352 1.837542) + (xy -0.484228 1.87748) + (xy -0.484891 1.910165) + (xy -0.485488 1.934148) + (xy -0.485489 1.934211) + (xy -0.488182 2.02692) + (xy 0.993455 2.02692) + (xy 1.034934 1.95199) + ) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 55bcc521-d227-4823-8a36-dce754ee4dd3)) + (fp_poly (pts + (xy -0.835063 1.51765) + (xy -0.835374 1.462396) + (xy -0.835707 1.397734) + (xy -0.836058 1.32442) + (xy -0.836425 1.243206) + (xy -0.836806 1.154845) + (xy -0.837197 1.060091) + (xy -0.837595 0.959698) + (xy -0.837998 0.854419) + (xy -0.838403 0.745007) + (xy -0.838807 0.632215) + (xy -0.839208 0.516798) + (xy -0.839602 0.399508) + (xy -0.839987 0.281098) + (xy -0.84036 0.162323) + (xy -0.840718 0.043936) + (xy -0.841058 -0.07331) + (xy -0.841286 -0.15494) + (xy -0.841592 -0.265594) + (xy -0.8419 -0.374994) + (xy -0.842208 -0.482592) + (xy -0.842515 -0.587843) + (xy -0.842817 -0.690197) + (xy -0.843115 -0.789109) + (xy -0.843405 -0.884031) + (xy -0.843687 -0.974416) + (xy -0.843958 -1.059716) + (xy -0.844217 -1.139386) + (xy -0.844462 -1.212877) + (xy -0.844691 -1.279642) + (xy -0.844902 -1.339135) + (xy -0.845095 -1.390808) + (xy -0.845266 -1.434114) + (xy -0.845415 -1.468506) + (xy -0.845539 -1.493437) + (xy -0.845569 -1.4986) + (xy -0.845882 -1.551559) + (xy -0.846221 -1.611079) + (xy -0.846568 -1.673898) + (xy -0.846906 -1.73675) + (xy -0.847216 -1.796374) + (xy -0.847481 -1.849505) + (xy -0.84751 -1.85547) + (xy -0.84836 -2.032) + (xy -1.507362 -2.032) + (xy -1.510286 -2.00533) + (xy -1.511157 -1.992508) + (xy -1.511974 -1.971391) + (xy -1.512692 -1.943846) + (xy -1.513267 -1.911738) + (xy -1.513654 -1.876931) + (xy -1.513757 -1.860362) + (xy -1.513992 -1.826472) + (xy -1.514355 -1.79584) + (xy -1.514814 -1.769974) + (xy -1.515341 -1.750384) + (xy -1.515904 -1.738578) + (xy -1.516233 -1.735902) + (xy -1.516702 -1.729683) + (xy -1.517269 -1.714361) + (xy -1.517912 -1.690993) + (xy -1.518607 -1.660637) + (xy -1.519331 -1.624349) + (xy -1.520062 -1.583185) + (xy -1.520777 -1.538203) + (xy -1.521273 -1.50368) + (xy -1.521988 -1.453903) + (xy -1.522747 -1.404929) + (xy -1.523523 -1.358196) + (xy -1.524292 -1.315143) + (xy -1.525026 -1.277206) + (xy -1.525699 -1.245826) + (xy -1.526286 -1.222439) + (xy -1.526541 -1.21412) + (xy -1.527142 -1.193567) + (xy -1.52785 -1.1646) + (xy -1.528628 -1.128961) + (xy -1.529443 -1.088395) + (xy -1.530258 -1.044644) + (xy -1.531037 -0.999454) + (xy -1.531506 -0.97028) + (xy -1.53226 -0.923845) + (xy -1.533085 -0.876631) + (xy -1.533941 -0.830607) + (xy -1.53479 -0.787741) + (xy -1.535594 -0.750002) + (xy -1.536314 -0.719359) + (xy -1.536664 -0.70612) + (xy -1.537381 -0.678446) + (xy -1.538213 -0.642913) + (xy -1.539111 -0.60182) + (xy -1.540025 -0.557466) + (xy -1.540907 -0.51215) + (xy -1.541709 -0.468172) + (xy -1.541723 -0.46736) + (xy -1.542357 -0.431338) + (xy -1.542964 -0.397517) + (xy -1.543565 -0.364735) + (xy -1.544185 -0.331828) + (xy -1.544847 -0.297631) + (xy -1.545574 -0.260982) + (xy -1.546389 -0.220717) + (xy -1.547316 -0.175671) + (xy -1.548378 -0.124683) + (xy -1.549597 -0.066587) + (xy -1.550998 -0.00022) + (xy -1.551971 0.04572) + (xy -1.552755 0.084036) + (xy -1.553646 0.12962) + (xy -1.554588 0.179585) + (xy -1.555528 0.231041) + (xy -1.556413 0.281098) + (xy -1.557075 0.32004) + (xy -1.557844 0.364341) + (xy -1.558701 0.410358) + (xy -1.559598 0.455712) + (xy -1.560486 0.498026) + (xy -1.561316 0.534923) + (xy -1.562038 0.56388) + (xy -1.562761 0.592815) + (xy -1.563598 0.629572) + (xy -1.564498 0.671816) + (xy -1.565415 0.717209) + (xy -1.5663 0.763416) + (xy -1.567104 0.808101) + (xy -1.567141 0.81026) + (xy -1.567953 0.856124) + (xy -1.568852 0.904814) + (xy -1.569786 0.953714) + (xy -1.570705 1.000209) + (xy -1.571558 1.04168) + (xy -1.57227 1.07442) + (xy -1.573043 1.109737) + (xy -1.573939 1.152379) + (xy -1.574898 1.199515) + (xy -1.575864 1.248312) + (xy -1.57678 1.295938) + (xy -1.577387 1.32842) + (xy -1.578227 1.373394) + (xy -1.579154 1.421612) + (xy -1.58011 1.470242) + (xy -1.58104 1.516451) + (xy -1.581888 1.557407) + (xy -1.582424 1.58242) + (xy -1.583132 1.615431) + (xy -1.583984 1.656186) + (xy -1.58493 1.702272) + (xy -1.585922 1.751274) + (xy -1.586911 1.80078) + (xy -1.587847 1.848375) + (xy -1.588034 1.858011) + (xy -1.591312 2.02692) + (xy -0.832033 2.02692) + (xy -0.835063 1.51765) + ) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp a2958243-c44e-45b8-b2f4-9f2aaacaa643)) + ) + + (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "B.Cu") + (tedit 5A7A67D2) (tstamp 00000000-0000-0000-0000-000060a834ce) + (at 72.898 57.404 180) + (descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf") + (tags "SPST button tactile switch") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060aad571") + (attr smd) + (fp_text reference "SW1" (at 4.826 1.778) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp e85bc8be-d8c4-43d6-a6d9-54d4d72c532c) + ) + (fp_text value "SW_Push" (at 0 -3) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 85763ca5-5f51-4497-9ba6-83242d7082b8) + ) + (fp_text user "${REFERENCE}" (at 0 2.6) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp c6e28b7c-e3e3-4549-882f-35a1e2e57326) + ) + (fp_line (start 3.06 1.85) (end 3.06 -1.85) (layer "B.SilkS") (width 0.12) (tstamp 2c70567a-0b06-4fcc-82ad-568be1a7991b)) + (fp_line (start 3.06 -1.85) (end -3.06 -1.85) (layer "B.SilkS") (width 0.12) (tstamp 3ac85d39-3f71-4e28-bbd4-555af21a641d)) + (fp_line (start -3.06 1.85) (end 3.06 1.85) (layer "B.SilkS") (width 0.12) (tstamp 8dd8df2e-67b7-4f60-a92c-91eb7e6d47e6)) + (fp_line (start -3.06 -1.85) (end -3.06 1.85) (layer "B.SilkS") (width 0.12) (tstamp fcf69cf7-c099-4c30-9c2b-caa05911a005)) + (fp_line (start -4.9 2.05) (end 4.9 2.05) (layer "B.CrtYd") (width 0.05) (tstamp 8fe7abd2-8b47-40ab-b7b0-ee15804cd141)) + (fp_line (start 4.9 -2.05) (end -4.9 -2.05) (layer "B.CrtYd") (width 0.05) (tstamp ace6ffd9-25d5-4f77-866c-8f02a2e9d066)) + (fp_line (start 4.9 2.05) (end 4.9 -2.05) (layer "B.CrtYd") (width 0.05) (tstamp c4beeace-3139-417b-97da-068063499968)) + (fp_line (start -4.9 -2.05) (end -4.9 2.05) (layer "B.CrtYd") (width 0.05) (tstamp d72a5b85-0bbd-418a-9e77-c3401adedaf0)) + (fp_line (start -1.75 1) (end 1.75 1) (layer "B.Fab") (width 0.1) (tstamp 00c71716-0ea4-49a9-90f8-29590565c217)) + (fp_line (start -1.75 -1) (end -1.75 1) (layer "B.Fab") (width 0.1) (tstamp 2320085f-8f79-455d-9c78-bf76b445c1ea)) + (fp_line (start 1.5 0.8) (end 1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp 3619f401-1237-4674-a33a-91312a305f2e)) + (fp_line (start 1.75 1) (end 1.75 -1) (layer "B.Fab") (width 0.1) (tstamp 4cf6b1bb-7dba-4a04-8877-6e4bbdc4cb31)) + (fp_line (start 3 1.8) (end 3 -1.8) (layer "B.Fab") (width 0.1) (tstamp 53e635ef-83c8-4c12-bcf5-fe7d14c86556)) + (fp_line (start -3 1.8) (end -3 -1.8) (layer "B.Fab") (width 0.1) (tstamp 57f80fe1-eeb7-47c0-8fcd-55d87f9f7d28)) + (fp_line (start -3 1.8) (end 3 1.8) (layer "B.Fab") (width 0.1) (tstamp 5d7ff304-b845-426a-91c9-a7ef360c6e9e)) + (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp 6a4a6782-e6a4-4f94-9718-5bb80dc280ac)) + (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer "B.Fab") (width 0.1) (tstamp 986c61af-3e28-4dd9-a7b5-2f930b8c411f)) + (fp_line (start -3 -1.8) (end 3 -1.8) (layer "B.Fab") (width 0.1) (tstamp a8942a43-f8ef-46bf-9ec6-5ebe5f53f4ca)) + (fp_line (start -1.5 0.8) (end -1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp ab224831-f23e-4ebf-bcab-c458793c863b)) + (fp_line (start 1.75 -1) (end -1.75 -1) (layer "B.Fab") (width 0.1) (tstamp e0308e34-31e2-4e01-b8e8-2a07484a0e38)) + (pad "1" smd rect (at -3.9 0 180) (size 1.5 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 4 "nRST") (pinfunction "1") (pintype "passive") (tstamp de9ed2c5-2eea-4361-aaae-a7c3e3fc4a4a)) + (pad "2" smd rect (at 3.9 0 180) (size 1.5 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 5569a103-1154-4ef3-96e4-ae0bf5aa0a73)) + (model "${KIPRJMOD}/packages3D/SW_SPST_CK_RS282G05A3.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "B.Cu") + (tedit 5A7A67D2) (tstamp 00000000-0000-0000-0000-000060a834e9) + (at 68.326 34.29) + (descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf") + (tags "SPST button tactile switch") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060b5c01c") + (attr smd) + (fp_text reference "SW2" (at -1.524 2.54) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 11045d3b-ac3a-4791-8df7-515117f29927) + ) + (fp_text value "SW_Push" (at 0 -3) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp b6cb6ba3-41a7-41c1-af0e-9ccabf9c7972) + ) + (fp_text user "${REFERENCE}" (at 0 2.6) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 2258211c-30c5-4b6c-b95f-236dd851657c) + ) + (fp_line (start -3.06 -1.85) (end -3.06 1.85) (layer "B.SilkS") (width 0.12) (tstamp 267bef01-ede0-401a-b0b7-7bca4c7b7202)) + (fp_line (start 3.06 1.85) (end 3.06 -1.85) (layer "B.SilkS") (width 0.12) (tstamp 4f9cb707-741b-454d-8759-bd1bef8516e9)) + (fp_line (start -3.06 1.85) (end 3.06 1.85) (layer "B.SilkS") (width 0.12) (tstamp 83914351-6a84-4b0a-96c6-497fac354355)) + (fp_line (start 3.06 -1.85) (end -3.06 -1.85) (layer "B.SilkS") (width 0.12) (tstamp d533358e-eaa6-448b-b1a2-3556c9a25289)) + (fp_line (start -4.9 2.05) (end 4.9 2.05) (layer "B.CrtYd") (width 0.05) (tstamp 0a5584a3-9c35-4de7-b5e8-613c79f4ff94)) + (fp_line (start 4.9 2.05) (end 4.9 -2.05) (layer "B.CrtYd") (width 0.05) (tstamp b43977d9-1b12-474c-a657-b8b9ec1afdea)) + (fp_line (start -4.9 -2.05) (end -4.9 2.05) (layer "B.CrtYd") (width 0.05) (tstamp f3cd5f3c-a974-49f5-8762-cc4d91b27fd1)) + (fp_line (start 4.9 -2.05) (end -4.9 -2.05) (layer "B.CrtYd") (width 0.05) (tstamp f4a5fe4c-8169-4568-98f4-cd06f38deb5c)) + (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp 09c935c8-d435-4444-8548-dec516324dde)) + (fp_line (start 1.75 1) (end 1.75 -1) (layer "B.Fab") (width 0.1) (tstamp 34efb839-a16c-46d4-a5b8-bdfedeabb986)) + (fp_line (start -3 1.8) (end 3 1.8) (layer "B.Fab") (width 0.1) (tstamp 376596ed-8562-4e38-b840-993bb880951e)) + (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer "B.Fab") (width 0.1) (tstamp 651735bf-015f-432a-9935-425e0d2c9740)) + (fp_line (start -1.5 0.8) (end -1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp 69e5ae57-3b38-4e06-833b-4bb995f2b3c1)) + (fp_line (start -1.75 1) (end 1.75 1) (layer "B.Fab") (width 0.1) (tstamp 9af433f3-581c-44db-bba9-97d808ca2b02)) + (fp_line (start -3 -1.8) (end 3 -1.8) (layer "B.Fab") (width 0.1) (tstamp a256727e-15fb-488a-b8ca-6663f4f02cd5)) + (fp_line (start 1.5 0.8) (end 1.5 -0.8) (layer "B.Fab") (width 0.1) (tstamp b0e580fd-27aa-4fdc-9b91-3e6c8beb82da)) + (fp_line (start 1.75 -1) (end -1.75 -1) (layer "B.Fab") (width 0.1) (tstamp cbda7997-8318-4231-b296-7a7d42cd3b51)) + (fp_line (start 3 1.8) (end 3 -1.8) (layer "B.Fab") (width 0.1) (tstamp e089a95a-aeaa-4a85-b1f2-d8b9da7e4950)) + (fp_line (start -1.75 -1) (end -1.75 1) (layer "B.Fab") (width 0.1) (tstamp ed25cf77-4b9b-4550-aa68-ad7dd4c6b305)) + (fp_line (start -3 1.8) (end -3 -1.8) (layer "B.Fab") (width 0.1) (tstamp ff3a17b7-6edc-441d-8e00-1e9710e7ccc1)) + (pad "1" smd rect (at -3.9 0) (size 1.5 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 25 "FLSH") (pinfunction "1") (pintype "passive") (tstamp 1e30e30c-2c6e-4d40-89ff-2c5cff980359)) + (pad "2" smd rect (at 3.9 0) (size 1.5 1.5) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 6c4d28b8-2625-4635-b391-8b7ebd81fb0b)) + (model "${KIPRJMOD}/packages3D/SW_SPST_CK_RS282G05A3.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "B.Cu") + (tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000060a8f9f4) + (at 40.64 60.96) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060c2cb6f") + (attr through_hole) + (fp_text reference "J15" (at 0.762 -9.652) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp c3d2460d-d3b8-4290-a666-c636d2cb8d11) + ) + (fp_text value "Conn_01x04_Male" (at 0 -9.95) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp df7e3025-042b-4b38-a4c2-609c63fbdbf0) + ) + (fp_text user "${REFERENCE}" (at 0 -3.81 -90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 13da970a-1205-41dd-bc82-4e08961154e4) + ) + (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer "B.SilkS") (width 0.12) (tstamp 1c39456f-ad8e-414f-a0c5-96395702b094)) + (fp_line (start -1.33 1.33) (end 0 1.33) (layer "B.SilkS") (width 0.12) (tstamp 24b52b0a-67f7-46c5-b3ff-413b94c988ae)) + (fp_line (start -1.33 0) (end -1.33 1.33) (layer "B.SilkS") (width 0.12) (tstamp 28682c4a-7ef8-49bb-889e-f2a093504c9b)) + (fp_line (start -1.33 -8.95) (end 1.33 -8.95) (layer "B.SilkS") (width 0.12) (tstamp 88a9c842-3777-4c1d-9aa4-8d894458cd78)) + (fp_line (start 1.33 -1.27) (end 1.33 -8.95) (layer "B.SilkS") (width 0.12) (tstamp aab0fc28-3238-463c-a897-e83d7b78eb60)) + (fp_line (start -1.33 -1.27) (end -1.33 -8.95) (layer "B.SilkS") (width 0.12) (tstamp c1b6ec29-1b51-4733-8d81-2d7503d07de3)) + (fp_line (start 1.8 -9.4) (end 1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 0f312c8e-105b-42e2-895c-ff6d2024d294)) + (fp_line (start -1.8 1.8) (end -1.8 -9.4) (layer "B.CrtYd") (width 0.05) (tstamp a3e7a2d4-4248-4989-9038-ef00fcb2d6a7)) + (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp abb3e7d6-d268-43fb-bdef-f067dd800888)) + (fp_line (start -1.8 -9.4) (end 1.8 -9.4) (layer "B.CrtYd") (width 0.05) (tstamp feefd274-c84e-4400-b433-cc1ed85317c4)) + (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer "B.Fab") (width 0.1) (tstamp 1afb6aa7-f6fe-4780-a997-29df47cc931d)) + (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer "B.Fab") (width 0.1) (tstamp 59a5049b-4ebe-4490-b22e-d18b08546595)) + (fp_line (start 1.27 1.27) (end 1.27 -8.89) (layer "B.Fab") (width 0.1) (tstamp 6bf360d2-a076-4316-8335-2cda4504b52f)) + (fp_line (start 1.27 -8.89) (end -1.27 -8.89) (layer "B.Fab") (width 0.1) (tstamp c2a8a014-955a-468a-8336-34b290c8be45)) + (fp_line (start -1.27 -8.89) (end -1.27 0.635) (layer "B.Fab") (width 0.1) (tstamp ea17b4a1-2d4f-4f6b-9a33-a85e0f1f71f1)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e72218f6-3138-4293-ab80-97e6a00824de)) + (pad "2" thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 13 "RXD0") (pinfunction "Pin_2") (pintype "passive") (tstamp 6931294f-2373-4ce3-975f-60f4716382ce)) + (pad "3" thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 12 "TXD0") (pinfunction "Pin_3") (pintype "passive") (tstamp d7d41ba8-de2f-41b1-a277-4d106e04bd9d)) + (pad "4" thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 11 "VOUT") (pinfunction "Pin_4") (pintype "passive") (tstamp 231bc8ed-f53e-4173-a0c3-0aeec19c7fa6)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" locked (layer "B.Cu") + (tedit 59FF03AB) (tstamp 00000000-0000-0000-0000-000060ae33da) + (at 55.88 71.12 180) + (descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2") + (tags "terminal block bornier2") + (property "LCSC" "-") + (property "Sheetfile" "power.kicad_sch") + (property "Sheetname" "Power") + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006092962e") + (attr through_hole) + (fp_text reference "J12" (at 2.54 5.08) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp ae17f3bf-b8fb-4ef6-af45-e13ce63a018f) + ) + (fp_text value "Conn_01x02_Male" (at 2.54 -5.08) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp c57f021a-6e52-48c3-9ce0-d3861ef66738) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 84c67c9d-9871-4c76-b663-cd5a5468114b) + ) + (fp_line (start 7.62 -2.54) (end -2.54 -2.54) (layer "B.SilkS") (width 0.12) (tstamp 03493e3c-50fd-4811-b880-c07839705441)) + (fp_line (start 7.62 3.81) (end -2.54 3.81) (layer "B.SilkS") (width 0.12) (tstamp 05016b2b-de0e-485b-965c-3eb50a3357ce)) + (fp_line (start 7.62 -3.81) (end 7.62 3.81) (layer "B.SilkS") (width 0.12) (tstamp 7a96622c-770b-42fe-9839-3bfebf59f753)) + (fp_line (start -2.54 3.81) (end -2.54 -3.81) (layer "B.SilkS") (width 0.12) (tstamp 811cbcee-020e-46bb-b797-92de32eccb63)) + (fp_line (start -2.54 -3.81) (end 7.62 -3.81) (layer "B.SilkS") (width 0.12) (tstamp bcc27d53-8919-4c52-95ee-ef8230eafbdf)) + (fp_line (start 7.79 -4) (end -2.71 -4) (layer "B.CrtYd") (width 0.05) (tstamp 6b113ba7-3d4f-410f-95ce-d48f3da4678f)) + (fp_line (start -2.71 4) (end 7.79 4) (layer "B.CrtYd") (width 0.05) (tstamp 7c1527e5-7334-4f5d-a859-5b3467f91de8)) + (fp_line (start 7.79 -4) (end 7.79 4) (layer "B.CrtYd") (width 0.05) (tstamp 8a30bd5f-495e-4e5c-b99a-9f79379f14f2)) + (fp_line (start -2.71 4) (end -2.71 -4) (layer "B.CrtYd") (width 0.05) (tstamp c59ef655-4f57-4c9a-8737-e3e9b4f081f2)) + (fp_line (start -2.41 -2.55) (end 7.49 -2.55) (layer "B.Fab") (width 0.1) (tstamp 0776129c-b972-4b41-ae1b-0f9de0a4dd27)) + (fp_line (start -2.46 3.75) (end -2.46 -3.75) (layer "B.Fab") (width 0.1) (tstamp 23fbff5d-0824-4643-b4b6-df56dbea491e)) + (fp_line (start -2.46 -3.75) (end 7.54 -3.75) (layer "B.Fab") (width 0.1) (tstamp 26ec76fb-49d9-4f2f-9787-cf1ee697aaff)) + (fp_line (start 7.54 3.75) (end -2.46 3.75) (layer "B.Fab") (width 0.1) (tstamp 79c3c5bb-78df-441a-bde0-30dbb3617184)) + (fp_line (start 7.54 -3.75) (end 7.54 3.75) (layer "B.Fab") (width 0.1) (tstamp e4e09e05-ce39-4379-a208-4a75b9e6c840)) + (pad "1" thru_hole rect locked (at 0 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c54b3ba8-1a78-4f2e-aacb-8959b15ece75)) + (pad "2" thru_hole circle locked (at 5.08 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask) + (net 10 "+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp fb2e4998-cd66-4d2c-9e21-e65be1b1e10b)) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "B.Cu") + (tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000060b161de) + (at 40.64 48.26) + (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x06 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-000060b28a8c") + (attr through_hole) + (fp_text reference "J13" (at 0 2.33) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 74b9cf58-54b2-4453-a500-c6fa22c5b836) + ) + (fp_text value "Conn_01x06_Male" (at 0 -15.03) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp de43a096-d439-4330-83c7-a28d249db585) + ) + (fp_text user "${REFERENCE}" (at 0 -6.35 -90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 101c7efe-3fb0-40e7-bdca-866ad297366c) + ) + (fp_line (start -1.33 -14.03) (end 1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp 23e88e43-2fee-428d-96be-d3c5c7579c54)) + (fp_line (start -1.33 -1.27) (end -1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp 32bab161-2dea-42be-b89c-40f24d7296c0)) + (fp_line (start 1.33 -1.27) (end 1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp a3b44923-6d28-418a-98a3-76dbbc209c1c)) + (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer "B.SilkS") (width 0.12) (tstamp abb4c221-20a8-41ad-8629-5cd5d096fec9)) + (fp_line (start -1.33 0) (end -1.33 1.33) (layer "B.SilkS") (width 0.12) (tstamp ebd666de-d5e4-4865-88cd-63cc86e013a4)) + (fp_line (start -1.33 1.33) (end 0 1.33) (layer "B.SilkS") (width 0.12) (tstamp ef51ff02-0a46-441e-8646-c31e6647218f)) + (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 39659d3f-a522-47fc-b01a-d96c8ae233b3)) + (fp_line (start -1.8 -14.5) (end 1.8 -14.5) (layer "B.CrtYd") (width 0.05) (tstamp 3ebf0ee1-cc29-430d-b27d-9125cf2b6e71)) + (fp_line (start 1.8 -14.5) (end 1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp ad7d8afb-6b2f-4057-aecf-22e6cce1119d)) + (fp_line (start -1.8 1.8) (end -1.8 -14.5) (layer "B.CrtYd") (width 0.05) (tstamp b40264d6-8914-45b3-8d8f-dc4030fd7961)) + (fp_line (start 1.27 1.27) (end 1.27 -13.97) (layer "B.Fab") (width 0.1) (tstamp 0fcf1000-0c8e-4513-867e-9828ad8f1f82)) + (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer "B.Fab") (width 0.1) (tstamp 1ee1ee88-f8d1-437b-8a20-3b33af14b831)) + (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer "B.Fab") (width 0.1) (tstamp 8c79fe69-7e89-47d2-82d5-3e9a84de6b67)) + (fp_line (start -1.27 -13.97) (end -1.27 0.635) (layer "B.Fab") (width 0.1) (tstamp a0f536d7-8ae6-4b36-8ef2-d4819ea1da18)) + (fp_line (start 1.27 -13.97) (end -1.27 -13.97) (layer "B.Fab") (width 0.1) (tstamp f90134fb-20d7-4540-99fa-f6ba1a96f92d)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp abb3f532-a193-4d02-baf2-3ad049075a54)) + (pad "2" thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 15 "MOSI") (pinfunction "Pin_2") (pintype "passive") (tstamp c3152e61-47c7-4ade-bcae-32968f59133a)) + (pad "3" thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 14 "SCLK") (pinfunction "Pin_3") (pintype "passive") (tstamp 7d1cf79d-e97c-4c6c-90c6-d3d53db073d3)) + (pad "4" thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 3 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 5c05f5dc-d448-491c-bf42-3a4cdce9403f)) + (pad "5" thru_hole oval (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 69 "unconnected-(J13-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 6877f5ca-f307-4c3c-aece-34ce6f0517bd)) + (pad "6" thru_hole oval (at 0 -12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 11 "VOUT") (pinfunction "Pin_6") (pintype "passive") (tstamp c6661712-750c-49fd-bae5-322482641b3d)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x06_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "stock:micro_usb" (layer "B.Cu") + (tedit 60A908A0) (tstamp 00000000-0000-0000-0000-000060b188c6) + (at 59.455 27.178) + (property "LCSC" "C40943") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/00000000-0000-0000-0000-0000607ae779") + (attr through_hole) + (fp_text reference "J1" (at 5.588 2.54 270) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 14d7bc06-26d5-4aab-8be0-70495e7f40c5) + ) + (fp_text value "USB_B_Micro" (at 0 -1.016) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 617c1fc7-3144-4c37-8dd7-f252dc379eb0) + ) + (fp_line (start -4.572 6.096) (end -3.048 6.096) (layer "B.SilkS") (width 0.12) (tstamp 767d95fb-eafe-4056-870b-1518c82f3807)) + (fp_line (start 4.572 4.572) (end 4.572 6.096) (layer "B.SilkS") (width 0.12) (tstamp 8b826d40-f872-4776-9223-d7570e801036)) + (fp_line (start -4.572 4.572) (end -4.572 6.096) (layer "B.SilkS") (width 0.12) (tstamp de681053-83fd-43bf-86fe-2c47e01c97e7)) + (fp_line (start 4.572 6.096) (end 3.048 6.096) (layer "B.SilkS") (width 0.12) (tstamp fb61352e-37e7-4561-8985-9611741964ff)) + (fp_line (start 5.08 0) (end -5.08 0) (layer "B.Fab") (width 0.12) (tstamp 734dc1c0-ef06-4d4f-8a1b-8ae51550b4da)) + (pad "" thru_hole circle locked (at -2 3.275) (size 0.65 0.65) (drill 0.65) (layers *.Cu) (tstamp 4d6572a3-9224-4f05-b89b-239625b68587)) + (pad "" thru_hole circle locked (at 2 3.275) (size 0.65 0.65) (drill 0.65) (layers *.Cu) (tstamp d41ef628-6770-4a68-95ba-a2075f67af76)) + (pad "1" smd rect locked (at -1.3 4.2) (size 0.4 1.925) (layers "B.Cu" "B.Paste" "B.Mask") + (net 5 "+5V") (pinfunction "VBUS") (pintype "power_out") (tstamp 6e10de82-e23c-4903-b1f6-c7b17229aab8)) + (pad "2" smd rect locked (at -0.65 4.2) (size 0.4 1.925) (layers "B.Cu" "B.Paste" "B.Mask") + (net 72 "Net-(J1-Pad2)") (pinfunction "D-") (pintype "bidirectional") (tstamp 791fc740-9b56-45f2-a38e-f760e5fc7cd2)) + (pad "3" smd rect locked (at 0 4.2) (size 0.4 1.925) (layers "B.Cu" "B.Paste" "B.Mask") + (net 71 "Net-(J1-Pad3)") (pinfunction "D+") (pintype "bidirectional") (tstamp 5fb756ca-5657-46f9-8fd4-1d7dbc125d67)) + (pad "4" smd rect locked (at 0.65 4.2) (size 0.4 1.925) (layers "B.Cu" "B.Paste" "B.Mask") + (net 70 "unconnected-(J1-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (tstamp a8d7b4cc-0e47-4469-b14c-45869611b33a)) + (pad "5" smd rect locked (at 1.3 4.2) (size 0.4 1.925) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp c6550193-a3da-452a-8049-b503f1a0a9cc)) + (pad "6" thru_hole oval locked (at 3.575 1.15) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 622e3d40-6dff-4f9a-9afe-91c549d4491c)) + (pad "6" thru_hole oval locked (at -3.575 1.15) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 690c3da0-025d-4757-9610-570f59ee59e1)) + (pad "6" thru_hole oval locked (at 3.575 4.6) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a5d03462-6fed-46a2-b9ff-d41363606b45)) + (pad "6" thru_hole oval locked (at -3.575 4.6) (size 1.05 1.85) (drill oval 0.45 1.25) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d8533322-31c8-472b-9d6c-b8460cddf037)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x06_P2.54mm_Vertical.wrl" hide + (offset (xyz 0 3.5 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + (model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_Micro-B_Molex_47346-0001.step" + (offset (xyz 0 2.5 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "LED_SMD:LED_RGB_5050-6" (layer "B.Cu") + (tedit 59155824) (tstamp 4685913f-f222-4eac-872d-3c82dc610b7c) + (at 55.88 51 90) + (descr "http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf") + (tags "RGB LED 5050-6") + (property "LCSC" "-") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/a4dbc587-0978-4b74-b626-ca0d670427eb") + (attr smd) + (fp_text reference "D12" (at 0 3.5 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 17c0352f-e896-430a-b539-fd9e60bd34ee) + ) + (fp_text value "LED_RGB" (at 0 -3.3 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp e1ed3169-20c2-4713-a18c-740cdbda5af4) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") + (effects (font (size 0.6 0.6) (thickness 0.06)) (justify mirror)) + (tstamp 9b02eea2-57e0-486e-93f3-301a3bcacce7) + ) + (fp_line (start 2.5 -2.7) (end -2.5 -2.7) (layer "B.SilkS") (width 0.12) (tstamp 2683bb9a-cab7-48da-b838-021f74ea5e68)) + (fp_line (start -3.6 1.6) (end -3.6 2.7) (layer "B.SilkS") (width 0.12) (tstamp 521a4c1e-71c5-473b-9a7e-e066c618cb50)) + (fp_line (start -3.6 2.7) (end 2.5 2.7) (layer "B.SilkS") (width 0.12) (tstamp d899165b-2d44-4b81-a43e-b138de20e336)) + (fp_line (start -3.65 2.75) (end -3.65 -2.75) (layer "B.CrtYd") (width 0.05) (tstamp 54454588-1203-4adc-b05c-bf89744333d8)) + (fp_line (start 3.65 -2.75) (end 3.65 2.75) (layer "B.CrtYd") (width 0.05) (tstamp 9a1a6e5e-010a-4737-aa0f-76231d466574)) + (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer "B.CrtYd") (width 0.05) (tstamp ccdf08b2-92b7-40d2-a328-05b03e5155e5)) + (fp_line (start 3.65 2.75) (end -3.65 2.75) (layer "B.CrtYd") (width 0.05) (tstamp d76e75c9-3a91-4973-b278-16f9fa456870)) + (fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer "B.Fab") (width 0.1) (tstamp 054a0c7a-5711-4767-bd36-74c46fac11e4)) + (fp_line (start -2.5 2.5) (end -2.5 -2.5) (layer "B.Fab") (width 0.1) (tstamp 08b4da8e-0d87-46db-ae3e-5be046cb79df)) + (fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "B.Fab") (width 0.1) (tstamp 19229a49-a0d9-460c-9701-0b7ce6ef08a8)) + (fp_line (start -2.5 1.9) (end -1.9 2.5) (layer "B.Fab") (width 0.1) (tstamp ecb25317-7c2b-465e-91f3-ea1cc0425b62)) + (fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "B.Fab") (width 0.1) (tstamp f2637829-ec36-4627-bb12-8dc3bca65e98)) + (fp_circle (center 0 0) (end 0 1.9) (layer "B.Fab") (width 0.1) (fill none) (tstamp aa1319c7-711d-4d19-8e9f-d6ece9fd07fb)) + (pad "1" smd rect (at -2.4 1.7) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "RK") (pintype "passive") (tstamp c5200346-6288-49b7-b105-ef55d4f3b54d)) + (pad "2" smd rect (at -2.4 0) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "GK") (pintype "passive") (tstamp c88b2ecf-23f3-41aa-bee3-2036db90329a)) + (pad "3" smd rect (at -2.4 -1.7) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "GND") (pinfunction "BK") (pintype "passive") (tstamp fcb9e0cd-6fd5-4313-8ec2-6ea79d3ef403)) + (pad "4" smd rect (at 2.4 -1.7) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 6 "Net-(D12-Pad4)") (pinfunction "BA") (pintype "passive") (tstamp 32eb1dd8-cb72-42e0-9ecb-de3749b6776e)) + (pad "5" smd rect (at 2.4 0) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 7 "Net-(D12-Pad5)") (pinfunction "GA") (pintype "passive") (tstamp 947cc52a-bc19-491e-bb6c-091ab8a2732b)) + (pad "6" smd rect (at 2.4 1.7) (size 1.1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 22 "Net-(D12-Pad6)") (pinfunction "RA") (pintype "passive") (tstamp bc6c893f-1528-4d25-8250-2f0ffe952bf6)) + (model "${KIPRJMOD}/packages3D/LED_RGB_5050-6.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "B.Cu") + (tedit 59FED5CC) (tstamp 5b466b92-ba8b-448b-b9a8-e592f2ada27c) + (at 48.26 33.02 -90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "onboard_bus_node.kicad_sch") + (property "Sheetname" "Ext-IO") + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/ea494141-cd26-4493-9a48-d85bea2017dd") + (attr through_hole) + (fp_text reference "J8" (at 0 2.33 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 1a54150e-7947-4f8b-bf78-609370833f05) + ) + (fp_text value "Conn_01x03_Male" (at 0 -7.41 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 0dab860f-7c30-416c-9d9f-4b3f664db7af) + ) + (fp_text user "${REFERENCE}" (at 0 -2.54) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 508e68b6-df2f-4820-a5be-e102b0adf4bd) + ) + (fp_line (start -1.33 0) (end -1.33 1.33) (layer "B.SilkS") (width 0.12) (tstamp 0a471be9-dd50-4643-96d0-ecc810e09917)) + (fp_line (start 1.33 -1.27) (end 1.33 -6.41) (layer "B.SilkS") (width 0.12) (tstamp 79d435b4-441b-45ec-8046-45fb691630cd)) + (fp_line (start -1.33 1.33) (end 0 1.33) (layer "B.SilkS") (width 0.12) (tstamp c4d8ab77-c41b-4ca3-87b0-59342fb89954)) + (fp_line (start -1.33 -6.41) (end 1.33 -6.41) (layer "B.SilkS") (width 0.12) (tstamp f3299098-e39d-4783-ad6d-e91d419fd512)) + (fp_line (start -1.33 -1.27) (end -1.33 -6.41) (layer "B.SilkS") (width 0.12) (tstamp f364692e-c936-4c90-bef8-5aa0c8722c2f)) + (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer "B.SilkS") (width 0.12) (tstamp f5150109-7030-443c-a7b1-b5083c9d3001)) + (fp_line (start -1.8 1.8) (end -1.8 -6.85) (layer "B.CrtYd") (width 0.05) (tstamp 16f0ef3e-2056-4c22-a5d8-83c544678eb2)) + (fp_line (start -1.8 -6.85) (end 1.8 -6.85) (layer "B.CrtYd") (width 0.05) (tstamp 5ee399a1-f904-418c-9fd2-889c3b23f489)) + (fp_line (start 1.8 -6.85) (end 1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 8bc96486-1ede-4926-a049-ad7272bddb6d)) + (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp df1a270b-41a9-4c02-95fd-7171a3264825)) + (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer "B.Fab") (width 0.1) (tstamp 05bec4a0-e99f-45f3-9482-35b4ad591a57)) + (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer "B.Fab") (width 0.1) (tstamp 3ba84721-794e-428d-924b-57a5a581f757)) + (fp_line (start 1.27 1.27) (end 1.27 -6.35) (layer "B.Fab") (width 0.1) (tstamp afe8a311-c404-4c11-8b52-9feb9fecb41e)) + (fp_line (start 1.27 -6.35) (end -1.27 -6.35) (layer "B.Fab") (width 0.1) (tstamp c7078cfb-f17c-4e0d-8a03-eb02cedde8fe)) + (fp_line (start -1.27 -6.35) (end -1.27 0.635) (layer "B.Fab") (width 0.1) (tstamp f61a3c6d-6377-4692-9028-eab7d31197a6)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 24 "GPIO1") (pinfunction "Pin_1") (pintype "passive") (tstamp 707a8dbe-de76-419a-b478-8c74b82b941e)) + (pad "2" thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 32 "GPIO2") (pinfunction "Pin_2") (pintype "passive") (tstamp 26c51b94-4827-42f2-923d-925254bf4601)) + (pad "3" thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 33 "GPIO3") (pinfunction "Pin_3") (pintype "passive") (tstamp 21500fd6-6f42-4b3d-993e-089998b5dddf)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "B.Cu") + (tedit 59FED5CC) (tstamp bbf6c8f5-e8d4-4f9a-a33c-45c1cd0b6974) + (at 43.18 48.26) + (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x06 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "fiatlux.kicad_sch") + (property "Sheetname" "") + (path "/4d4d48b1-34d1-4676-96e9-f485d3a05f58") + (attr through_hole) + (fp_text reference "J21" (at 0 2.33) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp d47a2c4f-c52c-43b5-858d-9d677124d256) + ) + (fp_text value "Conn_01x06_Male" (at 0 -15.03) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5e81efe7-5a36-4b97-ad87-0b2c089f5d47) + ) + (fp_text user "${REFERENCE}" (at 0 -6.35 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 49401a1e-7d0b-4b0c-8869-c4803ed99d0c) + ) + (fp_line (start -1.33 -14.03) (end 1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp 38717813-d4bf-4c85-b968-dd39f67e0276)) + (fp_line (start -1.33 -1.27) (end -1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp 46726ee7-33fc-47dc-948a-58a0f59f33ee)) + (fp_line (start 1.33 -1.27) (end 1.33 -14.03) (layer "B.SilkS") (width 0.12) (tstamp 73ae82f9-8aa4-4349-9baf-29c37627d698)) + (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer "B.SilkS") (width 0.12) (tstamp 7453c4c9-76f3-43e1-b163-92626394a544)) + (fp_line (start -1.33 1.33) (end 0 1.33) (layer "B.SilkS") (width 0.12) (tstamp e6279bf0-414c-4150-9bfa-5b816295e14c)) + (fp_line (start -1.33 0) (end -1.33 1.33) (layer "B.SilkS") (width 0.12) (tstamp e9c3e0c1-75c1-469f-9f1a-e46857cbe057)) + (fp_line (start 1.8 -14.5) (end 1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 2a28e60e-7fb0-4e9c-8b9a-93f6678ccf66)) + (fp_line (start -1.8 -14.5) (end 1.8 -14.5) (layer "B.CrtYd") (width 0.05) (tstamp 3cf13b82-8627-4669-a5bb-c5222683b193)) + (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 8125c572-fbf5-4221-bd54-6dfd1e384c3e)) + (fp_line (start -1.8 1.8) (end -1.8 -14.5) (layer "B.CrtYd") (width 0.05) (tstamp af8b6a2e-71f5-41dd-9e2b-9155e880108b)) + (fp_line (start -1.27 -13.97) (end -1.27 0.635) (layer "B.Fab") (width 0.1) (tstamp 030e0a35-5879-4623-afe7-0fa8bf0fd240)) + (fp_line (start 1.27 1.27) (end 1.27 -13.97) (layer "B.Fab") (width 0.1) (tstamp 821b39c1-52c3-49c2-864e-bc732ff1dd52)) + (fp_line (start 1.27 -13.97) (end -1.27 -13.97) (layer "B.Fab") (width 0.1) (tstamp 854af423-c93e-4f30-863f-556b5a195e2d)) + (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer "B.Fab") (width 0.1) (tstamp dc74d498-4de4-4087-8b7e-513801f29352)) + (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer "B.Fab") (width 0.1) (tstamp f5de68ad-2285-4eee-90ed-08345df286d4)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 36 "/Ext-IO/INIT_{OUT}") (pinfunction "Pin_1") (pintype "passive") (tstamp 4a06f09b-d13f-4166-94ca-f69ba7258f32)) + (pad "2" thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 37 "~{BUSRST}") (pinfunction "Pin_2") (pintype "passive") (tstamp 82ffa2db-f430-4205-bc26-c631a253f485)) + (pad "3" thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 38 "~{INT}") (pinfunction "Pin_3") (pintype "passive") (tstamp b13f43b8-c2fc-4ad9-b493-0e14bae39a6b)) + (pad "4" thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 39 "MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 120b0535-f5a0-46a9-b2e6-6aca7b199b7a)) + (pad "5" thru_hole oval (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 23 "CS0") (pinfunction "Pin_5") (pintype "passive") (tstamp e9d7cea5-6fa1-46f7-bcf5-709ed7b08e78)) + (pad "6" thru_hole oval (at 0 -12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 35 "SWIM") (pinfunction "Pin_6") (pintype "passive") (tstamp a596b9b3-d13b-43a1-80e4-0faf6e85dbc8)) + (model "${KIPRJMOD}/packages3D/PinHeader_1x06_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 46.228 52.324) (end 47.752 52.324) (layer "B.SilkS") (width 0.15) (tstamp 30047ff7-8b9c-4989-b934-6aabe7933634)) + (gr_line (start 48.514 48.768) (end 48.514 35.052) (layer "B.SilkS") (width 0.15) (tstamp 349acb8d-20b5-4cf8-a974-093bafa3667c)) + (gr_line (start 48.768 52.832) (end 48.768 52.324) (layer "B.SilkS") (width 0.15) (tstamp 52cc58b4-c7bd-4671-ac4b-d23e2eaaf5d4)) + (gr_line (start 50.292 52.324) (end 50.292 52.832) (layer "B.SilkS") (width 0.15) (tstamp 5fd3e035-ea81-46b5-a8e2-31e89994f43f)) + (gr_line (start 46.228 52.832) (end 46.228 52.324) (layer "B.SilkS") (width 0.15) (tstamp 7798ce6c-e5c6-4a23-b0c9-0475f83f7033)) + (gr_line (start 48.768 52.324) (end 50.292 52.324) (layer "B.SilkS") (width 0.15) (tstamp f5dc3e92-9245-4191-a4c0-a74fbfb1a10b)) + (gr_line (start 47.752 52.324) (end 47.752 52.832) (layer "B.SilkS") (width 0.15) (tstamp fcab026a-c2ac-419b-ac73-6e0ffe3b5109)) + (gr_line (start 53.34 59.436) (end 53.594 59.69) (layer "F.SilkS") (width 0.15) (tstamp 00000000-0000-0000-0000-000060924464)) + (gr_line (start 45.212 53.34) (end 44.958 53.086) (layer "F.SilkS") (width 0.15) (tstamp 00000000-0000-0000-0000-000060924466)) + (gr_line (start 53.594 59.69) (end 53.594 59.182) (layer "F.SilkS") (width 0.15) (tstamp 20851146-06ee-4905-ade7-e4efbeb059cd)) + (gr_line (start 44.958 53.086) (end 45.212 52.832) (layer "F.SilkS") (width 0.15) (tstamp 60968ec7-2a9f-4280-b2bf-b9ffbbcc89fe)) + (gr_line (start 45.212 52.832) (end 45.212 53.34) (layer "F.SilkS") (width 0.15) (tstamp 7581a778-1443-4850-8ea2-7d30103f846e)) + (gr_line (start 53.594 59.182) (end 53.34 59.436) (layer "F.SilkS") (width 0.15) (tstamp 7f68f79c-199f-4c53-b2a9-ee533db6c7e4)) + (gr_line (start 75 27) (end 35 27) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-00006091c19e)) + (gr_line (start 31 31) (end 31 71) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-00006091c19f)) + (gr_line (start 35 75) (end 75 75) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-00006091c1a0)) + (gr_arc (start 79 71) (mid 77.828427 73.828427) (end 75 75) (layer "Edge.Cuts") (width 0.1) (tstamp 218a2655-cbfd-4d23-b2e9-9413fc8c7ce7)) + (gr_arc (start 35 75) (mid 32.171573 73.828427) (end 31 71) (layer "Edge.Cuts") (width 0.1) (tstamp 37b50d64-6533-45d9-9e15-17413001d278)) + (gr_arc (start 75 27) (mid 77.828427 28.171573) (end 79 31) (layer "Edge.Cuts") (width 0.1) (tstamp 4c41bf83-36d1-44c6-96f0-98d909cb883a)) + (gr_arc (start 31 31) (mid 32.171573 28.171573) (end 35 27) (layer "Edge.Cuts") (width 0.1) (tstamp 806d5137-661a-41c8-972c-77c576f6e977)) + (gr_line (start 79 71) (end 79 31) (layer "Edge.Cuts") (width 0.1) (tstamp 8abc0d19-109c-4cb5-9883-d44bcf1205cd)) + (gr_text "LUX" (at 64.77 63.5) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00006091654a) (effects (font (size 3.5 3.5) (thickness 0.4)) (justify mirror)) ) - (gr_text v0.2 (at 57.912 64.516) (layer B.SilkS) + (gr_text "GND" (at 55.88 66.548) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-000060a84c7e) (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) + (gr_text "GND" (at 66.294 66.548) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-000060a84c83) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "RESET" (at 73.152 60.198) (layer "B.SilkS") (tstamp 04aed42c-8a51-45a4-8dab-515b91ef90ea) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "INT" (at 50.038 43.18) (layer "B.SilkS") (tstamp 15e82188-7305-45bb-8deb-5e9811d8af99) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "IO1~" (at 48.26 29.972 90) (layer "B.SilkS") (tstamp 17dc8dc3-75fa-462e-9f88-c56882fd65db) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "MOSI" (at 46.482 45.72) (layer "B.SilkS") (tstamp 18751d0c-c7bd-4e03-b68e-9bd07c0614f8) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "CS1" (at 46.736 38.1) (layer "B.SilkS") (tstamp 221f8cbf-eca1-4dae-a896-252c7ebfca4a) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "CLK" (at 46.99 43.18) (layer "B.SilkS") (tstamp 33208a57-5054-4bad-b85f-35da7b25e7bb) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "MISO" (at 50.546 40.64) (layer "B.SilkS") (tstamp 4e97527f-99b2-4e39-8cd8-8ec0cd725a9a) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "SWIM" (at 50.8 35.56) (layer "B.SilkS") (tstamp 59eba13d-31d5-420b-8abd-4693056acd66) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "GND" (at 42.926 61.214 90) (layer "B.SilkS") (tstamp 5f6c9082-7ae4-4a83-8ede-ab10f7d9affc) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "12V" (at 46.99 50.546 90) (layer "B.SilkS") (tstamp 69c255d6-2563-4591-9a33-dc4d66263040) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "RXD" (at 43.434 58.42) (layer "B.SilkS") (tstamp 726fe1aa-f0fc-40c1-b227-11cdd6b712a2) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "INIT" (at 50.292 48.26) (layer "B.SilkS") (tstamp 758affd8-4c26-465c-89d3-6222fb1bd2db) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "3V3" (at 46.736 40.64) (layer "B.SilkS") (tstamp 772c750b-a71c-4959-9784-4601cf4c0108) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "5V" (at 49.53 50.038 90) (layer "B.SilkS") (tstamp 7f65239d-1e9d-40b6-a010-d7f90e189a45) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "5V IN" (at 60.452 66.548) (layer "B.SilkS") (tstamp 85867cdf-9747-439a-ad12-2f74a445f14a) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "TXD" (at 43.434 55.88) (layer "B.SilkS") (tstamp 85cf4944-bf10-42d9-b376-7e45cbb34f76) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "12V IN" (at 50.8 66.548) (layer "B.SilkS") (tstamp 9933a1f8-68a5-4d5e-8863-5dbfc77228c1) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "RST" (at 50.292 45.72) (layer "B.SilkS") (tstamp a430caa9-39f9-49e7-a523-81b0f46a652f) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "GND" (at 46.736 48.26) (layer "B.SilkS") (tstamp afd4cf23-016d-47ad-9fd4-47b79d29b583) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "VDD" (at 43.434 53.34) (layer "B.SilkS") (tstamp be2d5c5c-2e9e-458b-a2a4-c1fc873a97af) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "v0.3" (at 57.912 64.516) (layer "B.SilkS") (tstamp bf653247-8c1f-4e46-89a3-443f1fe11402) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "UART" (at 36 73) (layer "B.SilkS") (tstamp c0314d3e-d678-462e-b4d6-b8c007d74a58) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "IO2~" (at 50.8 29.972 90) (layer "B.SilkS") (tstamp ca932d9a-6026-4770-8d65-9f530c2f11d2) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "CS0" (at 50.292 38.1) (layer "B.SilkS") (tstamp db74c288-bda0-4cbe-b924-bc3d98ff33ba) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "SPI" (at 36 29) (layer "B.SilkS") (tstamp dfbc8cec-fb6d-4c70-9974-a376d5a4ed8b) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "FLASH" (at 68.58 31.115) (layer "B.SilkS") (tstamp e146a318-f6a7-4839-8bb5-382791176b40) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "IO3~" (at 53.34 29.972 90) (layer "B.SilkS") (tstamp fa7fefb8-e92f-4c7a-b45e-58d073d72846) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "VDD" (at 46.736 35.56) (layer "B.SilkS") (tstamp fb31c3eb-6b5d-4f86-b239-9031b57dc859) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (gr_text "12V Power" (at 46.228 53.34 90) (layer "F.SilkS") (tstamp 35be3e7f-ffea-41c3-97c5-f9273f2f3710) + (effects (font (size 1 1) (thickness 0.15))) + ) + (gr_text "5V Power" (at 54.61 56.388 90) (layer "F.SilkS") (tstamp 3a00f276-7b6d-4bda-bcc3-71b8d8a8cd9c) + (effects (font (size 1 1) (thickness 0.15))) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 1bed031b-f8b3-412a-ab7f-21973c3ff6cc) + (pts (xy 59.944 42.164) (xy 58.166 42.164)) + (height 17.78) + (gr_text "1.7780 mm" (at 59.055 23.234) (layer "Dwgs.User") (tstamp 1bed031b-f8b3-412a-ab7f-21973c3ff6cc) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 314c2637-b00e-43af-a0bd-996574c25517) + (pts (xy 30.988 59.436) (xy 51.562 59.436)) + (height 19.812) + (gr_text "20.5740 mm" (at 41.275 78.098) (layer "Dwgs.User") (tstamp 314c2637-b00e-43af-a0bd-996574c25517) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 3c72217f-4505-40ea-a5c6-9002b9a2097a) + (pts (xy 59.944 26.924) (xy 59.944 42.164)) + (height -27.432) + (gr_text "15.2400 mm" (at 86.226 34.544 90) (layer "Dwgs.User") (tstamp 3c72217f-4505-40ea-a5c6-9002b9a2097a) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 41ed4965-9d3c-40d8-8bc9-8f3e804d4603) + (pts (xy 43.942 74.93) (xy 43.942 53.086)) + (height -13.208) + (gr_text "21.8440 mm" (at 29.584 64.008 90) (layer "Dwgs.User") (tstamp 41ed4965-9d3c-40d8-8bc9-8f3e804d4603) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 5c2674b9-11f8-40c0-a81f-e597fec81ee3) + (pts (xy 30.988 53.086) (xy 43.942 53.086)) + (height 23.114) + (gr_text "12.9540 mm" (at 37.465 75.05) (layer "Dwgs.User") (tstamp 5c2674b9-11f8-40c0-a81f-e597fec81ee3) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 6c68fabc-bf62-44ca-a195-b356e08d1e55) + (pts (xy 48.26 71.12) (xy 68.58 71.12)) + (height 10.414) + (gr_text "20.3200 mm" (at 58.42 80.384) (layer "Dwgs.User") (tstamp 6c68fabc-bf62-44ca-a195-b356e08d1e55) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp 8708cd2b-683e-4f6c-8d0e-69ae4b7cff3c) + (pts (xy 30.734 71.12) (xy 50.8 71.12)) + (height 18.034) + (gr_text "20.0660 mm" (at 40.767 88.004) (layer "Dwgs.User") (tstamp 8708cd2b-683e-4f6c-8d0e-69ae4b7cff3c) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp b6472712-6e99-4234-ba31-199d49428ed1) + (pts (xy 78.994 42.164) (xy 59.944 42.164)) + (height 16.764) + (gr_text "19.0500 mm" (at 69.469 24.25) (layer "Dwgs.User") (tstamp b6472712-6e99-4234-ba31-199d49428ed1) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp ba28c607-f270-4443-a07b-37e6eded426a) + (pts (xy 48.26 26.924) (xy 48.26 36.83)) + (height 8.128) + (gr_text "9.9060 mm" (at 38.982 31.877 90) (layer "Dwgs.User") (tstamp ba28c607-f270-4443-a07b-37e6eded426a) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp c8bde4bf-062c-4f48-ab57-c64b5b83ec34) + (pts (xy 30.988 36.83) (xy 48.26 36.83)) + (height -17.526) + (gr_text "17.2720 mm" (at 39.624 18.154) (layer "Dwgs.User") (tstamp c8bde4bf-062c-4f48-ab57-c64b5b83ec34) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp d20c6100-3715-4761-a8eb-39b299b9f381) + (pts (xy 51.562 74.93) (xy 51.562 59.436)) + (height -23.368) + (gr_text "15.4940 mm" (at 27.044 67.183 90) (layer "Dwgs.User") (tstamp d20c6100-3715-4761-a8eb-39b299b9f381) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp d709e90e-43a5-4188-911b-53751a2489bc) + (pts (xy 68.58 74.93) (xy 68.58 71.12)) + (height 27.686) + (gr_text "3.8100 mm" (at 95.116 73.025 90) (layer "Dwgs.User") (tstamp d709e90e-43a5-4188-911b-53751a2489bc) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Dwgs.User") (tstamp dabbbf3d-1ddd-4497-95a0-8b9509e90cc0) + (pts (xy 68.58 69.342) (xy 78.994 69.342)) + (height 12.192) + (gr_text "10.4140 mm" (at 73.787 80.384) (layer "Dwgs.User") (tstamp dabbbf3d-1ddd-4497-95a0-8b9509e90cc0) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp 1f687b57-c500-41cc-8563-50993e3813ff) + (pts (xy 31 71) (xy 79 71)) + (height 10.28) + (gr_text "48.0000 mm" (at 55 80.13) (layer "Eco1.User") (tstamp 1f687b57-c500-41cc-8563-50993e3813ff) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp 355d89c4-6e3a-49b4-bf9a-41ab50d3a3d4) + (pts (xy 75 31) (xy 75 71)) + (height -15) + (gr_text "40.0000 mm" (at 88.85 51 90) (layer "Eco1.User") (tstamp 355d89c4-6e3a-49b4-bf9a-41ab50d3a3d4) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp 4901a12c-b53c-43ea-994f-c5dfa53aa9aa) + (pts (xy 30.988 33.02) (xy 35.56 33.02)) + (height -9.398) + (gr_text "4.5720 mm" (at 33.274 22.472) (layer "Eco1.User") (tstamp 4901a12c-b53c-43ea-994f-c5dfa53aa9aa) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp 74e918aa-5137-4441-8209-595948ed1d79) + (pts (xy 75 75) (xy 75 27)) + (height 18.98) + (gr_text "48.0000 mm" (at 92.83 51 90) (layer "Eco1.User") (tstamp 74e918aa-5137-4441-8209-595948ed1d79) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp 781d4b19-5f2f-439a-9ffd-d03a596a0151) + (pts (xy 35.56 38.1) (xy 35.56 33.02)) + (height -10.414) + (gr_text "5.0800 mm" (at 23.996 35.56 90) (layer "Eco1.User") (tstamp 781d4b19-5f2f-439a-9ffd-d03a596a0151) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp ce9c515c-318d-4fb5-9cad-dfaa50fc85c0) + (pts (xy 75 71) (xy 43 71)) + (height -7) + (gr_text "32.0000 mm" (at 59 76.85) (layer "Eco1.User") (tstamp ce9c515c-318d-4fb5-9cad-dfaa50fc85c0) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) + (dimension (type aligned) (layer "Eco1.User") (tstamp e3dfb4ac-52d0-4d7b-832f-d4adf847fec2) + (pts (xy 35.052 33.02) (xy 35 27)) + (height -6.853355) + (gr_text "6.0202 mm" (at 29.322858 30.059263 -89.5050986) (layer "Eco1.User") (tstamp e3dfb4ac-52d0-4d7b-832f-d4adf847fec2) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 2) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) + ) - (segment (start 60.96 73.66) (end 58.42 73.66) (width 1) (layer F.Cu) (net 1)) - (segment (start 72.885 45.72) (end 71.31 45.72) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (via (at 59.944 33.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 58.92 34.044) (end 59.944 33.02) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 58.92 34.888) (end 58.92 34.044) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 59.974 32.99) (end 59.944 33.02) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 59.974 31.178) (end 59.974 32.99) (width 0.25) (layer B.Cu) (net 1) (status 10)) - (segment (start 58.92 36.838) (end 58.42 37.338) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 58.92 34.888) (end 58.92 36.838) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 55.048 59.422) (end 57.048 59.422) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 54.356 60.114) (end 55.048 59.422) (width 1) (layer F.Cu) (net 1)) - (segment (start 54.356 62.296) (end 54.356 60.114) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 57.5555 58.9145) (end 57.048 59.422) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 40.64 48.26) (end 35.56 48.26) (width 2) (layer F.Cu) (net 1) (status 30)) - (segment (start 63.5 73.66) (end 60.96 73.66) (width 1) (layer F.Cu) (net 1)) - (segment (start 55.88 71.12) (end 58.42 73.66) (width 1) (layer B.Cu) (net 1) (status 10)) - (segment (start 66.548 58.9145) (end 61.4815 58.9145) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 60.4655 58.9145) (end 59.1955 58.9145) (width 1) (layer F.Cu) (net 1)) - (segment (start 64.008 38.46) (end 63.668 38.12) (width 1) (layer B.Cu) (net 1) (status 30)) - (segment (start 55.099 31.778) (end 55.099 28.328) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 62.249 31.778) (end 62.249 28.328) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 55.099 28.328) (end 51.682 28.328) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 45.708 31) (end 45.708 29.984) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 45.708 31) (end 43 31) (width 0.25) (layer F.Cu) (net 1) (status 20)) - (segment (start 45.708 29.984) (end 47.364 28.328) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 62.249 31.778) (end 62.249 31.985) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 61.214 33.02) (end 59.944 33.02) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 62.249 31.985) (end 61.214 33.02) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 75 31) (end 72.702 28.702) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 62.623 28.702) (end 62.249 28.328) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 72.702 28.702) (end 70.993 28.702) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 62.249 28.328) (end 59.937 28.328) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 50.737 55.88) (end 51.753 54.864) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 55.048 57.323522) (end 55.048 59.422) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 52.588478 54.864) (end 53.472239 55.747761) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 51.753 54.864) (end 52.588478 54.864) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 44.641 59.69) (end 44.641 59.627) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 67.4455 59.812) (end 66.548 58.9145) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 69.342 59.812) (end 67.4455 59.812) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 55.099 31.778) (end 55.099 32.023) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 57.048 57.302) (end 57.048 59.422) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 55.372 55.626) (end 56.0705 56.3245) (width 1) (layer F.Cu) (net 1)) - (segment (start 43 67.384) (end 42.672 67.056) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 43 71) (end 43 67.384) (width 0.25) (layer B.Cu) (net 1) (status 10)) - (segment (start 64.328 51.882) (end 64.008 51.562) (width 1) (layer F.Cu) (net 1)) - (segment (start 65.786 51.882) (end 64.328 51.882) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 65.961 52.057) (end 65.786 51.882) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 67.818 52.057) (end 65.961 52.057) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 75.1055 70.8945) (end 75 71) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 71.5495 63.5) (end 71.12 63.5) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 51.682 28.328) (end 48.634 28.328) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A81)) - (via (at 51.682 28.328) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 58.032 28.328) (end 55.099 28.328) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A83) (status 20)) - (via (at 58.032 28.328) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 59.937 28.328) (end 58.032 28.328) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A85)) - (via (at 59.937 28.328) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 65.278 28.702) (end 62.623 28.702) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A87) (status 20)) - (via (at 65.278 28.702) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 68.453 28.702) (end 65.278 28.702) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A89)) - (via (at 68.453 28.702) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 70.993 28.702) (end 68.453 28.702) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923A8B)) - (via (at 70.993 28.702) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 63.5 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 58.42 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 60.96 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 38.735 65.405) (end 35.56 68.58) (width 1) (layer F.Cu) (net 1) (tstamp 60923A95) (status 20)) - (segment (start 45.085 48.26) (end 40.64 48.26) (width 1) (layer B.Cu) (net 1) (tstamp 60923AA6) (status 20)) - (via (at 45.085 48.26) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 56.0705 56.3245) (end 57.048 57.302) (width 1) (layer F.Cu) (net 1) (tstamp 60923AAC)) - (via (at 56.0705 56.3245) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 53.472239 55.747761) (end 55.048 57.323522) (width 0.25) (layer F.Cu) (net 1) (tstamp 60923AAE)) - (via (at 53.472239 55.747761) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 64.008 43.942) (end 64.008 42.164) (width 1) (layer B.Cu) (net 1) (tstamp 6092485E)) - (via (at 64.008 43.942) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 64.008 42.164) (end 64.008 40.386) (width 1) (layer B.Cu) (net 1) (tstamp 60924860)) - (via (at 64.008 42.164) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 64.008 40.386) (end 64.008 38.46) (width 1) (layer B.Cu) (net 1) (tstamp 60924862) (status 20)) - (via (at 64.008 40.386) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.64399 43.11401) (end 51.816 43.942) (width 1) (layer F.Cu) (net 1)) - (segment (start 52.64399 32.70801) (end 52.64399 33.20801) (width 1) (layer F.Cu) (net 1)) - (segment (start 55.099 31.778) (end 53.574 31.778) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 51.054 44.704) (end 51.054 48.26) (width 1) (layer F.Cu) (net 1)) - (segment (start 53.574 31.778) (end 52.64399 32.70801) (width 1) (layer F.Cu) (net 1)) - (via (at 51.054 48.26) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 72.472 33.528) (end 75 31) (width 0.25) (layer B.Cu) (net 1) (status 30)) - (segment (start 72.226 33.528) (end 72.472 33.528) (width 0.25) (layer B.Cu) (net 1) (status 30)) - (segment (start 75.692 31.692) (end 75 31) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 75.692 37.833) (end 75.692 31.692) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 38.862 65.278) (end 38.735 65.405) (width 1) (layer F.Cu) (net 1)) - (segment (start 40.16 65.278) (end 38.862 65.278) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 43.942 49.403) (end 45.085 48.26) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 41.81001 62.13001) (end 40.64 60.96) (width 0.25) (layer F.Cu) (net 1) (status 20)) - (segment (start 43.418468 62.13001) (end 41.81001 62.13001) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 44.641 60.907478) (end 43.418468 62.13001) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 44.641 59.69) (end 44.641 60.907478) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 43.942 52.2985) (end 43.942 49.403) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 55.372 53.34) (end 55.372 53.848) (width 1) (layer F.Cu) (net 1)) - (segment (start 52.766 53.34) (end 55.372 53.34) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 52.766 51.483) (end 52.337 51.054) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 52.766 53.34) (end 52.766 51.483) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 38.260001 50.960001) (end 35.56 48.26) (width 2) (layer F.Cu) (net 1) (status 20)) - (segment (start 38.260001 65.879999) (end 38.260001 55.973999) (width 2) (layer F.Cu) (net 1)) - (segment (start 35.56 68.58) (end 38.260001 65.879999) (width 2) (layer F.Cu) (net 1) (status 10)) - (segment (start 75.918 70.082) (end 75 71) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 75.918 67.056) (end 75.918 70.082) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 74.676 67.056) (end 71.12 63.5) (width 0.25) (layer F.Cu) (net 1) (status 20)) - (segment (start 75.918 67.056) (end 74.676 67.056) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 58.42 73.66) (end 55.88 71.12) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 58.42 73.66) (end 60.96 73.66) (width 1) (layer B.Cu) (net 1)) - (segment (start 60.96 73.66) (end 63.5 73.66) (width 1) (layer B.Cu) (net 1)) - (segment (start 63.5 73.66) (end 66.04 71.12) (width 1) (layer F.Cu) (net 1) (status 20)) - (segment (start 66.04 71.12) (end 63.5 73.66) (width 1) (layer B.Cu) (net 1) (status 10)) - (segment (start 74.88 71.12) (end 75 71) (width 1) (layer F.Cu) (net 1) (status 30)) - (segment (start 66.04 71.12) (end 69.0372 71.12) (width 1) (layer F.Cu) (net 1) (status 10)) - (segment (start 51.816 67.056) (end 55.88 71.12) (width 2) (layer B.Cu) (net 1) (status 20)) - (segment (start 42.672 67.056) (end 50.546 67.056) (width 2) (layer B.Cu) (net 1)) - (via (at 71.882 46.99) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 71.31 46.418) (end 71.882 46.99) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 71.31 45.72) (end 71.31 46.418) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 64.8462 49.4538) (end 64.008 50.292) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 71.882 46.99) (end 69.4182 49.4538) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 69.4182 49.4538) (end 64.8462 49.4538) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 64.008 51.562) (end 64.008 50.292) (width 1) (layer F.Cu) (net 1)) - (segment (start 64.008 43.942) (end 64.008 50.292) (width 1) (layer B.Cu) (net 1)) - (via (at 64.008 50.292) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 47.785 37.6175) (end 45.199999 35.032499) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 45.199999 35.032499) (end 45.199999 33.199999) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 48.26 37.6175) (end 47.785 37.6175) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 48.4885 37.846) (end 48.26 37.6175) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 50.5715 37.846) (end 48.4885 37.846) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (segment (start 50.8 37.6175) (end 50.5715 37.846) (width 0.25) (layer F.Cu) (net 1) (status 30)) - (via (at 60.4655 58.914522) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 64.008 51.562) (end 61.595 53.975) (width 1) (layer F.Cu) (net 1)) - (segment (start 60.4655 58.9145) (end 60.4655 58.914522) (width 1) (layer F.Cu) (net 1)) - (segment (start 61.976022 57.404) (end 60.4655 58.914522) (width 0.25) (layer B.Cu) (net 1)) - (segment (start 68.998 57.404) (end 61.976022 57.404) (width 0.25) (layer B.Cu) (net 1) (status 10)) - (segment (start 52.64399 39.30401) (end 52.64399 40.82801) (width 1) (layer F.Cu) (net 1) (tstamp 60B030F8)) - (via (at 52.64399 39.30401) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.64399 42.35201) (end 52.64399 43.11401) (width 1) (layer F.Cu) (net 1) (tstamp 60B030FA)) - (via (at 52.64399 42.35201) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 45.199999 33.199999) (end 43 31) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B030FC) (status 20)) - (via (at 45.199999 33.199999) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 38.260001 55.973999) (end 38.260001 50.960001) (width 2) (layer F.Cu) (net 1) (tstamp 60B03127)) - (segment (start 37.084 67.056) (end 35.56 68.58) (width 2) (layer B.Cu) (net 1) (status 20)) - (segment (start 40.64 60.96) (end 40.64 63.5) (width 2) (layer B.Cu) (net 1) (status 10)) - (segment (start 40.64 63.5) (end 37.084 67.056) (width 2) (layer B.Cu) (net 1)) - (segment (start 42.672 67.056) (end 37.084 67.056) (width 2) (layer B.Cu) (net 1)) - (segment (start 32.859999 65.879999) (end 35.56 68.58) (width 2) (layer B.Cu) (net 1) (tstamp 60923A7E) (status 20)) - (segment (start 32.859999 63.660001) (end 32.859999 65.879999) (width 2) (layer B.Cu) (net 1) (tstamp 60923A7C)) - (segment (start 32.859999 61.120001) (end 32.859999 63.660001) (width 2) (layer B.Cu) (net 1) (tstamp 60923A7A)) - (segment (start 32.859999 57.945001) (end 32.859999 61.120001) (width 2) (layer B.Cu) (net 1) (tstamp 60923A78)) - (segment (start 35.56 48.26) (end 32.859999 50.960001) (width 2) (layer B.Cu) (net 1) (status 10)) - (segment (start 32.859999 51.595001) (end 32.859999 54.770001) (width 2) (layer B.Cu) (net 1) (tstamp 60923A74)) - (segment (start 32.859999 54.770001) (end 32.859999 57.945001) (width 2) (layer B.Cu) (net 1) (tstamp 60923A76)) - (via (at 38.735 65.405) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 38.260001 55.973999) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 65.879999) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 63.660001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 61.120001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 57.945001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 54.770001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 32.859999 51.595001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 50.960001) (end 32.859999 51.595001) (width 2) (layer B.Cu) (net 1)) - (via (at 59.944 61.722) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 61.214 61.722) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 60.96 63.246) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 59.1955 58.9145) (end 57.5555 58.9145) (width 1) (layer F.Cu) (net 1) (tstamp 60B179DC) (status 20)) - (via (at 59.1955 58.9145) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 61.4815 58.9145) (end 60.4655 58.9145) (width 1) (layer F.Cu) (net 1) (tstamp 60B179DE)) - (via (at 61.4815 58.9145) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 51.816 43.942) (end 51.054 44.704) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A11)) - (via (at 51.816 43.942) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.64399 38.03401) (end 52.64399 39.30401) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A13)) - (via (at 52.64399 38.03401) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.64399 40.82801) (end 52.64399 42.35201) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A15)) - (via (at 52.64399 40.82801) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 55.626 50.038) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 55.372 53.848) (end 55.372 55.626) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A21)) - (via (at 55.372 53.848) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 60.4655 55.1045) (end 60.4655 58.914522) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A28)) - (via (at 60.4655 55.1045) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 61.595 53.975) (end 60.4655 55.1045) (width 1) (layer F.Cu) (net 1) (tstamp 60B17A2A)) - (via (at 61.595 53.975) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 63.5 73.66) (end 67.056 73.66) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 58.42 73.66) (end 55.372 73.66) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 32.859999 65.879999) (end 32.859999 69.502001) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 32.859999 71.721999) (end 33.02 71.882) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 32.859999 51.595001) (end 32.859999 48.674001) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 32.859999 30.386001) (end 33.782 29.464) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 34.798 28.448) (end 35.814 28.448) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 47.364 28.328) (end 45.586 28.328) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 75.692 37.833) (end 77.711 37.833) (width 0.25) (layer F.Cu) (net 1) (status 10)) - (segment (start 77.711 37.833) (end 77.724 37.82) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 77.724 37.82) (end 77.724 35.306) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 76.962 67.056) (end 75.918 67.056) (width 0.25) (layer F.Cu) (net 1) (status 20)) - (segment (start 77.724 37.82) (end 77.724 40.386) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 77.724 66.294) (end 76.962 67.056) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BB8)) - (via (at 77.724 66.294) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 64.008) (end 77.724 66.294) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BBA)) - (via (at 77.724 64.008) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 61.468) (end 77.724 64.008) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BBC)) - (via (at 77.724 61.468) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 59.182) (end 77.724 61.468) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BBE)) - (via (at 77.724 59.182) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 50.546) (end 77.724 59.182) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BC0)) - (via (at 77.724 50.546) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 46.736) (end 77.724 50.546) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BC2)) - (via (at 77.724 46.736) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 40.386) (end 77.724 44.704) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BC4)) - (via (at 77.724 40.386) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 44.704) (end 77.724 46.736) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BC6)) - (via (at 77.724 44.704) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 35.306) (end 77.724 33.02) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BC8)) - (via (at 77.724 35.306) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 77.724 33.02) (end 77.724 32.766) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BCA)) - (via (at 77.724 33.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 72.898 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 70.104 73.66) (end 72.898 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BCE)) - (via (at 70.104 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 67.056 73.66) (end 70.104 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BD0)) - (via (at 67.056 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 55.372 73.66) (end 52.578 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BD2)) - (via (at 55.372 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.578 73.66) (end 49.53 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BD4)) - (via (at 52.578 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 49.53 73.66) (end 46.736 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BD6)) - (via (at 49.53 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 46.736 73.66) (end 44.704 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BD8)) - (via (at 46.736 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 69.502001) (end 32.859999 71.721999) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BDA)) - (via (at 32.859999 69.502001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 33.02 71.882) (end 34.798 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BDC)) - (via (at 33.02 71.882) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 34.798 73.66) (end 37.338 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BDE)) - (via (at 34.798 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 37.338 73.66) (end 40.132 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BE0)) - (via (at 37.338 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 40.132 73.66) (end 41.148 73.66) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BE2)) - (via (at 40.132 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 48.674001) (end 32.859999 45.880001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BE4)) - (via (at 32.859999 48.674001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 45.880001) (end 32.859999 43.086001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BE6)) - (via (at 32.859999 45.880001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 43.086001) (end 32.859999 40.038001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BE8)) - (via (at 32.859999 43.086001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 40.038001) (end 32.859999 36.990001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BEA)) - (via (at 32.859999 40.038001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 36.990001) (end 32.859999 33.942001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BEC)) - (via (at 32.859999 36.990001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 33.942001) (end 32.859999 31.402001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BEE)) - (via (at 32.859999 33.942001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 32.859999 31.402001) (end 32.859999 30.386001) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BF0)) - (via (at 32.859999 31.402001) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 33.782 29.464) (end 34.798 28.448) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BF2)) - (via (at 33.782 29.464) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 35.814 28.448) (end 38.608 28.448) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BF4)) - (via (at 35.814 28.448) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 38.608 28.448) (end 40.132 28.448) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BF6)) - (via (at 38.608 28.448) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 45.586 28.328) (end 45.332 28.328) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BF8)) - (via (at 45.586 28.328) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 48.634 28.328) (end 47.364 28.328) (width 0.25) (layer F.Cu) (net 1) (tstamp 60B17BFA)) - (via (at 48.634 28.328) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 61.4815 58.9145) (end 61.4815 60.1845) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 60.96 61.976) (end 61.214 61.722) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 60.96 63.246) (end 60.96 61.976) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 60.579 61.087) (end 59.944 61.722) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 61.214 61.722) (end 60.579 61.087) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 61.4815 60.1845) (end 60.579 61.087) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 59.944 59.663) (end 59.1955 58.9145) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 59.944 61.722) (end 59.944 59.663) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 51.054 48.26) (end 45.085 48.26) (width 1) (layer B.Cu) (net 1) (tstamp 60B17E4A)) - (via (at 46.228 48.006) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 45.3136 55.0418) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 45.593 52.0446) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 72.898 55.88) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 71.882 56.896) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 71.12 55.88) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 69.088 55.626) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 74.93 57.404) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 73.66 58.674) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 47.244 41.91) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 47.244 39.116) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 45.72 40.64) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 44.45 36.576) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 50.8 42.418) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 50.8 40.894) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 50.8 39.37) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 52.64399 33.20801) (end 52.64399 38.03401) (width 1) (layer F.Cu) (net 1) (tstamp 60B17E54)) - (via (at 52.64399 33.20801) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 70.104 33.274) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 65.659 30.9118) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 73.406 40.386) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 50.546 67.056) (end 51.816 67.056) (width 2) (layer B.Cu) (net 1) (tstamp 60B17E56)) - (via (at 50.546 67.056) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 49.53 65.532) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 71.0692 71.12) (end 74.88 71.12) (width 1) (layer F.Cu) (net 1) (tstamp 60B189FF) (status 20)) - (via (at 71.0692 71.12) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 69.0372 71.12) (end 71.0692 71.12) (width 1) (layer F.Cu) (net 1) (tstamp 60B18A01)) - (via (at 69.0372 71.12) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 50.9778 65.6336) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 64.8716 64.4398) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 66.7258 64.4144) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 68.6816 63.7794) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 70.6374 66.167) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 51.054 48.26) (end 55.372 48.26) (width 1) (layer B.Cu) (net 1)) - (via (at 55.372 48.26) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 55.372 53.34) (end 55.372 48.26) (width 1) (layer F.Cu) (net 1)) - (via (at 55.626 51.816) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 58.928 50.546) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (via (at 46.228 54.102) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) - (segment (start 60.484 67.31) (end 57.118 67.31) (width 2) (layer F.Cu) (net 2) (status 30)) - (segment (start 57.118 64.092) (end 57.048 64.022) (width 2) (layer F.Cu) (net 2) (status 30)) - (segment (start 57.118 67.31) (end 57.118 64.092) (width 2) (layer F.Cu) (net 2) (status 30)) - (segment (start 54.53 64.022) (end 54.356 64.196) (width 1) (layer F.Cu) (net 2) (status 30)) - (segment (start 57.048 64.022) (end 54.53 64.022) (width 1) (layer F.Cu) (net 2) (status 30)) - (segment (start 60.484 67.31) (end 62.1858 65.6082) (width 0.25) (layer F.Cu) (net 2) (status 10)) - (segment (start 68.1482 65.6082) (end 68.58 66.04) (width 0.25) (layer F.Cu) (net 2) (status 30)) - (segment (start 62.1858 65.6082) (end 68.1482 65.6082) (width 0.25) (layer F.Cu) (net 2) (status 20)) - (segment (start 56.92 34.888) (end 56.92 34.06) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (segment (start 56.92 34.388) (end 56.92 34.06) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 57.42 34.888) (end 56.92 34.388) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (segment (start 63.6155 61.9895) (end 63.348 61.722) (width 2) (layer F.Cu) (net 3) (status 30)) - (segment (start 66.548 61.9895) (end 63.6155 61.9895) (width 2) (layer F.Cu) (net 3) (status 30)) - (segment (start 63.348 61.722) (end 63.348 63.144) (width 1) (layer F.Cu) (net 3) (status 30)) - (segment (start 63.348 63.144) (end 61.722 64.77) (width 1) (layer F.Cu) (net 3) (status 10)) - (segment (start 57.758002 61.722) (end 57.048 61.722) (width 1) (layer F.Cu) (net 3) (status 30)) - (segment (start 58.748001 62.711999) (end 57.758002 61.722) (width 1) (layer F.Cu) (net 3) (status 20)) - (segment (start 58.748001 63.422001) (end 58.748001 62.711999) (width 1) (layer F.Cu) (net 3)) - (segment (start 60.096 64.77) (end 58.748001 63.422001) (width 1) (layer F.Cu) (net 3)) - (segment (start 61.722 64.77) (end 60.096 64.77) (width 1) (layer F.Cu) (net 3)) - (segment (start 63.668 53.32) (end 63.668 55.794) (width 1) (layer B.Cu) (net 3) (status 10)) - (via (at 64.262 56.388) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) - (segment (start 63.668 55.794) (end 64.262 56.388) (width 1) (layer B.Cu) (net 3)) - (segment (start 64.262 56.388) (end 65.278 57.404) (width 1) (layer F.Cu) (net 3)) - (segment (start 65.278 57.404) (end 67.818 57.404) (width 1) (layer F.Cu) (net 3)) - (segment (start 68.326 57.912) (end 67.818 57.404) (width 1) (layer F.Cu) (net 3)) - (segment (start 69.342 57.912) (end 68.326 57.912) (width 1) (layer F.Cu) (net 3) (status 10)) - (segment (start 70.067 57.912) (end 70.866 58.711) (width 1) (layer F.Cu) (net 3)) - (segment (start 69.342 57.912) (end 70.067 57.912) (width 1) (layer F.Cu) (net 3) (status 10)) - (segment (start 69.23302 61.9895) (end 66.548 61.9895) (width 1) (layer F.Cu) (net 3) (status 20)) - (segment (start 70.866 60.35652) (end 69.23302 61.9895) (width 1) (layer F.Cu) (net 3)) - (segment (start 70.866 58.711) (end 70.866 60.35652) (width 1) (layer F.Cu) (net 3)) - (segment (start 71.46948 60.96) (end 70.866 60.35652) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 73.66 60.96) (end 71.46948 60.96) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (segment (start 56.92 34.06) (end 56.712538 33.852538) (width 0.25) (layer F.Cu) (net 3)) - (via (at 56.712538 33.852538) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) - (via (at 54.102 33.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) - (segment (start 54.934538 33.852538) (end 54.102 33.02) (width 0.25) (layer B.Cu) (net 3)) - (segment (start 56.712538 33.852538) (end 54.934538 33.852538) (width 0.25) (layer B.Cu) (net 3)) - (via (at 58.928 43.942) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) - (segment (start 61.405 43.942) (end 64.77 47.307) (width 0.25) (layer F.Cu) (net 3) (status 20)) - (segment (start 65.786 54.864) (end 64.262 56.388) (width 1) (layer F.Cu) (net 3)) - (segment (start 65.786 53.782) (end 65.786 54.864) (width 1) (layer F.Cu) (net 3) (status 10)) - (segment (start 67.643 53.782) (end 67.818 53.607) (width 1) (layer F.Cu) (net 3) (status 30)) - (segment (start 65.786 53.782) (end 67.643 53.782) (width 1) (layer F.Cu) (net 3) (status 30)) - (segment (start 67.818 53.607) (end 68.834 52.591) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (segment (start 56.388 43.052) (end 57.278 43.942) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (via (at 53.354706 43.958945) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3)) - (segment (start 54.102 33.02) (end 53.702001 33.419999) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 53.702001 33.419999) (end 53.702001 43.61165) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 53.702001 43.61165) (end 53.354706 43.958945) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 53.371651 43.942) (end 53.354706 43.958945) (width 0.25) (layer B.Cu) (net 3)) - (segment (start 58.911055 43.958945) (end 58.928 43.942) (width 0.25) (layer B.Cu) (net 3)) - (segment (start 53.354706 43.958945) (end 58.911055 43.958945) (width 0.25) (layer B.Cu) (net 3)) - (segment (start 57.278 43.942) (end 58.928 43.942) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 61.405 43.942) (end 58.928 43.942) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 61.722 43.625) (end 61.405 43.942) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 61.722 42.989) (end 61.722 43.625) (width 0.25) (layer F.Cu) (net 3) (status 10)) - (segment (start 68.834 52.591) (end 68.834 51.820166) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 72.327 48.895) (end 70.802 48.895) (width 0.25) (layer F.Cu) (net 3) (status 30)) - (segment (start 64.821401 47.255599) (end 64.77 47.307) (width 0.25) (layer F.Cu) (net 3) (status 30)) - (segment (start 67.818 47.307) (end 67.766599 47.255599) (width 0.25) (layer F.Cu) (net 3) (status 30)) - (segment (start 68.834 51.820166) (end 71.877834 51.820166) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 72.327 51.371) (end 72.327 48.895) (width 0.25) (layer F.Cu) (net 3) (status 20)) - (segment (start 71.877834 51.820166) (end 72.327 51.371) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 64.77 47.307) (end 67.818 47.307) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 67.09099 47.05499) (end 67.09099 44.92301) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 67.818 47.307) (end 67.343 47.307) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 67.343 47.307) (end 67.09099 47.05499) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 67.09099 44.92301) (end 68.072 43.942) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 70.65799 48.75099) (end 70.802 48.895) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 70.65799 45.60375) (end 70.65799 48.75099) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 68.99624 43.942) (end 70.65799 45.60375) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 68.072 43.942) (end 68.99624 43.942) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 76.2 48.26) (end 76.2 47.244) (width 0.25) (layer F.Cu) (net 4) (status 10)) - (segment (start 74.676 45.72) (end 74.435 45.72) (width 0.25) (layer F.Cu) (net 4) (status 30)) - (segment (start 76.2 47.244) (end 74.676 45.72) (width 0.25) (layer F.Cu) (net 4) (status 20)) - (segment (start 77.668 56.534) (end 76.798 57.404) (width 0.25) (layer B.Cu) (net 4) (status 20)) - (segment (start 77.668 53.32) (end 77.668 56.534) (width 0.25) (layer B.Cu) (net 4) (status 10)) - (segment (start 73.644 42.672) (end 73.644 43.164) (width 0.25) (layer F.Cu) (net 4) (status 10)) - (segment (start 74.435 43.955) (end 74.435 45.72) (width 0.25) (layer F.Cu) (net 4) (status 20)) - (segment (start 73.644 43.164) (end 74.435 43.955) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 75.565 48.895) (end 76.2 48.26) (width 0.25) (layer F.Cu) (net 4) (status 30)) - (segment (start 73.977 48.895) (end 75.565 48.895) (width 0.25) (layer F.Cu) (net 4) (status 30)) - (via (at 76.2 50.292) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) - (segment (start 77.668 51.76) (end 76.2 50.292) (width 0.25) (layer B.Cu) (net 4)) - (segment (start 76.2 48.26) (end 76.2 50.292) (width 0.25) (layer F.Cu) (net 4) (status 10)) - (segment (start 77.668 53.32) (end 77.668 51.76) (width 0.25) (layer B.Cu) (net 4) (status 10)) - (segment (start 57.374 31.178) (end 57.374 31.7405) (width 0.25) (layer B.Cu) (net 5) (status 30)) - (segment (start 49.63699 58.305798) (end 49.63699 54.56901) (width 1) (layer F.Cu) (net 5)) - (segment (start 50.767192 59.436) (end 49.63699 58.305798) (width 1) (layer F.Cu) (net 5) (status 10)) - (segment (start 50.7745 59.436) (end 50.767192 59.436) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 49.63699 54.56901) (end 50.866 53.34) (width 1) (layer F.Cu) (net 5) (status 20)) - (segment (start 50.866 51.133) (end 50.787 51.054) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 50.866 53.34) (end 50.866 51.133) (width 1) (layer F.Cu) (net 5) (status 30)) - (via (at 56.642 32.258) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5)) - (segment (start 57.374 31.526) (end 56.642 32.258) (width 0.25) (layer B.Cu) (net 5) (status 40010)) - (segment (start 57.374 31.178) (end 57.374 31.526) (width 0.25) (layer B.Cu) (net 5) (status 30)) - (segment (start 56.642 32.258) (end 56.642 32.004) (width 0.25) (layer B.Cu) (net 5)) - (segment (start 56.642 32.367425) (end 54.540009 34.469416) (width 1) (layer F.Cu) (net 5)) - (segment (start 56.642 32.258) (end 56.642 32.367425) (width 1) (layer F.Cu) (net 5)) - (segment (start 54.634 35.838) (end 54.540009 35.744009) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 55.97 35.838) (end 54.634 35.838) (width 0.25) (layer F.Cu) (net 5) (status 10)) - (segment (start 54.540009 34.469416) (end 54.540009 35.744009) (width 1) (layer F.Cu) (net 5)) - (segment (start 66.734 67.31) (end 67.164001 67.740001) (width 1) (layer F.Cu) (net 5)) - (segment (start 64.484 67.31) (end 66.734 67.31) (width 1) (layer F.Cu) (net 5) (status 10)) - (segment (start 71.733999 67.740001) (end 72.418 67.056) (width 1) (layer F.Cu) (net 5) (status 20)) - (segment (start 67.164001 67.740001) (end 71.733999 67.740001) (width 1) (layer F.Cu) (net 5)) - (segment (start 53.34 63.5) (end 50.8 63.5) (width 2) (layer B.Cu) (net 5) (status 20)) - (segment (start 60.96 71.12) (end 53.34 63.5) (width 2) (layer B.Cu) (net 5) (status 10)) - (segment (start 60.96 70.834) (end 64.484 67.31) (width 2) (layer F.Cu) (net 5) (status 30)) - (segment (start 60.96 71.12) (end 60.96 70.834) (width 2) (layer F.Cu) (net 5) (status 30)) - (segment (start 50.8 63.5) (end 50.884002 63.415998) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 50.884002 63.415998) (end 50.884002 59.545502) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 50.884002 59.545502) (end 50.7745 59.436) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 54.540009 35.744009) (end 54.540009 46.986193) (width 1) (layer F.Cu) (net 5)) - (segment (start 54.540009 46.986193) (end 50.787 50.739202) (width 1) (layer F.Cu) (net 5) (status 20)) - (segment (start 50.787 50.739202) (end 50.787 51.054) (width 1) (layer F.Cu) (net 5) (status 30)) - (segment (start 50.8 34.353) (end 50.8 36.0425) (width 0.25) (layer F.Cu) (net 6) (status 30)) - (segment (start 48.26 34.353) (end 48.26 36.0425) (width 0.25) (layer F.Cu) (net 7) (status 30)) - (segment (start 44.513 54.4445) (end 43.942 53.8735) (width 0.25) (layer F.Cu) (net 8) (status 20)) - (segment (start 44.513 56.896) (end 44.513 54.4445) (width 0.25) (layer F.Cu) (net 8) (status 10)) - (segment (start 50.737 57.8235) (end 52.3495 59.436) (width 0.25) (layer F.Cu) (net 9) (status 30)) - (segment (start 50.737 57.658) (end 50.737 57.8235) (width 0.25) (layer F.Cu) (net 9) (status 30)) - (via (at 53.848 57.658) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 9)) - (segment (start 53.848 57.9375) (end 52.3495 59.436) (width 0.25) (layer F.Cu) (net 9) (status 20)) - (segment (start 53.848 57.658) (end 53.848 57.9375) (width 0.25) (layer F.Cu) (net 9)) - (segment (start 54.356 57.15) (end 53.848 57.658) (width 0.25) (layer B.Cu) (net 9)) - (segment (start 54.356 57.15) (end 54.356 56.642) (width 0.25) (layer B.Cu) (net 9)) - (segment (start 57.1246 53.8734) (end 57.1246 50.7727) (width 0.25) (layer B.Cu) (net 9) (status 20)) - (segment (start 54.356 56.642) (end 57.1246 53.8734) (width 0.25) (layer B.Cu) (net 9)) - (segment (start 45.72 66.04) (end 45.72 63.5) (width 2) (layer F.Cu) (net 10) (status 20)) - (segment (start 45.466 63.246) (end 45.72 63.5) (width 0.25) (layer F.Cu) (net 10) (status 30)) - (segment (start 44.958 65.278) (end 45.72 66.04) (width 1) (layer F.Cu) (net 10)) - (segment (start 43.66 65.278) (end 44.958 65.278) (width 1) (layer F.Cu) (net 10) (status 10)) - (segment (start 43.66 63.789) (end 42.926 63.055) (width 0.25) (layer F.Cu) (net 10) (status 20)) - (segment (start 43.66 65.278) (end 43.66 63.789) (width 0.25) (layer F.Cu) (net 10) (status 10)) - (segment (start 50.8 71.12) (end 45.72 66.04) (width 2) (layer F.Cu) (net 10) (status 10)) - (segment (start 53.118 68.802) (end 50.8 71.12) (width 2) (layer F.Cu) (net 10) (status 20)) - (segment (start 53.118 67.31) (end 53.118 68.802) (width 2) (layer F.Cu) (net 10) (status 10)) - (segment (start 57.543444 33.623646) (end 57.543444 33.086427) (width 0.25) (layer F.Cu) (net 11)) - (segment (start 57.92 34.000202) (end 57.543444 33.623646) (width 0.25) (layer F.Cu) (net 11)) - (segment (start 57.92 34.888) (end 57.92 34.000202) (width 0.25) (layer F.Cu) (net 11) (status 10)) - (segment (start 58.024 32.605871) (end 57.543444 33.086427) (width 0.25) (layer B.Cu) (net 11)) - (segment (start 58.024 31.178) (end 58.024 32.605871) (width 0.25) (layer B.Cu) (net 11) (status 10)) - (via (at 57.543444 33.086427) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 11)) - (segment (start 58.42 33.51868) (end 58.46574 33.47294) (width 0.25) (layer F.Cu) (net 12)) - (segment (start 58.674 33.26468) (end 58.46574 33.47294) (width 0.25) (layer B.Cu) (net 12)) - (segment (start 58.42 34.888) (end 58.42 33.51868) (width 0.25) (layer F.Cu) (net 12) (status 10)) - (segment (start 58.674 31.178) (end 58.674 33.26468) (width 0.25) (layer B.Cu) (net 12) (status 10)) - (via (at 58.46574 33.47294) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12)) - (segment (start 46.228 61.468) (end 48.26 63.5) (width 0.25) (layer F.Cu) (net 13) (status 30)) - (segment (start 46.165 61.468) (end 46.228 61.468) (width 0.25) (layer F.Cu) (net 13) (status 30)) - (segment (start 35.56 53.34) (end 38.260001 50.639999) (width 2) (layer B.Cu) (net 13) (status 10)) - (segment (start 38.260001 35.720001) (end 35.56 33.02) (width 2) (layer B.Cu) (net 13) (status 20)) - (segment (start 38.260001 50.639999) (end 38.260001 35.720001) (width 2) (layer B.Cu) (net 13) (tstamp 60923A99)) - (segment (start 38.420002 35.56) (end 38.260001 35.720001) (width 2) (layer B.Cu) (net 13)) - (segment (start 40.64 35.56) (end 38.420002 35.56) (width 2) (layer B.Cu) (net 13) (status 10)) - (segment (start 38.260001 50.960001) (end 38.260001 50.639999) (width 2) (layer B.Cu) (net 13)) - (segment (start 40.64 53.34) (end 38.260001 50.960001) (width 2) (layer B.Cu) (net 13) (status 10)) - (segment (start 35.8 53.1) (end 35.56 53.34) (width 2) (layer B.Cu) (net 13) (status 30)) - (segment (start 40.4 53.1) (end 35.8 53.1) (width 2) (layer B.Cu) (net 13) (status 30)) - (segment (start 40.64 53.34) (end 40.4 53.1) (width 2) (layer B.Cu) (net 13) (status 30)) - (segment (start 41.842081 53.34) (end 40.64 53.34) (width 2) (layer B.Cu) (net 13) (status 20)) - (segment (start 42.690001 54.18792) (end 41.842081 53.34) (width 2) (layer B.Cu) (net 13)) - (segment (start 42.690001 56.72792) (end 42.690001 54.18792) (width 2) (layer B.Cu) (net 13)) - (segment (start 48.26 62.297919) (end 42.690001 56.72792) (width 2) (layer B.Cu) (net 13)) - (segment (start 48.26 63.5) (end 48.26 62.297919) (width 2) (layer B.Cu) (net 13) (status 10)) - (segment (start 38.1 58.42) (end 40.64 55.88) (width 0.25) (layer B.Cu) (net 14) (status 20)) - (segment (start 35.56 58.42) (end 38.1 58.42) (width 0.25) (layer B.Cu) (net 14) (status 10)) - (segment (start 40.64 55.88) (end 42.418 54.102) (width 0.25) (layer F.Cu) (net 14) (status 10)) - (segment (start 42.418 54.102) (end 42.418 50.292) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 42.418 51.562) (end 42.418 50.292) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 75.66598 34.61798) (end 62.191021 34.61798) (width 0.25) (layer B.Cu) (net 14)) - (segment (start 77.668 38.12) (end 77.668 36.62) (width 0.25) (layer B.Cu) (net 14) (status 10)) - (segment (start 63.08301 35.509969) (end 62.154031 34.58099) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 62.305478 37.338) (end 63.08301 36.560468) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 77.668 36.62) (end 75.66598 34.61798) (width 0.25) (layer B.Cu) (net 14)) - (segment (start 62.191021 34.61798) (end 62.154031 34.58099) (width 0.25) (layer B.Cu) (net 14)) - (segment (start 63.08301 36.560468) (end 63.08301 35.509969) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 60.87 37.338) (end 62.305478 37.338) (width 0.25) (layer F.Cu) (net 14) (status 10)) - (via (at 62.154031 34.58099) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14)) - (via (at 42.359618 34.739614) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14)) - (segment (start 42.518242 34.58099) (end 42.359618 34.739614) (width 0.25) (layer B.Cu) (net 14)) - (segment (start 42.418 50.292) (end 42.359618 50.233618) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 62.154031 34.58099) (end 42.518242 34.58099) (width 0.25) (layer B.Cu) (net 14)) - (segment (start 42.359618 50.233618) (end 42.359618 34.739614) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 45.72 38.1) (end 45.72 36.264996) (width 0.25) (layer F.Cu) (net 14) (status 10)) - (segment (start 45.72 36.264996) (end 44.194618 34.739614) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 44.194618 34.739614) (end 42.359618 34.739614) (width 0.25) (layer F.Cu) (net 14)) - (segment (start 35.56 63.5) (end 40.64 58.42) (width 0.25) (layer B.Cu) (net 15) (status 30)) - (segment (start 41.815001 55.341409) (end 42.86801 54.2884) (width 0.25) (layer F.Cu) (net 15)) - (segment (start 41.815001 57.244999) (end 41.815001 55.341409) (width 0.25) (layer F.Cu) (net 15)) - (segment (start 40.64 58.42) (end 41.815001 57.244999) (width 0.25) (layer F.Cu) (net 15) (status 10)) - (segment (start 42.926 43.18) (end 42.86801 43.12201) (width 0.25) (layer F.Cu) (net 15)) - (segment (start 45.72 43.18) (end 42.926 43.18) (width 0.25) (layer F.Cu) (net 15) (status 10)) - (segment (start 42.86801 54.2884) (end 42.86801 43.12201) (width 0.25) (layer F.Cu) (net 15)) - (via (at 65.024 35.369944) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15)) - (segment (start 64.008 36.068) (end 64.325944 36.068) (width 0.25) (layer F.Cu) (net 15) (status 30)) - (segment (start 64.325944 36.068) (end 65.024 35.369944) (width 0.25) (layer F.Cu) (net 15) (status 10)) - (segment (start 42.86801 36.12599) (end 43.434 35.56) (width 0.25) (layer F.Cu) (net 15)) - (segment (start 42.86801 43.12201) (end 42.86801 36.12599) (width 0.25) (layer F.Cu) (net 15)) - (via (at 43.434 35.56) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 15)) - (segment (start 43.68801 35.30599) (end 43.434 35.56) (width 0.25) (layer B.Cu) (net 15)) - (segment (start 74.35399 35.30599) (end 43.68801 35.30599) (width 0.25) (layer B.Cu) (net 15)) - (segment (start 75.668 38.12) (end 75.668 36.62) (width 0.25) (layer B.Cu) (net 15) (status 10)) - (segment (start 75.668 36.62) (end 74.35399 35.30599) (width 0.25) (layer B.Cu) (net 15)) - (segment (start 69.668 51.82) (end 68.14 50.292) (width 0.25) (layer B.Cu) (net 16)) - (via (at 66.802 50.292) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16)) - (segment (start 69.668 53.32) (end 69.668 51.82) (width 0.25) (layer B.Cu) (net 16) (status 10)) - (segment (start 68.14 50.292) (end 66.802 50.292) (width 0.25) (layer B.Cu) (net 16)) - (segment (start 35.56 38.1) (end 40.64 38.1) (width 0.25) (layer F.Cu) (net 16) (status 30)) - (via (at 60.706 49.783996) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16)) - (segment (start 40.64 38.1) (end 47.371 44.831) (width 0.25) (layer B.Cu) (net 16) (status 10)) - (segment (start 66.802 50.292) (end 65.474011 48.964011) (width 0.25) (layer F.Cu) (net 16)) - (segment (start 58.42 48.26) (end 59.943996 49.783996) (width 0.25) (layer F.Cu) (net 16) (status 10)) - (segment (start 59.943996 49.783996) (end 60.706 49.783996) (width 0.25) (layer F.Cu) (net 16)) - (segment (start 60.706 45.593) (end 60.706 49.783996) (width 0.25) (layer B.Cu) (net 16)) - (segment (start 65.474011 48.964011) (end 61.525985 48.964011) (width 0.25) (layer F.Cu) (net 16)) - (segment (start 61.525985 48.964011) (end 60.706 49.783996) (width 0.25) (layer F.Cu) (net 16)) - (segment (start 47.371 44.831) (end 59.944 44.831) (width 0.25) (layer B.Cu) (net 16)) - (segment (start 59.944 44.831) (end 60.706 45.593) (width 0.25) (layer B.Cu) (net 16)) - (segment (start 65.668 50.43266) (end 65.534338 50.298998) (width 0.25) (layer B.Cu) (net 17)) - (segment (start 65.668 53.32) (end 65.668 50.43266) (width 0.25) (layer B.Cu) (net 17) (status 10)) - (via (at 65.534338 50.298998) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 17)) - (segment (start 38.1 43.18) (end 40.64 40.64) (width 0.25) (layer F.Cu) (net 17) (status 20)) - (segment (start 35.56 43.18) (end 38.1 43.18) (width 0.25) (layer F.Cu) (net 17) (status 10)) - (segment (start 64.70184 49.4665) (end 65.534338 50.298998) (width 0.25) (layer F.Cu) (net 17)) - (segment (start 62.2935 49.4665) (end 64.70184 49.4665) (width 0.25) (layer F.Cu) (net 17)) - (via (at 60.3885 51.3715) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 17)) - (segment (start 60.3885 51.3715) (end 62.2935 49.4665) (width 0.25) (layer F.Cu) (net 17)) - (segment (start 58.42 53.34) (end 60.3885 51.3715) (width 0.25) (layer F.Cu) (net 17) (status 10)) - (segment (start 59.963982 50.946982) (end 60.3885 51.3715) (width 0.25) (layer B.Cu) (net 17)) - (segment (start 59.963982 45.860067) (end 59.963982 50.946982) (width 0.25) (layer B.Cu) (net 17)) - (segment (start 59.569915 45.466) (end 59.963982 45.860067) (width 0.25) (layer B.Cu) (net 17)) - (segment (start 45.466 45.466) (end 59.569915 45.466) (width 0.25) (layer B.Cu) (net 17)) - (segment (start 40.64 40.64) (end 45.466 45.466) (width 0.25) (layer B.Cu) (net 17) (status 10)) - (segment (start 46.291 59.944) (end 47.815 61.468) (width 0.25) (layer F.Cu) (net 18) (status 30)) - (segment (start 46.291 59.69) (end 46.291 59.944) (width 0.25) (layer F.Cu) (net 18) (status 30)) - (via (at 49.53 60.706) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18)) - (segment (start 48.768 61.468) (end 49.53 60.706) (width 0.25) (layer F.Cu) (net 18)) - (segment (start 69.782 60.706) (end 49.53 60.706) (width 0.25) (layer B.Cu) (net 18)) - (segment (start 47.815 61.468) (end 48.768 61.468) (width 0.25) (layer F.Cu) (net 18) (status 10)) - (segment (start 48.26 50.8) (end 48.26 59.436) (width 0.25) (layer F.Cu) (net 18) (status 10)) - (segment (start 75.668 53.32) (end 75.668 54.82) (width 0.25) (layer B.Cu) (net 18) (status 10)) - (segment (start 48.26 59.436) (end 49.53 60.706) (width 0.25) (layer F.Cu) (net 18)) - (segment (start 75.668 54.82) (end 69.782 60.706) (width 0.25) (layer B.Cu) (net 18)) - (segment (start 61.318022 37.838) (end 62.738 39.257978) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 60.87 37.838) (end 61.318022 37.838) (width 0.25) (layer F.Cu) (net 19) (status 10)) - (segment (start 62.738 39.257978) (end 62.738 43.942) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 62.738 43.942) (end 63.5 44.704) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 63.5 44.704) (end 65.532 44.704) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 65.532 44.704) (end 65.786 44.45) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 68.210478 43.18) (end 68.643 43.18) (width 0.25) (layer F.Cu) (net 19) (status 20)) - (segment (start 66.940478 44.45) (end 68.210478 43.18) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 65.786 44.45) (end 66.940478 44.45) (width 0.25) (layer F.Cu) (net 19)) - (segment (start 71.202 43.18) (end 71.644 43.622) (width 0.25) (layer F.Cu) (net 19) (status 20)) - (segment (start 68.643 43.18) (end 71.202 43.18) (width 0.25) (layer F.Cu) (net 19) (status 10)) - (segment (start 64.516 33.782) (end 61.722 33.782) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 60.87 34.634) (end 60.87 35.838) (width 0.25) (layer F.Cu) (net 20) (status 20)) - (segment (start 61.722 33.782) (end 60.87 34.634) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 70.803 38.354) (end 70.803 36.513) (width 0.25) (layer F.Cu) (net 20) (status 10)) - (segment (start 70.803 36.513) (end 67.31 33.02) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 65.278 33.02) (end 64.516 33.782) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 67.31 33.02) (end 65.278 33.02) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 68.26 40.37) (end 67.874998 40.37) (width 0.25) (layer F.Cu) (net 20) (status 30)) - (segment (start 66.294 35.56) (end 64.516 33.782) (width 0.25) (layer F.Cu) (net 20)) - (segment (start 67.874998 40.37) (end 66.294 38.789002) (width 0.25) (layer F.Cu) (net 20) (status 10)) - (segment (start 66.294 38.789002) (end 66.294 35.56) (width 0.25) (layer F.Cu) (net 20)) - (via (at 71.628 50.292) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21)) - (segment (start 70.549 50.292) (end 71.628 50.292) (width 0.25) (layer F.Cu) (net 21)) - (segment (start 69.152 48.895) (end 70.549 50.292) (width 0.25) (layer F.Cu) (net 21) (status 10)) - (segment (start 71.628 50.292) (end 72.644 50.292) (width 0.25) (layer B.Cu) (net 21)) - (segment (start 73.668 51.316) (end 73.668 53.32) (width 0.25) (layer B.Cu) (net 21) (status 20)) - (segment (start 72.644 50.292) (end 73.668 51.316) (width 0.25) (layer B.Cu) (net 21)) - (segment (start 61.588 36.838) (end 62.358 36.068) (width 0.25) (layer F.Cu) (net 22) (status 20)) - (segment (start 60.87 36.838) (end 61.588 36.838) (width 0.25) (layer F.Cu) (net 22) (status 10)) - (segment (start 42.926 56.959) (end 42.863 56.896) (width 0.25) (layer F.Cu) (net 23) (status 30)) - (segment (start 42.926 61.405) (end 42.926 56.959) (width 0.25) (layer F.Cu) (net 23) (status 30)) - (via (at 47.498 53.34) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23)) - (segment (start 42.863 56.896) (end 43.66301 57.69601) (width 0.25) (layer F.Cu) (net 23) (status 10)) - (segment (start 43.66301 57.69601) (end 44.930468 57.69601) (width 0.25) (layer F.Cu) (net 23)) - (segment (start 44.930468 57.69601) (end 47.498 55.128478) (width 0.25) (layer F.Cu) (net 23)) - (segment (start 47.498 55.128478) (end 47.498 53.34) (width 0.25) (layer F.Cu) (net 23)) - (segment (start 48.7445 52.0935) (end 47.498 53.34) (width 0.25) (layer B.Cu) (net 23)) - (segment (start 53.9496 52.0935) (end 48.7445 52.0935) (width 0.25) (layer B.Cu) (net 23) (status 10)) - (segment (start 52.387 55.88) (end 52.387 57.658) (width 0.25) (layer F.Cu) (net 24) (status 30)) - (segment (start 65.668 38.12) (end 65.668 45.602) (width 0.25) (layer B.Cu) (net 25) (status 10)) - (segment (start 65.668 45.602) (end 67.056 46.99) (width 0.25) (layer B.Cu) (net 25)) - (via (at 44.704 46.95301) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 25)) - (segment (start 40.64 45.72) (end 41.87301 46.95301) (width 0.25) (layer B.Cu) (net 25) (status 10)) - (segment (start 48.26 45.72) (end 45.93701 45.72) (width 0.25) (layer F.Cu) (net 25) (status 10)) - (segment (start 45.93701 45.72) (end 44.704 46.95301) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 41.87301 46.95301) (end 44.704 46.95301) (width 0.25) (layer B.Cu) (net 25)) - (segment (start 44.704 46.95301) (end 57.440982 46.95301) (width 0.25) (layer B.Cu) (net 25)) - (via (at 57.530996 46.862996) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 25)) - (segment (start 57.440982 46.95301) (end 57.530996 46.862996) (width 0.25) (layer B.Cu) (net 25)) - (segment (start 57.530996 46.862996) (end 58.927998 46.862996) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 69.66 45.72) (end 69.66 46.540424) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 67.056 46.99) (end 69.183616 46.99) (width 0.25) (layer B.Cu) (net 25)) - (segment (start 69.66 46.540424) (end 69.19702 47.003404) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 69.183616 46.99) (end 69.19702 47.003404) (width 0.25) (layer B.Cu) (net 25)) - (via (at 69.19702 47.003404) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 25)) - (segment (start 60.579002 48.514) (end 66.436286 48.514) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 67.056 48.234326) (end 66.606306 48.68402) (width 0.25) (layer B.Cu) (net 25)) - (segment (start 58.927998 46.862996) (end 60.579002 48.514) (width 0.25) (layer F.Cu) (net 25)) - (via (at 66.606306 48.68402) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 25)) - (segment (start 67.056 46.99) (end 67.056 48.234326) (width 0.25) (layer B.Cu) (net 25)) - (segment (start 66.436286 48.514) (end 66.606306 48.68402) (width 0.25) (layer F.Cu) (net 25)) - (segment (start 48.26 32.703) (end 48.26 30.48) (width 0.25) (layer F.Cu) (net 26) (status 30)) - (segment (start 48.26 32.703) (end 49.525114 33.968114) (width 0.25) (layer F.Cu) (net 26) (status 10)) - (segment (start 73.142988 36.094988) (end 49.556535 36.094988) (width 0.25) (layer B.Cu) (net 26)) - (segment (start 49.556535 36.094988) (end 49.525114 36.063567) (width 0.25) (layer B.Cu) (net 26)) - (segment (start 49.525114 33.968114) (end 49.525114 36.063567) (width 0.25) (layer F.Cu) (net 26)) - (via (at 49.525114 36.063567) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26)) - (segment (start 73.668 38.12) (end 73.668 36.62) (width 0.25) (layer B.Cu) (net 26) (status 10)) - (segment (start 73.668 36.62) (end 73.142988 36.094988) (width 0.25) (layer B.Cu) (net 26)) - (via (at 48.26 43.688) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26)) - (segment (start 48.26 37.328682) (end 49.017341 36.571341) (width 0.25) (layer B.Cu) (net 26)) - (segment (start 48.26 43.688) (end 48.26 37.328682) (width 0.25) (layer B.Cu) (net 26)) - (segment (start 49.017341 36.571341) (end 49.525114 36.063567) (width 0.25) (layer B.Cu) (net 26)) - (via (at 45.212 49.53) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26)) - (segment (start 45.9505 50.2685) (end 45.212 49.53) (width 0.25) (layer B.Cu) (net 26)) - (segment (start 48.26 43.688) (end 49.585001 45.013001) (width 0.25) (layer F.Cu) (net 26)) - (segment (start 53.9496 50.2685) (end 45.9505 50.2685) (width 0.25) (layer B.Cu) (net 26) (status 10)) - (segment (start 49.585001 46.484684) (end 46.539685 49.53) (width 0.25) (layer F.Cu) (net 26)) - (segment (start 49.585001 45.013001) (end 49.585001 46.484684) (width 0.25) (layer F.Cu) (net 26)) - (segment (start 46.539685 49.53) (end 45.212 49.53) (width 0.25) (layer F.Cu) (net 26)) - (segment (start 50.8 32.703) (end 50.8 30.48) (width 0.25) (layer F.Cu) (net 27) (status 30)) - (segment (start 71.668 38.12) (end 71.668 36.62) (width 0.25) (layer B.Cu) (net 27) (status 10)) - (segment (start 47.084999 29.915999) (end 47.084999 36.111493) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 47.084999 36.111493) (end 47.778516 36.80501) (width 0.25) (layer F.Cu) (net 27)) - (via (at 49.53 37.083992) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27)) - (segment (start 50.068993 36.544999) (end 49.53 37.083992) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 71.592999 36.544999) (end 50.068993 36.544999) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 47.778516 36.80501) (end 49.251018 36.80501) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 71.668 36.62) (end 71.592999 36.544999) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 48.824001 29.304999) (end 47.695999 29.304999) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 50.8 31.280998) (end 48.824001 29.304999) (width 0.25) (layer F.Cu) (net 27) (status 10)) - (segment (start 50.8 32.703) (end 50.8 31.280998) (width 0.25) (layer F.Cu) (net 27) (status 30)) - (segment (start 49.251018 36.80501) (end 49.53 37.083992) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 47.695999 29.304999) (end 47.084999 29.915999) (width 0.25) (layer F.Cu) (net 27)) - (via (at 49.53 43.688) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27)) - (segment (start 49.53 43.688) (end 49.53 37.083992) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 50.171401 44.329401) (end 50.171401 49.015768) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 50.171401 49.015768) (end 50.546 49.390367) (width 0.25) (layer F.Cu) (net 27)) - (via (at 50.546 49.390367) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27)) - (segment (start 49.53 43.688) (end 50.171401 44.329401) (width 0.25) (layer F.Cu) (net 27)) - (segment (start 50.851357 49.08501) (end 50.546 49.390367) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 56.32499 49.08501) (end 50.851357 49.08501) (width 0.25) (layer B.Cu) (net 27)) - (segment (start 56.4623 48.9477) (end 56.32499 49.08501) (width 0.25) (layer B.Cu) (net 27) (status 10)) - (segment (start 57.1246 48.9477) (end 56.4623 48.9477) (width 0.25) (layer B.Cu) (net 27) (status 30)) - (via (at 66.39301 45.22992) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28)) - (segment (start 64.77 45.657) (end 65.96593 45.657) (width 0.25) (layer F.Cu) (net 28) (status 10)) - (segment (start 65.96593 45.657) (end 66.39301 45.22992) (width 0.25) (layer F.Cu) (net 28)) - (via (at 69.668 40.458) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28)) - (segment (start 69.668 38.12) (end 69.668 40.458) (width 0.25) (layer B.Cu) (net 28) (status 10)) - (via (at 66.802 33.782) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28)) - (segment (start 66.548 33.528) (end 66.802 33.782) (width 0.25) (layer B.Cu) (net 28)) - (segment (start 64.426 33.528) (end 66.548 33.528) (width 0.25) (layer B.Cu) (net 28) (status 10)) - (segment (start 67.58 38.37) (end 67.31 38.37) (width 0.25) (layer F.Cu) (net 28) (status 30)) - (segment (start 69.668 40.458) (end 67.58 38.37) (width 0.25) (layer F.Cu) (net 28) (status 20)) - (segment (start 74.966999 41.946999) (end 76.2 43.18) (width 0.25) (layer F.Cu) (net 28) (status 20)) - (segment (start 72.933999 41.946999) (end 74.966999 41.946999) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 70.933999 42.447001) (end 72.433997 42.447001) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 72.433997 42.447001) (end 72.933999 41.946999) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 69.668 41.181002) (end 70.933999 42.447001) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 69.668 40.458) (end 69.668 41.181002) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 67.31 34.29) (end 66.802 33.782) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 67.31 38.37) (end 67.31 34.29) (width 0.25) (layer F.Cu) (net 28) (status 10)) - (segment (start 74.966999 40.108001) (end 75.692 39.383) (width 0.25) (layer F.Cu) (net 28) (status 20)) - (segment (start 74.966999 41.946999) (end 74.966999 40.108001) (width 0.25) (layer F.Cu) (net 28)) - (segment (start 66.793009 45.629919) (end 66.39301 45.22992) (width 0.25) (layer B.Cu) (net 28)) - (segment (start 69.668 44.511559) (end 68.54964 45.629919) (width 0.25) (layer B.Cu) (net 28)) - (segment (start 69.668 40.458) (end 69.668 44.511559) (width 0.25) (layer B.Cu) (net 28)) - (segment (start 68.54964 45.629919) (end 66.793009 45.629919) (width 0.25) (layer B.Cu) (net 28)) - (segment (start 71.644 39.163) (end 72.453 38.354) (width 0.25) (layer F.Cu) (net 29) (status 20)) - (segment (start 71.644 41.722) (end 71.644 39.163) (width 0.25) (layer F.Cu) (net 29) (status 10)) - (segment (start 66.36 42.547) (end 66.993 43.18) (width 0.25) (layer F.Cu) (net 30) (status 20)) - (segment (start 66.36 40.37) (end 66.36 42.547) (width 0.25) (layer F.Cu) (net 30) (status 10)) - (segment (start 60.1095 42.9515) (end 61.722 41.339) (width 0.25) (layer F.Cu) (net 31) (status 30)) - (segment (start 59.944 42.9515) (end 60.1095 42.9515) (width 0.25) (layer F.Cu) (net 31) (status 30)) - (segment (start 58.92 40.3525) (end 59.944 41.3765) (width 0.25) (layer F.Cu) (net 32) (status 20)) - (segment (start 58.92 39.788) (end 58.92 40.3525) (width 0.25) (layer F.Cu) (net 32) (status 10)) - (segment (start 57.9375 42.9515) (end 56.388 41.402) (width 0.25) (layer F.Cu) (net 33) (status 30)) - (segment (start 58.166 42.9515) (end 57.9375 42.9515) (width 0.25) (layer F.Cu) (net 33) (status 30)) - (segment (start 58.42 41.1225) (end 58.166 41.3765) (width 0.25) (layer F.Cu) (net 34) (status 30)) - (segment (start 58.42 39.788) (end 58.42 41.1225) (width 0.25) (layer F.Cu) (net 34) (status 30)) - (segment (start 59.131913 46.101) (end 59.238981 46.208068) (width 0.25) (layer B.Cu) (net 35)) - (segment (start 40.64 43.18) (end 43.561 46.101) (width 0.25) (layer B.Cu) (net 35) (status 10)) - (segment (start 43.561 46.101) (end 59.131913 46.101) (width 0.25) (layer B.Cu) (net 35)) - (via (at 59.238981 46.208068) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 35)) - (via (at 68.621937 44.59401) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 35)) - (segment (start 67.668 43.640073) (end 68.621937 44.59401) (width 0.25) (layer B.Cu) (net 35)) - (segment (start 67.668 38.12) (end 67.668 43.640073) (width 0.25) (layer B.Cu) (net 35)) - (segment (start 67.818 45.657) (end 67.818 45.397947) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 67.818 45.397947) (end 68.621937 44.59401) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 61.062923 48.03201) (end 59.238981 46.208068) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 68.20723 48.03201) (end 61.062923 48.03201) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 68.54501 47.69423) (end 68.20723 48.03201) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 68.54501 45.90901) (end 68.54501 47.69423) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 68.293 45.657) (end 68.54501 45.90901) (width 0.25) (layer F.Cu) (net 35)) - (segment (start 67.818 45.657) (end 68.293 45.657) (width 0.25) (layer F.Cu) (net 35)) + (segment (start 52.766 52.966) (end 51.9 52.1) (width 0.25) (layer "F.Cu") (net 1) (tstamp 16603b42-2ae8-4b5f-b30d-5ada38ede013)) + (segment (start 60.10277 34.16348) (end 60.580893 33.685357) (width 0.25) (layer "F.Cu") (net 1) (tstamp 18226f9a-3d24-4546-aaef-cdabe64b8f60)) + (segment (start 58.92 36.838) (end 58.42 37.338) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3f29e963-f611-419d-91fa-0aecd92cfb09)) + (segment (start 58.92 34.888) (end 58.92 36.838) (width 0.25) (layer "F.Cu") (net 1) (tstamp 431839f6-2dde-48a9-8fad-312e6489da87)) + (segment (start 58.92 34.888) (end 58.92 34.440672) (width 0.25) (layer "F.Cu") (net 1) (tstamp 516dedcd-72b1-4c29-8fbe-e299faf04c74)) + (segment (start 52.766 53.34) (end 52.766 52.966) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5d2f3e95-5ad2-4253-a8d5-e2f71836dae5)) + (segment (start 59.197192 34.16348) (end 60.10277 34.16348) (width 0.25) (layer "F.Cu") (net 1) (tstamp 75b19d9c-32f6-4ebf-8f13-423b4118cccf)) + (segment (start 52.337 51.663) (end 51.9 52.1) (width 0.25) (layer "F.Cu") (net 1) (tstamp cd090ce9-9e73-42e9-a2e1-5cdb2b3c5e73)) + (segment (start 58.92 34.440672) (end 59.197192 34.16348) (width 0.25) (layer "F.Cu") (net 1) (tstamp d5851c78-9c18-4eb6-b2a5-2908ac57d1ce)) + (segment (start 52.337 51.054) (end 52.337 51.663) (width 0.25) (layer "F.Cu") (net 1) (tstamp d730aac6-cf43-4058-985c-1a2a7b5c76a4)) + (via (at 60.580893 33.685357) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 58193df3-ef40-4f79-9308-50e84e47dfad)) + (segment (start 40.64 48.26) (end 35.56 48.26) (width 0.5) (layer "B.Cu") (net 1) (tstamp 106e19d8-1e99-41ed-b180-ac44c360db04)) + (segment (start 35.56 67.39) (end 35.56 68.58) (width 0.5) (layer "B.Cu") (net 1) (tstamp 24bd099d-6335-421b-b4f6-d410fa185791)) + (segment (start 60.755 31.378) (end 60.755 33.51125) (width 0.25) (layer "B.Cu") (net 1) (tstamp 95bab6db-c0c6-4ce5-885a-722ada8eaa02)) + (segment (start 40.64 60.96) (end 40.64 62.31) (width 0.5) (layer "B.Cu") (net 1) (tstamp b5828120-44c7-4b86-ace2-027f1150b652)) + (segment (start 40.64 62.31) (end 35.56 67.39) (width 0.5) (layer "B.Cu") (net 1) (tstamp bddac5e7-e2a9-484d-b740-63ef26b0c18d)) + (segment (start 60.755 33.51125) (end 60.580893 33.685357) (width 0.25) (layer "B.Cu") (net 1) (tstamp c640ddef-9125-4576-a29a-272b2663e73a)) + (segment (start 57.118 67.31) (end 60.484 67.31) (width 1) (layer "F.Cu") (net 2) (tstamp 0e594983-447d-414e-99bc-3f70b3d8f054)) + (segment (start 57.048 67.24) (end 57.118 67.31) (width 1) (layer "F.Cu") (net 2) (tstamp 458db0cb-b737-494a-9efc-d7de6066cd99)) + (segment (start 56.874 64.196) (end 57.048 64.022) (width 1) (layer "F.Cu") (net 2) (tstamp 51f7aa62-cbf0-44a7-b3bc-d8558a1a5ee4)) + (segment (start 57.048 64.022) (end 57.048 67.24) (width 1) (layer "F.Cu") (net 2) (tstamp 59164ed9-cd61-488c-95bf-5aa618cf4e7a)) + (segment (start 61.754 66.04) (end 60.484 67.31) (width 0.25) (layer "F.Cu") (net 2) (tstamp 61b65efe-75ad-409b-951e-77b5017d56a2)) + (segment (start 54.356 64.196) (end 56.874 64.196) (width 1) (layer "F.Cu") (net 2) (tstamp 99af1514-c125-4dea-8025-0cf64fe18be0)) + (segment (start 68.58 66.04) (end 61.754 66.04) (width 0.25) (layer "F.Cu") (net 2) (tstamp f20ba4da-8a28-47f3-810b-acbccc10df1d)) + (segment (start 65.786 53.782) (end 65.786 54.314) (width 0.5) (layer "F.Cu") (net 3) (tstamp 0354d9cd-2fdf-43a2-972a-cb801876a235)) + (segment (start 65.961 53.607) (end 65.786 53.782) (width 0.5) (layer "F.Cu") (net 3) (tstamp 0d6cc26e-06b3-47a5-af0d-292a14e416d3)) + (segment (start 57.42 34.12) (end 57 33.7) (width 0.25) (layer "F.Cu") (net 3) (tstamp 1650dd1f-57fc-48cc-bd9c-ab9009db5780)) + (segment (start 63.348 61.722) (end 63.348 61.348) (width 0.5) (layer "F.Cu") (net 3) (tstamp 1911d962-1c49-4668-823e-ffee4326e691)) + (segment (start 63.278 61.722) (end 61 64) (width 2) (layer "F.Cu") (net 3) (tstamp 19206d31-7446-4cc1-af99-cba60802ce20)) + (segment (start 61 64) (end 61 59) (width 2) (layer "F.Cu") (net 3) (tstamp 21620940-a4f5-4ff3-8412-c8f897a4d823)) + (segment (start 61.722 42.989) (end 60.99748 43.71352) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2b50a9b5-9f49-4f11-8a3b-f186b227b74b)) + (segment (start 59.112433 43.71352) (end 59.093358 43.732595) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2d33b179-4455-4655-8546-64ba410ea2ca)) + (segment (start 71.04 60.96) (end 73.66 60.96) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3376ad0f-335d-4d20-b2c8-253f6ba704fe)) + (segment (start 63.348 61.722) (end 61.722 61.722) (width 0.5) (layer "F.Cu") (net 3) (tstamp 364090c5-f1b0-477b-8e5c-29e8c55f6741)) + (segment (start 67.818 53.607) (end 65.961 53.607) (width 0.5) (layer "F.Cu") (net 3) (tstamp 3772f9d5-ca3d-47cb-829f-c33b16d1f119)) + (segment (start 61.722 61.722) (end 61 61) (width 0.5) (layer "F.Cu") (net 3) (tstamp 39555908-0b99-4a4d-851b-0c8246aad307)) + (segment (start 66.548 61.9895) (end 70.0105 61.9895) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3af771b8-c13e-4b7f-ac2a-d674f8fc3d77)) + (segment (start 56.6251 43.052) (end 56.388 43.052) (width 0.25) (layer "F.Cu") (net 3) (tstamp 44550bce-e16c-4204-9a16-b039083ebde8)) + (segment (start 59.11352 43.71352) (end 57.28662 43.71352) (width 0.25) (layer "F.Cu") (net 3) (tstamp 49d39a3f-9faf-4f82-a0ec-dd14290be4df)) + (segment (start 63.348 61.722) (end 62.722 61.722) (width 0.5) (layer "F.Cu") (net 3) (tstamp 54ae3a5a-70b3-4b5e-b7ef-1cbb72c4c110)) + (segment (start 59.11352 43.71352) (end 59.112433 43.71352) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5dd225d2-c234-42a7-aa87-85d02b2e9d34)) + (segment (start 56.92 33.78) (end 57 33.7) (width 0.25) (layer "F.Cu") (net 3) (tstamp 64c92683-0f78-4d36-970d-7de6b8ee91ea)) + (segment (start 64.8105 61.9895) (end 63.6155 61.9895) (width 1) (layer "F.Cu") (net 3) (tstamp 67c93296-94bd-43ef-af6b-170f6db8ef89)) + (segment (start 57.28662 43.71352) (end 56.6251 43.052) (width 0.25) (layer "F.Cu") (net 3) (tstamp 68ba012d-d4aa-4187-b75c-684a5817fb4e)) + (segment (start 63.348 61.722) (end 62.278 61.722) (width 0.5) (layer "F.Cu") (net 3) (tstamp 81f52955-6168-4c35-8077-165e7f1868dc)) + (segment (start 70.802 48.895) (end 72.327 48.895) (width 0.25) (layer "F.Cu") (net 3) (tstamp 85da823c-67e7-4442-935d-652ea06d7b39)) + (segment (start 61.278 61.722) (end 61 62) (width 0.5) (layer "F.Cu") (net 3) (tstamp 887dcf2a-1a87-4fa5-9be3-53c6a07ad210)) + (segment (start 63.6155 61.9895) (end 63.348 61.722) (width 1) (layer "F.Cu") (net 3) (tstamp 947d7286-88d7-4c51-8005-b75e056bc36f)) + (segment (start 63.348 61.722) (end 61.278 61.722) (width 0.5) (layer "F.Cu") (net 3) (tstamp 9c9c392a-7beb-4830-af65-ff8cd787a4f4)) + (segment (start 49.00188 41.802821) (end 47.722179 41.802821) (width 0.25) (layer "F.Cu") (net 3) (tstamp 9cd6cfc5-eea8-4005-ab44-25dc9598dd92)) + (segment (start 62.278 61.722) (end 61 63) (width 0.5) (layer "F.Cu") (net 3) (tstamp 9ee1aa40-274c-45bc-9b2e-10874c4c3fcc)) + (segment (start 65.786 54.314) (end 64.6 55.5) (width 0.5) (layer "F.Cu") (net 3) (tstamp a926b759-16b6-43ed-ab68-6f827d12e28b)) + (segment (start 63.348 61.722) (end 63.278 61.722) (width 0.5) (layer "F.Cu") (net 3) (tstamp ae268c5e-5842-4b27-8982-acbad4f90903)) + (segment (start 56.92 34.888) (end 56.92 33.78) (width 0.25) (layer "F.Cu") (net 3) (tstamp b2b7002c-d2b9-4091-9320-b2cdbab4215c)) + (segment (start 70.0105 61.9895) (end 71.04 60.96) (width 0.25) (layer "F.Cu") (net 3) (tstamp ba5c8e87-6091-4593-8414-9243cb4ff85e)) + (segment (start 64.77 47.307) (end 67.818 47.307) (width 0.25) (layer "F.Cu") (net 3) (tstamp bd9c0bde-a159-41fc-8b90-027dbc08461f)) + (segment (start 60.99748 43.71352) (end 59.11352 43.71352) (width 0.25) (layer "F.Cu") (net 3) (tstamp bfd63df9-9170-4cd4-aeb9-f78fe68d98d9)) + (segment (start 61 63) (end 61 62) (width 0.5) (layer "F.Cu") (net 3) (tstamp cad9b439-867d-4c01-ba8a-35e11024ce7d)) + (segment (start 62.722 61.722) (end 61 60) (width 0.5) (layer "F.Cu") (net 3) (tstamp de93127f-11e6-4b06-ac6c-ec1a0bab285d)) + (segment (start 57.42 34.888) (end 57.42 34.12) (width 0.25) (layer "F.Cu") (net 3) (tstamp e2f88325-0cc2-43c9-8a98-ec7d3daee590)) + (segment (start 47.722179 41.802821) (end 46.875 42.65) (width 0.25) (layer "F.Cu") (net 3) (tstamp f00deed4-eb89-471f-9861-3c23298c6dd1)) + (segment (start 61 61) (end 61 60) (width 0.5) (layer "F.Cu") (net 3) (tstamp f1098f7a-cf21-465b-85da-0658a7bdf147)) + (segment (start 63.348 61.348) (end 61 59) (width 2) (layer "F.Cu") (net 3) (tstamp f5c6248d-d41d-4c1f-b797-9e8d5088dcae)) + (segment (start 66.548 61.9895) (end 64.8105 61.9895) (width 1) (layer "F.Cu") (net 3) (tstamp fe8f1adf-bd96-45b0-ba6a-78779c368d56)) + (via (at 64.6 55.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 2f958251-893a-461f-9e75-dfde32f03394)) + (via (at 59.093358 43.732595) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 5fd86ce1-c918-41f4-a86b-9b2e9f2833ad)) + (via (at 57 33.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 70b497a7-48f9-4c51-a476-83f36f9ca5c9)) + (via (at 49.00188 41.802821) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp a772ec10-c459-4daf-95e5-7dd41349b3ff)) + (segment (start 40.64 40.64) (end 41.814511 41.814511) (width 0.25) (layer "In1.Cu") (net 3) (tstamp 16f25b01-a959-4f3b-b8f1-0c084b5da3b5)) + (segment (start 41.814511 41.814511) (end 48.99019 41.814511) (width 0.25) (layer "In1.Cu") (net 3) (tstamp 2f49e582-3e0d-44de-b656-4a80abc8a462)) + (segment (start 48.99019 41.814511) (end 49.00188 41.802821) (width 0.25) (layer "In1.Cu") (net 3) (tstamp 658d4190-476d-4860-bfec-819029a6fe46)) + (segment (start 59.093358 35.793358) (end 57 33.7) (width 0.25) (layer "In2.Cu") (net 3) (tstamp 39734241-35cf-48a0-bf27-b5b3202df3e6)) + (segment (start 59.093358 43.732595) (end 59.093358 35.793358) (width 0.25) (layer "In2.Cu") (net 3) (tstamp 9a2e9d72-31fa-46f9-bba0-b6201ae0cd26)) + (segment (start 49.00188 41.802821) (end 49.00188 43.20188) (width 0.25) (layer "B.Cu") (net 3) (tstamp 1d2d94b7-6b4c-4de4-9d46-04448a712558)) + (segment (start 64.6 54.252) (end 63.668 53.32) (width 0.5) (layer "B.Cu") (net 3) (tstamp 447dd50f-4026-43ee-aefa-b01ad9136b67)) + (segment (start 49.00188 43.20188) (end 52.9 47.1) (width 0.25) (layer "B.Cu") (net 3) (tstamp 56e222ec-f39f-42fb-8315-64b076f424e2)) + (segment (start 52.9 47.1) (end 60.4 47.1) (width 0.25) (layer "B.Cu") (net 3) (tstamp 91ceff20-e2cd-4106-9c76-afd923170c4b)) + (segment (start 64.6 55.5) (end 64.6 54.252) (width 0.5) (layer "B.Cu") (net 3) (tstamp b2970aee-c98d-437f-b234-0f95bb3c01f6)) + (segment (start 60.4 47.1) (end 60.4 45.039237) (width 0.25) (layer "B.Cu") (net 3) (tstamp d59b9667-abb6-48d1-9b72-713b0ea5e23c)) + (segment (start 60.4 45.039237) (end 59.093358 43.732595) (width 0.25) (layer "B.Cu") (net 3) (tstamp eb620e52-6daf-4725-b323-04514afb899f)) + (segment (start 74.435 46.495) (end 74.435 45.72) (width 0.25) (layer "F.Cu") (net 4) (tstamp 0a3f5731-a272-45aa-8336-4e46cf372178)) + (segment (start 75.565 48.895) (end 76.2 48.26) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1522eba2-d4cf-442d-b667-d4ed2d06a98c)) + (segment (start 74.803 48.895) (end 75.565 48.895) (width 0.25) (layer "F.Cu") (net 4) (tstamp 413af2b5-fb92-4611-8970-d03455162a96)) + (segment (start 74.435 45.72) (end 74.435 43.5255) (width 0.25) (layer "F.Cu") (net 4) (tstamp 68ce18df-1587-4451-b17e-085954587fe0)) + (segment (start 74.435 43.5255) (end 73.5815 42.672) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8a00f61b-f34e-48ca-8902-657294d91892)) + (segment (start 76.2 48.26) (end 74.435 46.495) (width 0.25) (layer "F.Cu") (net 4) (tstamp 95ac1ea8-f992-4a2c-bd07-edf566ea3da4)) + (segment (start 73.977 48.895) (end 74.803 48.895) (width 0.25) (layer "F.Cu") (net 4) (tstamp 988e71dc-1156-4495-85ea-30273e0a5c85)) + (via (at 74.803 48.895) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp ad6a1ff7-f489-4cf3-b288-9ff8af20be67)) + (segment (start 77.668 53.32) (end 77.668 51.76) (width 0.25) (layer "B.Cu") (net 4) (tstamp 05eb9d09-d1e8-4597-8cb8-e6cf01ee44c0)) + (segment (start 77.668 56.534) (end 76.798 57.404) (width 0.25) (layer "B.Cu") (net 4) (tstamp 4e8682bc-5f60-4378-bdb9-219f468771a9)) + (segment (start 77.668 53.32) (end 77.668 56.534) (width 0.25) (layer "B.Cu") (net 4) (tstamp 68577564-a4bc-4713-bd1f-27b2d7b271fa)) + (segment (start 77.668 51.76) (end 74.803 48.895) (width 0.25) (layer "B.Cu") (net 4) (tstamp dbd7ace7-8390-4c24-8e1f-3115b8bf17fd)) + (segment (start 72.418 67.056) (end 71.734489 67.739511) (width 1) (layer "F.Cu") (net 5) (tstamp 0608affe-9759-42f9-a784-db6f466aec10)) + (segment (start 53.12352 55.59752) (end 53.12352 59.42398) (width 0.25) (layer "F.Cu") (net 5) (tstamp 1ae58b61-3607-4ef9-ac04-a6694728333b)) + (segment (start 64.913511 67.739511) (end 64.484 67.31) (width 1) (layer "F.Cu") (net 5) (tstamp 2bcfe8e9-3be5-4405-9831-a026a36fb4c1)) + (segment (start 50.866 53.34) (end 50.866 51.133) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4b6ecde4-05a7-4d04-bbf1-6908c10918b7)) + (segment (start 52.324 60.2235) (end 50.8 61.7475) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4d9381cb-2fd3-4b94-9661-e181a65e6e49)) + (segment (start 64.484 67.31) (end 64.484 67.596) (width 1) (layer "F.Cu") (net 5) (tstamp 5e7ea99a-d8ed-4c89-82f5-de484f5b374e)) + (segment (start 50.8 61.7475) (end 50.8 63.5) (width 0.25) (layer "F.Cu") (net 5) (tstamp 646bfc9a-cb24-4018-9e17-6f2dd65cd70d)) + (segment (start 53.12352 59.42398) (end 52.324 60.2235) (width 0.25) (layer "F.Cu") (net 5) (tstamp 6472ce79-e835-496e-8642-022a25427f5c)) + (segment (start 64.484 67.596) (end 60.96 71.12) (width 1) (layer "F.Cu") (net 5) (tstamp a6c4f414-aa4a-4f4e-b48f-5e94ca9ccedf)) + (segment (start 71.734489 67.739511) (end 64.913511 67.739511) (width 1) (layer "F.Cu") (net 5) (tstamp a90f5855-4d41-42aa-bad8-b7a8d5f2c094)) + (segment (start 55.97 35.838) (end 55.97 33.57) (width 0.25) (layer "F.Cu") (net 5) (tstamp b080dc73-9f1c-4e98-9fbb-b4c48ec1bc1f)) + (segment (start 50.866 53.34) (end 53.12352 55.59752) (width 0.25) (layer "F.Cu") (net 5) (tstamp c0cbfeb1-c46b-4f6e-893b-227646bdcfb1)) + (segment (start 50.866 51.133) (end 50.787 51.054) (width 0.25) (layer "F.Cu") (net 5) (tstamp d7fa4676-2d1c-48a8-84c4-1a3c71024a06)) + (segment (start 55.97 33.57) (end 55.8 33.4) (width 0.25) (layer "F.Cu") (net 5) (tstamp ff4daf6a-2a6b-4814-9af3-70e21a62a1a3)) + (via (at 55.8 33.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 6bbb2d84-5208-402b-ad3c-421682f1779c)) + (segment (start 60.96 71.12) (end 53.34 63.5) (width 2) (layer "In1.Cu") (net 5) (tstamp 0837221d-d3ed-4136-b215-6fa0fa44db79)) + (segment (start 53.34 63.5) (end 50.8 63.5) (width 2) (layer "In1.Cu") (net 5) (tstamp 4b7408c8-fe73-4c33-ae77-395aa13a4a9d)) + (segment locked (start 50.8 38.4) (end 55.8 33.4) (width 1) (layer "In2.Cu") (net 5) (tstamp 5797ce36-e605-46a0-9585-942db3e85ed4)) + (segment (start 50.8 63.5) (end 50.8 38.4) (width 1) (layer "In2.Cu") (net 5) (tstamp d010a588-7bf1-4e71-82e6-3dbae5c1d3c0)) + (segment (start 56.098623 33.4) (end 55.8 33.4) (width 0.5) (layer "B.Cu") (net 5) (tstamp 2a063861-55c2-4188-ac1a-64f55d771cb9)) + (segment (start 58.155 31.378) (end 58.120623 31.378) (width 0.5) (layer "B.Cu") (net 5) (tstamp 4f894c81-24d0-4d00-9994-b5ab4340f6cc)) + (segment locked (start 58.120623 31.378) (end 56.098623 33.4) (width 0.5) (layer "B.Cu") (net 5) (tstamp ff19dcc0-5b37-4fe5-b462-3f0e9a4d6dda)) + (segment (start 56.388 49.085) (end 55.309 49.085) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4452e319-f956-44d3-b453-5073e5089552)) + (segment (start 55.309 49.085) (end 53.848 50.546) (width 0.25) (layer "F.Cu") (net 6) (tstamp 561ae2b6-f60f-4d6f-a0b6-bd70e88906a3)) + (via (at 53.848 50.546) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 4ebbc4cb-d4dc-4c2e-beef-64789ee57b8f)) + (segment (start 54.18 50.214) (end 53.848 50.546) (width 0.25) (layer "B.Cu") (net 6) (tstamp 59b94cf1-d5ba-4e77-a024-1985c9a76e16)) + (segment (start 54.18 48.6) (end 54.18 50.214) (width 0.25) (layer "B.Cu") (net 6) (tstamp a732447b-cc46-4538-9ee9-f144f74fa333)) + (segment (start 58.166 49.085) (end 57.429501 49.821499) (width 0.25) (layer "F.Cu") (net 7) (tstamp 0253ddb8-ceed-4f0f-9780-ae3037254997)) + (segment (start 57.429501 49.821499) (end 56.350501 49.821499) (width 0.25) (layer "F.Cu") (net 7) (tstamp 502239f0-eede-464e-906e-d754b764d27d)) + (segment (start 56.350501 49.821499) (end 55.626 50.546) (width 0.25) (layer "F.Cu") (net 7) (tstamp eea6b7b8-e411-4062-97f2-443ec459fe12)) + (via (at 55.626 50.546) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 226548eb-759a-483b-b41c-1fc5a73e9088)) + (segment (start 55.88 50.292) (end 55.626 50.546) (width 0.25) (layer "B.Cu") (net 7) (tstamp 2a77a72e-d058-40b9-a6e8-cfe4c97e7ab1)) + (segment (start 55.88 48.6) (end 55.88 50.292) (width 0.25) (layer "B.Cu") (net 7) (tstamp 61d13227-ea38-4175-a5c0-8f75a3d5765d)) + (segment (start 42.863 55.626) (end 42.863 54.9525) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6352d7e2-c947-48d1-b37b-7aff220bde5f)) + (segment (start 42.863 54.9525) (end 43.942 53.8735) (width 0.25) (layer "F.Cu") (net 8) (tstamp b7e3a17f-67c0-4599-b0d4-1143ea2f1ab1)) + (segment (start 50.9005 58.6485) (end 50.672 58.42) (width 0.25) (layer "F.Cu") (net 9) (tstamp 2a29eac1-a8db-4fd6-a853-baf79bbab63d)) + (segment (start 51.334254 57.757746) (end 51.334254 55.345746) (width 0.25) (layer "F.Cu") (net 9) (tstamp 43a60ff4-399b-408e-aba8-e981b7c06296)) + (segment (start 50 47.46) (end 48.26 45.72) (width 0.25) (layer "F.Cu") (net 9) (tstamp 5ad157a6-ad06-4569-9854-16540c3cbe26)) + (segment (start 51.334254 55.345746) (end 50 54.011493) (width 0.25) (layer "F.Cu") (net 9) (tstamp 867a15de-d728-4bc5-ad09-ac63e10a96d4)) + (segment (start 52.324 58.6485) (end 50.9005 58.6485) (width 0.25) (layer "F.Cu") (net 9) (tstamp 9e2b261e-5644-449b-89ba-67c770fbb22f)) + (segment (start 50 54.011493) (end 50 47.46) (width 0.25) (layer "F.Cu") (net 9) (tstamp c0937454-7355-4d14-b0e5-271f291cdf10)) + (segment (start 50.672 58.42) (end 51.334254 57.757746) (width 0.25) (layer "F.Cu") (net 9) (tstamp cc443870-95c4-4c31-882a-1c3fbcf7b0c2)) + (segment (start 44.958 65.278) (end 44.958 64.262) (width 1) (layer "F.Cu") (net 10) (tstamp 18754093-3c38-4019-9a62-ab34f0732819)) + (segment (start 44.958 65.278) (end 50.8 71.12) (width 1) (layer "F.Cu") (net 10) (tstamp 30667af2-af8b-4b2a-b235-c587c26c2538)) + (segment (start 43.66 65.278) (end 44.958 65.278) (width 1) (layer "F.Cu") (net 10) (tstamp 30715bf3-0597-4cc9-9063-bb851e13cc0a)) + (segment (start 53.118 68.802) (end 50.8 71.12) (width 1) (layer "F.Cu") (net 10) (tstamp 46d19c3d-f88f-4311-87a1-59715af64116)) + (segment (start 42.863 60.643) (end 45.72 63.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5418252a-503c-459f-ba9a-c363687105c0)) + (segment (start 53.118 67.31) (end 53.118 68.802) (width 1) (layer "F.Cu") (net 10) (tstamp a40850b2-7aa3-4a68-96f1-b2b4e1c69011)) + (segment (start 44.958 64.262) (end 45.72 63.5) (width 1) (layer "F.Cu") (net 10) (tstamp ae685c8e-1bed-4112-b126-62f09b4ad54c)) + (segment (start 42.863 57.404) (end 42.863 60.643) (width 0.25) (layer "F.Cu") (net 10) (tstamp d0807cf5-e770-4fda-acf9-8476702eed68)) + (segment (start 50.8 71.12) (end 45.72 66.04) (width 2) (layer "In2.Cu") (net 10) (tstamp 3b762059-9ec6-4466-b77b-444774dd0d9f)) + (segment (start 45.72 66.04) (end 45.72 63.5) (width 2) (layer "In2.Cu") (net 10) (tstamp 56699c8b-9a2d-4379-ac26-ad5594cf8ac3)) + (segment (start 46.165 61.468) (end 46.228 61.468) (width 0.25) (layer "F.Cu") (net 11) (tstamp d43e63b6-2467-47ee-b2ca-96c254feabc6)) + (segment (start 46.228 61.468) (end 48.26 63.5) (width 0.25) (layer "F.Cu") (net 11) (tstamp e8a39d96-273b-47da-9f19-0d5d09e4526a)) + (segment (start 40.64 53.34) (end 35.56 53.34) (width 0.5) (layer "B.Cu") (net 11) (tstamp 12a9a9a4-5240-4526-aec8-b71066d54b17)) + (segment (start 40.64 35.56) (end 38.1 35.56) (width 0.5) (layer "B.Cu") (net 11) (tstamp 1c76a99d-47ee-45d3-8c60-a53afbf418ec)) + (segment (start 38.1 35.56) (end 35.56 33.02) (width 0.5) (layer "B.Cu") (net 11) (tstamp ca8596ab-d89f-4e53-9877-fb466749d891)) + (segment (start 61.879077 37.338) (end 62.028772 37.487695) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1fe79c20-59a0-4125-8e9a-5ac7f04c240c)) + (segment (start 60.87 37.338) (end 61.879077 37.338) (width 0.25) (layer "F.Cu") (net 12) (tstamp f5606c4e-3fda-42d3-b351-ccdf18bc5edd)) + (via (at 62.028772 37.487695) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 2588b6c4-7e9e-45b3-b141-d7502fb1665f)) + (via (at 77.5 40.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 44742a97-4ed9-48a9-a5bf-19571b151902)) + (segment (start 59.032305 37.487695) (end 62.028772 37.487695) (width 0.25) (layer "In1.Cu") (net 12) (tstamp 002cbe32-fa3e-4776-a2d2-034923a1efa1)) + (segment (start 40.64 55.88) (end 59.032305 37.487695) (width 0.25) (layer "In1.Cu") (net 12) (tstamp 35a37fc6-2aef-495b-8afa-ab8793e425fd)) + (segment (start 75.750489 42.249511) (end 63.813807 42.249511) (width 0.25) (layer "In2.Cu") (net 12) (tstamp 18eaf212-403f-446f-99c4-aee2bdcf4553)) + (segment (start 63.813807 42.249511) (end 62.028772 40.464476) (width 0.25) (layer "In2.Cu") (net 12) (tstamp 3deb5889-4db0-4e16-9bc4-0d45df1bbb33)) + (segment (start 62.028772 40.464476) (end 62.028772 37.487695) (width 0.25) (layer "In2.Cu") (net 12) (tstamp 9e2dfe20-d079-42e6-a20b-133f83511db2)) + (segment (start 77.5 40.5) (end 75.750489 42.249511) (width 0.25) (layer "In2.Cu") (net 12) (tstamp e7ae8fed-8ae0-4068-ad11-ee8b70c00dae)) + (segment (start 38.1 55.88) (end 35.56 58.42) (width 0.5) (layer "B.Cu") (net 12) (tstamp 125a3ce4-b1a8-42ee-93f5-26021dd8282f)) + (segment (start 77.668 38.12) (end 77.668 40.332) (width 0.25) (layer "B.Cu") (net 12) (tstamp 578f3f96-4458-42f4-9c17-8e2bfcd2d1c7)) + (segment (start 77.668 40.332) (end 77.5 40.5) (width 0.25) (layer "B.Cu") (net 12) (tstamp 5e20dbca-c0c1-471c-8444-d78d080e3b76)) + (segment (start 40.64 55.88) (end 38.1 55.88) (width 0.5) (layer "B.Cu") (net 12) (tstamp 9dc4bf9c-0292-4631-92be-eab575833bc0)) + (segment (start 65.232 36.068) (end 65.8 35.5) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1416384a-d556-4424-8e53-78e310d6aaa6)) + (segment (start 64.008 36.068) (end 65.232 36.068) (width 0.25) (layer "F.Cu") (net 13) (tstamp 3a690fda-df1e-4b68-8fa5-665558bc33c9)) + (segment (start 75.1 35.1) (end 66.2 35.1) (width 0.25) (layer "F.Cu") (net 13) (tstamp 753d8470-bfe6-40e6-87b2-113fc941f6c5)) + (segment (start 76 36) (end 75.1 35.1) (width 0.25) (layer "F.Cu") (net 13) (tstamp bbf6a2c3-7250-4bd8-9d8d-e8984a075ef1)) + (segment (start 66.2 35.1) (end 65.8 35.5) (width 0.25) (layer "F.Cu") (net 13) (tstamp d642e46d-6ffd-4304-8280-f19846be81a5)) + (via (at 64.9 41) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 323b96ac-1892-46ee-a946-0260a4898806)) + (via (at 76 36) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 5ce69bf4-7352-472e-bd4a-73cf35a312e5)) + (via (at 65.8 35.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 8e822d66-2342-40f8-9e03-c79ecb2082e6)) + (segment (start 58.06 41) (end 40.64 58.42) (width 0.25) (layer "In1.Cu") (net 13) (tstamp 0726c586-369d-4372-8f7d-15b1cade3c9b)) + (segment (start 64.9 41) (end 58.06 41) (width 0.25) (layer "In1.Cu") (net 13) (tstamp e36d1f3c-441e-4250-8aa5-ee13c4c70d70)) + (segment (start 65.8 35.5) (end 64.9 36.4) (width 0.25) (layer "In2.Cu") (net 13) (tstamp 11fb3c84-bd35-4e87-ae79-e155c5c47793)) + (segment (start 64.9 36.4) (end 64.9 41) (width 0.25) (layer "In2.Cu") (net 13) (tstamp f33c41ef-8771-4fde-a7e1-633cae068bac)) + (segment (start 40.64 58.42) (end 35.56 63.5) (width 0.5) (layer "B.Cu") (net 13) (tstamp 322c0f55-6236-4e32-9738-9c4da498a17c)) + (segment (start 75.668 38.12) (end 75.668 36.332) (width 0.25) (layer "B.Cu") (net 13) (tstamp 5a648316-1093-4793-9644-674273e49e10)) + (segment (start 75.668 36.332) (end 76 36) (width 0.25) (layer "B.Cu") (net 13) (tstamp cb9d9fc9-0245-46c9-8a61-bf2718c91432)) + (via (at 69.1 55.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp ac4c3a4c-29a9-4ef5-bc4c-ce2049749dd9)) + (segment (start 54.350489 40.56699) (end 53.300015 39.516516) (width 0.25) (layer "In2.Cu") (net 14) (tstamp 2787aa33-2648-4725-96a5-81f7a0c54ebe)) + (segment (start 54.350489 43.710793) (end 54.350489 40.56699) (width 0.25) (layer "In2.Cu") (net 14) (tstamp 59c6e11b-7e9c-40b9-80f4-16c01723fedd)) + (segment (start 69.1 55.5) (end 66.139696 55.5) (width 0.25) (layer "In2.Cu") (net 14) (tstamp 8b8a4e32-8932-40df-b296-105610c7fae6)) + (segment (start 66.139696 55.5) (end 54.350489 43.710793) (width 0.25) (layer "In2.Cu") (net 14) (tstamp c8445c89-9dc9-4d48-afff-412d32f58598)) + (segment (start 41.814511 42.005489) (end 46.918807 42.005489) (width 0.25) (layer "B.Cu") (net 14) (tstamp 073e76f5-bbae-4849-a954-cd3b7d59b9e9)) + (segment (start 46.918807 42.005489) (end 49.40778 39.516516) (width 0.25) (layer "B.Cu") (net 14) (tstamp 0963fa80-735b-4507-ae3f-b4fc014e9218)) + (segment (start 40.64 43.18) (end 35.56 38.1) (width 0.5) (layer "B.Cu") (net 14) (tstamp 15e8c36e-6e1b-4a2c-b4ab-bbeb1e4569b3)) + (segment (start 40.64 43.18) (end 41.814511 42.005489) (width 0.25) (layer "B.Cu") (net 14) (tstamp 1dc2a31e-883c-4c21-9f5b-2b79cf1c311b)) + (segment (start 69.668 54.932) (end 69.1 55.5) (width 0.25) (layer "B.Cu") (net 14) (tstamp 4cbab961-e4a1-4e04-8845-2d49cfa12fb8)) + (segment (start 69.668 53.32) (end 69.668 54.932) (width 0.25) (layer "B.Cu") (net 14) (tstamp baf3f28e-a716-4f8c-b0a5-1dd3e8d091c9)) + (segment (start 49.40778 39.516516) (end 53.300015 39.516516) (width 0.25) (layer "B.Cu") (net 14) (tstamp c68c74ae-db6d-43c5-acaa-a38019b8e841)) + (via (at 65.8 50.7825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 9ba9adf2-bbbf-412a-92ad-2ee204e72047)) + (segment (start 50.2 41.1) (end 52.782986 38.517014) (width 0.25) (layer "In1.Cu") (net 15) (tstamp 44483d7e-9d63-404a-a6c5-31c47d1e4b37)) + (segment (start 50.2 42.4) (end 50.2 41.1) (width 0.25) (layer "In1.Cu") (net 15) (tstamp 6ecbc3c5-32b1-4b87-82e2-5617c07450c2)) + (segment (start 48.054511 44.545489) (end 50.2 42.4) (width 0.25) (layer "In1.Cu") (net 15) (tstamp b8fe4c0a-b9f4-49e5-b7f0-d28acdc30565)) + (segment (start 41.814511 44.545489) (end 48.054511 44.545489) (width 0.25) (layer "In1.Cu") (net 15) (tstamp b98e0a1c-d1bf-4ae2-a4ee-8745cfd4459a)) + (segment (start 52.782986 38.517014) (end 53.298719 38.517014) (width 0.25) (layer "In1.Cu") (net 15) (tstamp bc0654c4-df9f-434e-9a4a-9d9a0419d002)) + (segment (start 40.64 45.72) (end 41.814511 44.545489) (width 0.25) (layer "In1.Cu") (net 15) (tstamp f394c9f5-4624-4af5-a5e0-7272299b81be)) + (segment (start 54.8 43.5246) (end 54.8 39.8) (width 0.25) (layer "In2.Cu") (net 15) (tstamp 1ad7cc18-2881-4da9-9869-7c76e168f8c4)) + (segment (start 62.0579 50.7825) (end 54.8 43.5246) (width 0.25) (layer "In2.Cu") (net 15) (tstamp 1c1b03d1-6feb-4e76-bc4f-3a2e23b12b9d)) + (segment (start 65.8 50.7825) (end 62.0579 50.7825) (width 0.25) (layer "In2.Cu") (net 15) (tstamp 2ca7539b-4825-4432-b6be-e202dad05a84)) + (segment (start 54.8 39.8) (end 53.517014 38.517014) (width 0.25) (layer "In2.Cu") (net 15) (tstamp 301a2c78-5e6c-4a17-9d9c-446808cb3ee7)) + (segment (start 53.517014 38.517014) (end 53.298719 38.517014) (width 0.25) (layer "In2.Cu") (net 15) (tstamp 528e5a63-d608-4eac-bb7f-49e7295079d8)) + (segment (start 38.1 45.72) (end 35.56 43.18) (width 0.5) (layer "B.Cu") (net 15) (tstamp 2fd16113-ebb2-4497-95fd-fc57d4a9ff1e)) + (segment (start 65.668 53.32) (end 65.668 50.9145) (width 0.25) (layer "B.Cu") (net 15) (tstamp 4b97e8a0-41a2-47fd-8f2b-06e04a95f380)) + (segment (start 40.64 45.72) (end 38.1 45.72) (width 0.5) (layer "B.Cu") (net 15) (tstamp 925d30c3-7998-492b-80b0-3212c950da23)) + (segment (start 65.668 50.9145) (end 65.8 50.7825) (width 0.25) (layer "B.Cu") (net 15) (tstamp eb2dda64-caf9-44a4-9be8-7dbbdbad2b04)) + (segment (start 46.5 49.04) (end 48.26 50.8) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5379de1a-9d2e-4dec-af3f-e5a6ed8d934f)) + (segment (start 47.815 61.468) (end 47.815 61.214) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a8d44e3-85be-4cd6-a607-589b51b0bd8c)) + (segment (start 47.815 61.214) (end 46.291 59.69) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89881578-795f-4226-a8b8-d65d20a31f37)) + (segment (start 46.291 52.769) (end 48.26 50.8) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8c2ce16f-22fa-468c-8a6e-c96f15e0ea60)) + (segment (start 46.5 48.4) (end 46.5 49.04) (width 0.25) (layer "F.Cu") (net 16) (tstamp ea58346d-4ed7-418c-af37-ad01fb9171a6)) + (segment (start 46.291 59.69) (end 46.291 52.769) (width 0.25) (layer "F.Cu") (net 16) (tstamp f84b8056-850e-4fca-8aa5-0833d29c9a3c)) + (via (at 74.7 50.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp 80a13ef8-6b26-4bfd-95fe-3c35efdcbdf6)) + (via (at 46.5 48.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp c750fc00-3b38-4a52-810b-34c4c5323c1f)) + (via (at 61.4 53) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp c9e8d893-da83-4d8b-8481-7513c777e3dd)) + (segment (start 74.7 50.9) (end 74.7 51.6) (width 0.25) (layer "In1.Cu") (net 16) (tstamp 4d9b23de-c412-4c07-abe9-d511cabe9a27)) + (segment (start 73.3 53) (end 61.4 53) (width 0.25) (layer "In1.Cu") (net 16) (tstamp b76a889d-b259-4c51-9ee1-e57b919bc218)) + (segment (start 74.7 51.6) (end 73.3 53) (width 0.25) (layer "In1.Cu") (net 16) (tstamp ed144079-b905-413f-9c5d-aeee88a15b02)) + (segment (start 49.8 48.4) (end 46.5 48.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp 134a696f-c727-4e81-8abf-4a403df4930f)) + (segment (start 61.4 53) (end 59.8 51.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp 2a3a3483-316f-4241-b81c-f29a3f322500)) + (segment (start 52.8 51.4) (end 59.8 51.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp 4b8beba7-60ce-476f-8430-98311f901402)) + (segment (start 75.668 53.32) (end 75.668 51.868) (width 0.25) (layer "B.Cu") (net 16) (tstamp 649d671c-081f-41d3-bc02-d63eeb6ad854)) + (segment (start 49.8 48.4) (end 52.8 51.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp 75c0b0e5-9ff9-499f-80df-5691d5ca8b41)) + (segment (start 75.668 51.868) (end 74.7 50.9) (width 0.25) (layer "B.Cu") (net 16) (tstamp 90d4c5dd-52e7-4834-be42-206915aa0967)) + (segment (start 69.085 43.622) (end 68.643 43.18) (width 0.25) (layer "F.Cu") (net 17) (tstamp 40174b37-0d5b-4759-9bfb-6bb4b9f8af25)) + (segment (start 66.706552 39.24548) (end 67.63548 40.174408) (width 0.25) (layer "F.Cu") (net 17) (tstamp 435e9771-043f-40d5-8bf5-38d6917a2a05)) + (segment (start 67.63548 42.17248) (end 68.643 43.18) (width 0.25) (layer "F.Cu") (net 17) (tstamp 649728ed-894f-4e56-aaf4-576692072eed)) + (segment (start 60.87 37.838) (end 61.317328 37.838) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7fabcda4-6546-4ed1-8f25-af40e775ae19)) + (segment (start 61.317328 37.838) (end 62.724808 39.24548) (width 0.25) (layer "F.Cu") (net 17) (tstamp a97f3535-3ffd-46fe-8aa6-4d79bd0d102e)) + (segment (start 67.63548 40.174408) (end 67.63548 42.17248) (width 0.25) (layer "F.Cu") (net 17) (tstamp aa45d89e-9d9c-4095-9dbb-85f76ab9eb12)) + (segment (start 62.724808 39.24548) (end 66.706552 39.24548) (width 0.25) (layer "F.Cu") (net 17) (tstamp b81a729c-5b5f-4b66-a0f8-9835b7b1caaf)) + (segment (start 71.7065 43.622) (end 69.085 43.622) (width 0.25) (layer "F.Cu") (net 17) (tstamp d99a5446-f8d5-4aea-a2e0-198c60266f52)) + (segment (start 60.87 35.838) (end 60.87 35.412414) (width 0.25) (layer "F.Cu") (net 18) (tstamp 12c74f75-0195-42fb-97f9-5b03d5a9e340)) + (segment (start 60.87 35.412414) (end 60.957914 35.3245) (width 0.25) (layer "F.Cu") (net 18) (tstamp 20bd4b4a-8564-4b04-abe5-6e2e28a68923)) + (segment (start 68.26 40.3075) (end 68.5075 40.3075) (width 0.25) (layer "F.Cu") (net 18) (tstamp 4b8e44fc-6821-4727-bcec-f5b37b566336)) + (segment (start 68.8495 40.3075) (end 68.26 40.3075) (width 0.25) (layer "F.Cu") (net 18) (tstamp 621def64-3826-4f0d-bbe1-d7b8d0dc063e)) + (segment (start 68.5075 40.3075) (end 69.3 41.1) (width 0.25) (layer "F.Cu") (net 18) (tstamp 9e7b15f8-6b0f-4983-9edd-6a7d21135bae)) + (segment (start 70.803 38.354) (end 68.8495 40.3075) (width 0.25) (layer "F.Cu") (net 18) (tstamp dd86ca39-a157-49d5-872c-403c095598b9)) + (via (at 69.3 41.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 18) (tstamp 08e7ed74-7a77-417d-a708-dc84efcdd5d0)) + (via (at 60.957914 35.3245) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 18) (tstamp 5dd3d435-8eaf-4dc3-a240-6a73ecd051ba)) + (segment (start 69.3 41.1) (end 63.5245 35.3245) (width 0.25) (layer "In1.Cu") (net 18) (tstamp 236103c9-b31e-4296-88ce-030b6dcbbe8e)) + (segment (start 63.5245 35.3245) (end 60.957914 35.3245) (width 0.25) (layer "In1.Cu") (net 18) (tstamp c58de4a7-ee1f-4035-a94f-3eb3de9f3eb6)) + (segment (start 70.457 50.2) (end 71.6 50.2) (width 0.25) (layer "F.Cu") (net 19) (tstamp 54eaa198-4efa-4272-8164-d20ce7574184)) + (segment (start 69.152 48.895) (end 70.457 50.2) (width 0.25) (layer "F.Cu") (net 19) (tstamp 915e7a07-dbb8-42b0-8450-a6805f05019e)) + (via (at 71.6 50.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp 2e94ea81-60be-418b-8abd-f0f661dfb0f9)) + (segment (start 73.668 53.32) (end 73.668 52.268) (width 0.25) (layer "B.Cu") (net 19) (tstamp 09678657-6a4c-450e-ada2-3e9503891f97)) + (segment (start 73.668 52.268) (end 71.6 50.2) (width 0.25) (layer "B.Cu") (net 19) (tstamp c3a24dfa-1f86-452b-a0d2-0eaa219a2aa3)) + (segment (start 62.3074 36.068) (end 61.5374 36.838) (width 0.25) (layer "F.Cu") (net 20) (tstamp 0bf7d8c8-bdc0-4a81-8f31-53d84ab82b91)) + (segment (start 61.5374 36.838) (end 60.87 36.838) (width 0.25) (layer "F.Cu") (net 20) (tstamp 8c5fd104-5d93-4373-a5e6-e2b67ae110a3)) + (segment (start 62.358 36.068) (end 62.3074 36.068) (width 0.25) (layer "F.Cu") (net 20) (tstamp ac8e7a30-03d0-42b1-b8ec-ff4e5af1f1d0)) + (segment (start 44.513 55.813) (end 45.3 56.6) (width 0.25) (layer "F.Cu") (net 21) (tstamp 389b7d0d-45b3-4bde-8b67-b1a66cbd2e67)) + (segment (start 55 46.6) (end 55 46.3755) (width 0.25) (layer "F.Cu") (net 21) (tstamp 535f4e26-0768-4c2c-8c4f-77ba5271afbb)) + (segment (start 44.513 57.404) (end 44.513 55.626) (width 0.25) (layer "F.Cu") (net 21) (tstamp 6c88ec13-28ba-4685-b3bf-b8ddfd60776a)) + (segment (start 53.34 48.26) (end 55 46.6) (width 0.25) (layer "F.Cu") (net 21) (tstamp 97deb758-215c-4065-bbca-2a6b4d45521e)) + (segment (start 44.513 55.626) (end 44.513 55.813) (width 0.25) (layer "F.Cu") (net 21) (tstamp f9888634-ae15-4dd1-a2ec-3ab6d4002ba7)) + (via (at 55 46.3755) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp 29a186cc-f6e0-44ad-86b1-6f3dc5c9e5f5)) + (via (at 45.3 56.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp b8065286-38bc-4e34-8500-2d17236ecd61)) + (segment (start 45.3 56.6) (end 55 46.9) (width 0.25) (layer "In1.Cu") (net 21) (tstamp 7fd56235-4d61-4fcf-8c83-c3cd882749e6)) + (segment (start 55 46.9) (end 55 46.3755) (width 0.25) (layer "In1.Cu") (net 21) (tstamp b8e96532-f5a1-4697-b0b1-e27f013ae843)) + (segment (start 58.483 50.546) (end 57.404 50.546) (width 0.25) (layer "F.Cu") (net 22) (tstamp 5d502f82-3a2a-484a-8571-f26751568e91)) + (segment (start 59.944 49.085) (end 58.483 50.546) (width 0.25) (layer "F.Cu") (net 22) (tstamp 8c1eedfc-8cfd-4fda-9b85-870c3d0e2a91)) + (via (at 57.404 50.546) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp 8e2089b8-f3c4-49e9-bd92-645acac3a97a)) + (segment (start 57.58 50.37) (end 57.404 50.546) (width 0.25) (layer "B.Cu") (net 22) (tstamp 812e83c6-cff0-4e9e-a837-f577d930f6d8)) + (segment (start 57.58 48.6) (end 57.58 50.37) (width 0.25) (layer "B.Cu") (net 22) (tstamp eb75ee71-6d06-4e03-9484-29b8afde8e1d)) + (segment (start 66.3 45.355783) (end 67.325737 46.38152) (width 0.25) (layer "F.Cu") (net 23) (tstamp 077dbd5d-fac5-41ca-9e25-19c5a89bfb1c)) + (segment (start 68.99848 46.38152) (end 69.66 45.72) (width 0.25) (layer "F.Cu") (net 23) (tstamp 27c8465a-383e-44c7-b373-abad2e3a11d4)) + (segment (start 66.3 44.5) (end 66.3 45.355783) (width 0.25) (layer "F.Cu") (net 23) (tstamp 7769ce2b-ff50-42f4-8c33-c9d1a9ffeeae)) + (segment (start 67.325737 46.38152) (end 68.99848 46.38152) (width 0.25) (layer "F.Cu") (net 23) (tstamp b276d9db-c395-4a15-90a0-a2ceafa36f09)) + (via (at 66.3 44.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (tstamp 3648739c-cc05-478a-890c-d10dcff394ba)) + (segment (start 62.264296 36.7) (end 62.513807 36.949511) (width 0.25) (layer "In1.Cu") (net 23) (tstamp 1435d970-0d00-4a37-af96-b530b6630cff)) + (segment (start 49.635704 40) (end 52.935704 36.7) (width 0.25) (layer "In1.Cu") (net 23) (tstamp 6e34a333-8e1f-40a4-baa3-88c44cbc7119)) + (segment (start 52.935704 36.7) (end 62.264296 36.7) (width 0.25) (layer "In1.Cu") (net 23) (tstamp 711fab82-f736-4425-8ade-e99cd5fe37bb)) + (segment (start 66.3 40.635704) (end 66.3 44.5) (width 0.25) (layer "In1.Cu") (net 23) (tstamp 83ccab79-e6fd-4e44-8006-07cbad921585)) + (segment (start 62.513807 36.949511) (end 62.613807 36.949511) (width 0.25) (layer "In1.Cu") (net 23) (tstamp 9b9c30db-b24b-4885-af1f-826bbc643be9)) + (segment (start 45.08 40) (end 49.635704 40) (width 0.25) (layer "In1.Cu") (net 23) (tstamp a424b2f7-2fdf-4706-b452-66353e656817)) + (segment (start 43.18 38.1) (end 45.08 40) (width 0.25) (layer "In1.Cu") (net 23) (tstamp afffc759-5421-4b9a-9fdc-e0dce2ad3b49)) + (segment (start 62.613807 36.949511) (end 66.3 40.635704) (width 0.25) (layer "In1.Cu") (net 23) (tstamp eef12abd-bcc1-43cc-970a-f1205ab5299b)) + (segment (start 65.668 38.12) (end 65.668 43.868) (width 0.25) (layer "B.Cu") (net 23) (tstamp 479b22e9-5460-420e-9ebb-478e1299f670)) + (segment (start 65.668 43.868) (end 66.3 44.5) (width 0.25) (layer "B.Cu") (net 23) (tstamp c7a8a613-4495-4091-b535-b0d98c607c50)) + (segment (start 59.5 45.8) (end 59.5 46.991) (width 0.25) (layer "F.Cu") (net 24) (tstamp 9446328e-1519-4494-8d3e-04a52bdf8641)) + (segment (start 59.5 46.991) (end 59.944 47.435) (width 0.25) (layer "F.Cu") (net 24) (tstamp b5d42ae2-4ce7-4bcf-be27-b8a8cf39caa2)) + (via (at 59.5 45.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24) (tstamp 72781d56-9b82-436b-a443-cd1490cfb7b3)) + (segment (start 54.849511 36.813807) (end 54.84951 44.74951) (width 0.25) (layer "B.Cu") (net 24) (tstamp 516632dd-ddb9-4ac2-820b-2a81606fe9ac)) + (segment (start 48.26 33.02) (end 51.290489 36.050489) (width 0.25) (layer "B.Cu") (net 24) (tstamp 51c880c8-637b-4389-abbe-63abb1eca488)) + (segment (start 51.290489 36.050489) (end 54.086194 36.05049) (width 0.25) (layer "B.Cu") (net 24) (tstamp 73eae9ca-9fa7-45e8-a07c-b72c72ef2d84)) + (segment (start 54.086194 36.05049) (end 54.849511 36.813807) (width 0.25) (layer "B.Cu") (net 24) (tstamp 9304c237-0b37-4ef0-a5f4-08db856bf4fa)) + (segment (start 55.9 45.8) (end 59.5 45.8) (width 0.25) (layer "B.Cu") (net 24) (tstamp a30a4840-efbb-421e-8008-f54e30e8f9db)) + (segment (start 54.84951 44.74951) (end 55.9 45.8) (width 0.25) (layer "B.Cu") (net 24) (tstamp c37aa990-6a39-4615-aeb1-dd5911fb182d)) + (segment (start 64.77 45.657) (end 64.77 44.57) (width 0.25) (layer "F.Cu") (net 25) (tstamp 1d47070b-0811-446d-a741-b528d633e050)) + (segment (start 76.2 39.891) (end 75.692 39.383) (width 0.25) (layer "F.Cu") (net 25) (tstamp 233cf5d1-640a-4b94-8d95-43bfae17b2ec)) + (segment (start 75.692 39.383) (end 75.383 39.383) (width 0.25) (layer "F.Cu") (net 25) (tstamp 35bd97ef-816d-4fa7-be8f-726086d12986)) + (segment (start 76.2 43.18) (end 76.2 39.891) (width 0.25) (layer "F.Cu") (net 25) (tstamp 5c36bfc9-5055-4e11-9ca0-84fbf751bcf5)) + (segment (start 68.3425 37.4) (end 67.31 38.4325) (width 0.25) (layer "F.Cu") (net 25) (tstamp 86d924d8-d98b-475e-99f6-28c795ca29d2)) + (segment (start 74.575 40.5) (end 75.692 39.383) (width 0.25) (layer "F.Cu") (net 25) (tstamp 95b60643-4219-4b35-b93a-74825fce66b1)) + (segment (start 74.1 40.5) (end 74.575 40.5) (width 0.25) (layer "F.Cu") (net 25) (tstamp 998e3ebe-4e18-4667-b7d9-ac0c32aa1769)) + (segment (start 73.4 37.4) (end 68.3425 37.4) (width 0.25) (layer "F.Cu") (net 25) (tstamp a5ed3a73-ba90-4c60-8b46-4a44286e1239)) + (segment (start 64.77 44.57) (end 64.4 44.2) (width 0.25) (layer "F.Cu") (net 25) (tstamp d2a1dad4-c9fd-488a-bacd-ab78ac10b00e)) + (segment (start 75.383 39.383) (end 73.4 37.4) (width 0.25) (layer "F.Cu") (net 25) (tstamp e50fda1c-6afd-40a1-95bb-380bafb0285a)) + (segment (start 67.31 36.144571) (end 67.630071 35.8245) (width 0.25) (layer "F.Cu") (net 25) (tstamp f2363f31-4fb2-4c64-bb95-b102b84339b4)) + (segment (start 67.31 38.4325) (end 67.31 36.144571) (width 0.25) (layer "F.Cu") (net 25) (tstamp f33189dc-7b7f-44b6-847d-c6361ca8eb89)) + (via (at 64.4 44.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25) (tstamp 161e8186-a777-4e8e-ba4a-42be337a74a5)) + (via (at 67.630071 35.8245) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25) (tstamp 4557354f-d151-4426-a64d-6d729b9b4193)) + (via (at 74.1 40.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25) (tstamp 8b7f02f8-fbae-41a9-a8af-4f1f986810d5)) + (segment (start 64.426 34.29) (end 66.095571 34.29) (width 0.25) (layer "B.Cu") (net 25) (tstamp 01b7586b-21b3-4f51-890d-7be39662a756)) + (segment (start 66.1 45.9) (end 68.5 45.9) (width 0.25) (layer "B.Cu") (net 25) (tstamp 397507a6-4ce0-4994-bad1-fd9be8b322f5)) + (segment (start 69.1 42.9) (end 70.8 41.2) (width 0.25) (layer "B.Cu") (net 25) (tstamp 6f405c62-8c53-4109-90b3-e47e57ffab02)) + (segment (start 70.8 41.2) (end 73.4 41.2) (width 0.25) (layer "B.Cu") (net 25) (tstamp 7a844233-d335-4c1b-bf39-b0f2b468a5c5)) + (segment (start 69.1 45.3) (end 69.1 42.9) (width 0.25) (layer "B.Cu") (net 25) (tstamp 887c7d89-549a-4086-a3cf-fd57aff29aa8)) + (segment (start 73.4 41.2) (end 74.1 40.5) (width 0.25) (layer "B.Cu") (net 25) (tstamp 964f73fb-0a64-464e-85e4-27cbcaa9a367)) + (segment (start 68.5 45.9) (end 69.1 45.3) (width 0.25) (layer "B.Cu") (net 25) (tstamp a25e1a49-e761-4510-b31c-038f02971922)) + (segment (start 69.668 38.12) (end 69.668 40.068) (width 0.25) (layer "B.Cu") (net 25) (tstamp ba4569c3-56fc-462c-8339-1a114c8db7b3)) + (segment (start 69.668 40.068) (end 70.8 41.2) (width 0.25) (layer "B.Cu") (net 25) (tstamp c402e615-f71a-4149-8dc4-bacc26cb2347)) + (segment (start 66.095571 34.29) (end 67.630071 35.8245) (width 0.25) (layer "B.Cu") (net 25) (tstamp db90dd6b-5f37-4d84-b908-1473337212ea)) + (segment (start 64.4 44.2) (end 66.1 45.9) (width 0.25) (layer "B.Cu") (net 25) (tstamp f9575131-d134-4aa4-8d72-df9b49a01109)) + (segment (start 71.7065 39.1005) (end 72.453 38.354) (width 0.25) (layer "F.Cu") (net 26) (tstamp 6ec4428e-4562-4862-818c-c537cd3c73b7)) + (segment (start 71.7065 41.722) (end 71.7065 39.1005) (width 0.25) (layer "F.Cu") (net 26) (tstamp c5f15e3d-0924-4c65-b930-0b66b909f9c2)) + (segment (start 66.993 40.9405) (end 66.36 40.3075) (width 0.25) (layer "F.Cu") (net 27) (tstamp 37ad7231-733e-4740-a482-9108b30cd924)) + (segment (start 66.993 43.18) (end 66.993 40.9405) (width 0.25) (layer "F.Cu") (net 27) (tstamp 979efabe-1698-4c7e-bf69-700cf600aa13)) + (segment (start 59.944 42.9515) (end 60.1095 42.9515) (width 0.25) (layer "F.Cu") (net 28) (tstamp 8082a824-c54e-44fe-9ac9-1a81aa9ce4cf)) + (segment (start 60.1095 42.9515) (end 61.722 41.339) (width 0.25) (layer "F.Cu") (net 28) (tstamp 944598cb-9300-4606-8717-8713fd6c8b0a)) + (segment (start 58.92 40.3525) (end 58.92 39.788) (width 0.25) (layer "F.Cu") (net 29) (tstamp 0ca3bdb8-c1dc-48d2-8e22-733b30eb03ab)) + (segment (start 59.944 41.3765) (end 58.92 40.3525) (width 0.25) (layer "F.Cu") (net 29) (tstamp 3bcac059-9afc-46ca-94a0-ef107d915a43)) + (segment (start 56.388 41.402) (end 56.6165 41.402) (width 0.25) (layer "F.Cu") (net 30) (tstamp 2789879d-9696-4c4a-a10e-cae0cc2d0d21)) + (segment (start 56.6165 41.402) (end 58.166 42.9515) (width 0.25) (layer "F.Cu") (net 30) (tstamp db56472f-c2ec-42a5-ae04-cfcc30eb750e)) + (segment (start 57.5 45) (end 58.166 45.666) (width 0.25) (layer "F.Cu") (net 32) (tstamp 79c79e85-0b09-41e9-87d3-fe0e9f0829da)) + (segment (start 58.166 45.666) (end 58.166 47.435) (width 0.25) (layer "F.Cu") (net 32) (tstamp c7bc1ef6-e6f6-4b70-b1ce-b0ea9c3e0398)) + (via (at 57.5 45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 32) (tstamp d93b6160-b9dc-4c31-9a60-9862377f10e7)) + (segment (start 54.514511 32.533501) (end 54.514511 33.506499) (width 0.25) (layer "B.Cu") (net 32) (tstamp 2ac02be4-8c24-43fc-9365-39afb61ab457)) + (segment (start 57.5 36.491988) (end 57.5 45) (width 0.25) (layer "B.Cu") (net 32) (tstamp 32c840c9-48a6-4507-97d8-937aeb409307)) + (segment (start 50.8 33.02) (end 51.974511 31.845489) (width 0.25) (layer "B.Cu") (net 32) (tstamp 88da01a7-cc59-4afc-b05a-f83673d2cb5a)) + (segment (start 51.974511 31.845489) (end 53.826499 31.845489) (width 0.25) (layer "B.Cu") (net 32) (tstamp ae38ae50-f372-439f-802d-1fd5a186e742)) + (segment (start 54.514511 33.506499) (end 57.5 36.491988) (width 0.25) (layer "B.Cu") (net 32) (tstamp d9056aab-ec1f-4874-858e-cd8330663482)) + (segment (start 53.826499 31.845489) (end 54.514511 32.533501) (width 0.25) (layer "B.Cu") (net 32) (tstamp eb45a919-dffe-4bb5-963e-5c02db869882)) + (segment (start 56.388 47.435) (end 56.388 44.143663) (width 0.25) (layer "F.Cu") (net 33) (tstamp 9805abaf-4b0d-449a-a349-71ca93dedf4b)) + (segment (start 56.388 44.143663) (end 56.462981 44.068682) (width 0.25) (layer "F.Cu") (net 33) (tstamp ad9627d7-2622-4160-9235-116877287756)) + (via (at 56.462981 44.068682) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 33) (tstamp c82cddb4-2da6-4f2f-8343-0d76e6736546)) + (segment (start 56.462981 36.142981) (end 56.462981 44.068682) (width 0.25) (layer "B.Cu") (net 33) (tstamp cba6e5cf-6862-419c-93a2-2f2c30b61441)) + (segment (start 53.34 33.02) (end 56.462981 36.142981) (width 0.25) (layer "B.Cu") (net 33) (tstamp d88a162c-934f-44fc-a4d8-be185be7f577)) + (segment (start 53.34 44.46) (end 52.7 45.1) (width 0.25) (layer "F.Cu") (net 34) (tstamp 37266193-3221-45b7-80a5-9445fb23f068)) + (segment (start 53.34 43.18) (end 53.34 44.46) (width 0.25) (layer "F.Cu") (net 34) (tstamp 4dcbf9c5-ec1c-46f7-83db-7a77e5a57845)) + (via (at 70.8 40.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp 384c813f-456a-4468-b059-2c676102d639)) + (via (at 63.666417 40.183951) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp 52e83473-6ec4-4114-ad44-e212fe858a85)) + (via (at 52.7 45.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp 89fcaa70-cd3a-4e5b-ad23-833d36cef46e)) + (segment (start 57.616049 40.183951) (end 52.7 45.1) (width 0.25) (layer "In1.Cu") (net 34) (tstamp 06f03e75-a9a4-43b3-b7d9-baef2444d6fb)) + (segment (start 63.666417 40.183951) (end 57.616049 40.183951) (width 0.25) (layer "In1.Cu") (net 34) (tstamp 1691f229-551f-4248-8dd4-8d3a16a97b00)) + (segment (start 65.9 41.8) (end 64 41.8) (width 0.25) (layer "In2.Cu") (net 34) (tstamp 2a7b7a4b-932b-4390-8475-ed545adb7402)) + (segment (start 67.6 40.1) (end 65.9 41.8) (width 0.25) (layer "In2.Cu") (net 34) (tstamp 39e82130-e98d-451f-bf27-440e9d56512b)) + (segment (start 64 41.8) (end 63.666417 41.466417) (width 0.25) (layer "In2.Cu") (net 34) (tstamp 3bce899e-6b44-408e-908d-a3905305057c)) + (segment (start 67.6 40.1) (end 70.8 40.1) (width 0.25) (layer "In2.Cu") (net 34) (tstamp 858a0e4f-df78-4bb8-9ec7-0cafc1cc728f)) + (segment (start 63.666417 41.466417) (end 63.666417 40.183951) (width 0.25) (layer "In2.Cu") (net 34) (tstamp 94b78a04-c091-4ecb-baf9-33183ae0abf8)) + (segment (start 71.668 38.12) (end 71.668 39.232) (width 0.25) (layer "B.Cu") (net 34) (tstamp 2fc15f18-486b-461f-9f18-168bbe62afdc)) + (segment (start 71.668 39.232) (end 70.8 40.1) (width 0.25) (layer "B.Cu") (net 34) (tstamp d1d76c42-61da-4455-8a92-d1ddf074f1c8)) + (segment (start 45.275 40.325) (end 46.5 39.1) (width 0.25) (layer "F.Cu") (net 37) (tstamp 2901276b-06b4-47c1-b011-8e30c8b70dfd)) + (segment (start 45.275 40.85) (end 45.275 40.325) (width 0.25) (layer "F.Cu") (net 37) (tstamp 437c2c52-8cdf-4c55-b319-528b97f9eff8)) + (segment (start 45.225 42.65) (end 45.225 40.9) (width 0.25) (layer "F.Cu") (net 37) (tstamp 86328385-cea1-41aa-9966-43594a6edf05)) + (segment (start 45.225 40.9) (end 45.275 40.85) (width 0.25) (layer "F.Cu") (net 37) (tstamp fae3c7f8-aec2-4abc-8d19-45381e6e5569)) + (via (at 74.4 35.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 4426d1fc-1403-4941-b237-796d8ee6b337)) + (via (at 46.5 39.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 519a1159-304e-430b-82fd-115b5ef97f94)) + (segment (start 74.4 35.9) (end 73.750999 36.549001) (width 0.25) (layer "In1.Cu") (net 37) (tstamp 0b31bb28-9d17-4412-bdab-9c298bca0efe)) + (segment (start 62.3 34.6) (end 60.500978 34.6) (width 0.25) (layer "In1.Cu") (net 37) (tstamp 47949d59-4e12-4ef9-a4bb-2e03e5fe2307)) + (segment (start 63.710693 34.874989) (end 62.574989 34.874989) (width 0.25) (layer "In1.Cu") (net 37) (tstamp 57712489-3de3-4ab9-96c5-8c4ea8633117)) + (segment (start 65.384705 36.549001) (end 63.710693 34.874989) (width 0.25) (layer "In1.Cu") (net 37) (tstamp 913c2329-00e3-4a12-b793-501973686e5f)) + (segment (start 60.500978 34.6) (end 59.050489 36.050489) (width 0.25) (layer "In1.Cu") (net 37) (tstamp 9733b1d4-0093-485c-b568-a2b49d20be02)) + (segment (start 59.050489 36.050489) (end 52.849511 36.050489) (width 0.25) (layer "In1.Cu") (net 37) (tstamp a00c59bb-4fce-42cd-9d01-271b7c3c121d)) + (segment (start 48.25 37.35) (end 46.5 39.1) (width 0.25) (layer "In1.Cu") (net 37) (tstamp b2714229-fa36-42bd-9b3d-355ae5bdd67c)) + (segment (start 51.55 37.35) (end 48.25 37.35) (width 0.25) (layer "In1.Cu") (net 37) (tstamp cfc70570-f7eb-4db9-9fb6-e0489aae2a8e)) + (segment (start 62.574989 34.874989) (end 62.3 34.6) (width 0.25) (layer "In1.Cu") (net 37) (tstamp ded2c232-cce0-49d6-a3a8-8aff15ba3385)) + (segment (start 52.849511 36.050489) (end 51.55 37.35) (width 0.25) (layer "In1.Cu") (net 37) (tstamp e3e19abd-273d-4da3-aee2-f80e79d3297f)) + (segment (start 73.750999 36.549001) (end 65.384705 36.549001) (width 0.25) (layer "In1.Cu") (net 37) (tstamp f35649b3-0ed1-4771-8b0b-fe7a241293a2)) + (segment (start 46.5 42.4) (end 43.18 45.72) (width 0.25) (layer "In2.Cu") (net 37) (tstamp db14c5c6-de9c-4a65-865f-8754daebc7f2)) + (segment (start 46.5 39.1) (end 46.5 42.4) (width 0.25) (layer "In2.Cu") (net 37) (tstamp ed9d77b7-41e5-4701-84a9-37b0ebb9cccf)) + (segment (start 73.668 38.12) (end 73.668 36.632) (width 0.25) (layer "B.Cu") (net 37) (tstamp 13512cb4-0458-4d1a-91f3-a1ba9dcb6847)) + (segment (start 73.668 36.632) (end 74.4 35.9) (width 0.25) (layer "B.Cu") (net 37) (tstamp c8ec14aa-82bf-4bf8-b26f-f3c3f0e6e279)) + (segment (start 45.3 45.3) (end 43.18 43.18) (width 0.25) (layer "F.Cu") (net 38) (tstamp 58207165-3dfd-4fe1-ae17-53b9f3c4f9fa)) + (segment (start 67.8 44.5) (end 67.8 45.639) (width 0.25) (layer "F.Cu") (net 38) (tstamp 7a1313b8-11ef-49d0-b127-27833eb8cf19)) + (segment (start 45.3 45.475) (end 45.3 45.3) (width 0.25) (layer "F.Cu") (net 38) (tstamp 8c2d998d-5f73-416b-b52b-45275a66daf2)) + (segment (start 67.8 45.639) (end 67.818 45.657) (width 0.25) (layer "F.Cu") (net 38) (tstamp 960c9d75-585f-448f-9c54-d73d12eb21e0)) + (via (at 53.47945 40.72055) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 50a0d3b7-2a74-4503-ad4c-29925aba9403)) + (via (at 67.8 44.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 68cd810a-90a2-40f6-a883-7e1747cc439d)) + (segment (start 53.47945 43.57945) (end 53.47945 40.72055) (width 0.25) (layer "In2.Cu") (net 38) (tstamp 20129df3-3afa-44a5-9210-dce29b53edff)) + (segment (start 67.8 44.5) (end 67.8 49.2) (width 0.25) (layer "In2.Cu") (net 38) (tstamp 28dc8564-8a09-47dc-9a1a-9578c41ed8bb)) + (segment (start 58.8 48.9) (end 53.47945 43.57945) (width 0.25) (layer "In2.Cu") (net 38) (tstamp 2d0d5d35-9ec4-47fc-b66a-7dda348ca43d)) + (segment (start 71.7 54.6) (end 69.7 56.6) (width 0.25) (layer "In2.Cu") (net 38) (tstamp 2fb5bd98-3b9d-4cb5-ab1b-baf9940e8447)) + (segment (start 67.8 49.2) (end 71.7 53.1) (width 0.25) (layer "In2.Cu") (net 38) (tstamp 40af772c-fdd5-4537-9b39-b7b9ff75bb01)) + (segment (start 69.7 56.6) (end 63.5 56.6) (width 0.25) (layer "In2.Cu") (net 38) (tstamp cac1789f-74c9-44a9-933d-687c435425cb)) + (segment (start 71.7 53.1) (end 71.7 54.6) (width 0.25) (layer "In2.Cu") (net 38) (tstamp cb991158-7a28-4d59-987c-7af1374043fe)) + (segment (start 58.8 51.9) (end 58.8 48.9) (width 0.25) (layer "In2.Cu") (net 38) (tstamp d254fa15-13d6-4378-bf9e-3b0ea27bbacc)) + (segment (start 63.5 56.6) (end 58.8 51.9) (width 0.25) (layer "In2.Cu") (net 38) (tstamp e4b43f08-a982-492e-b81e-07c6f113998b)) + (segment (start 48.83945 40.72055) (end 53.47945 40.72055) (width 0.25) (layer "B.Cu") (net 38) (tstamp 01a249dc-c81a-4af0-bf3a-b52f1c571204)) + (segment (start 43.18 43.18) (end 46.38 43.18) (width 0.25) (layer "B.Cu") (net 38) (tstamp 0e0159f2-8d57-4645-96a1-871043a55e18)) + (segment (start 67.668 38.12) (end 67.668 44.368) (width 0.25) (layer "B.Cu") (net 38) (tstamp 32123001-c8fc-4b30-9b36-187fd8938707)) + (segment (start 46.38 43.18) (end 48.83945 40.72055) (width 0.25) (layer "B.Cu") (net 38) (tstamp 9e8973a8-95a8-4293-aa52-3cc9c8304559)) + (segment (start 67.668 44.368) (end 67.8 44.5) (width 0.25) (layer "B.Cu") (net 38) (tstamp f08b27ea-e694-436e-a649-1fcf9c2de55d)) + (via (at 67.5 50.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 39) (tstamp 1e85bd24-0ae7-4bd7-acdc-e51e7b5522bf)) + (segment (start 52.877744 37.522256) (end 53.395987 37.522256) (width 0.25) (layer "In1.Cu") (net 39) (tstamp 3374958b-5303-4a56-b03c-4f8286cdda8b)) + (segment (start 49.76 40.64) (end 52.877744 37.522256) (width 0.25) (layer "In1.Cu") (net 39) (tstamp 855fdc2d-8c55-4fe1-a43b-5a5a2fb73895)) + (segment (start 43.18 40.64) (end 49.76 40.64) (width 0.25) (layer "In1.Cu") (net 39) (tstamp 8a175c12-3139-49a4-91a1-f281c815c4c4)) + (segment (start 55.8 41.8) (end 55.8 39.926269) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 1724659a-945a-4d2d-99b2-ba0b37e51934)) + (segment (start 67.5 50.8) (end 65.7 49) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 293affbc-63f1-4f28-97d5-f8c49ebf9f56)) + (segment (start 59.699901 44.699901) (end 58.699901 44.699901) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 527ccd05-d5da-4cd5-a1e8-c618e754c3cd)) + (segment (start 58.699901 44.699901) (end 55.8 41.8) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 71c577e3-d936-46a3-b423-170591ce19a7)) + (segment (start 64 49) (end 59.699901 44.699901) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 9711162d-f7c9-4914-84e3-c8b492efceef)) + (segment (start 65.7 49) (end 64 49) (width 0.25) (layer "In2.Cu") (net 39) (tstamp 99473679-c3ca-420c-b9e0-10fef2ec090e)) + (segment (start 55.8 39.926269) (end 53.395987 37.522256) (width 0.25) (layer "In2.Cu") (net 39) (tstamp f7946da8-5f49-443b-ae77-299315b55ae1)) + (segment (start 67.668 50.968) (end 67.5 50.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 79a6eec6-3a28-4a1f-93af-7e927e78edc8)) + (segment (start 67.668 53.32) (end 67.668 50.968) (width 0.25) (layer "B.Cu") (net 39) (tstamp ad1fa3cb-9a85-4754-9ebd-2b3df4f46425)) + (segment (start 49.022 56.705) (end 48.959 56.642) (width 0.25) (layer "F.Cu") (net 40) (tstamp 2d5b5dc1-9543-4747-a108-266003ba7e70)) + (segment (start 49.022 58.42) (end 49.022 56.705) (width 0.25) (layer "F.Cu") (net 40) (tstamp 6eb6b18a-8f9b-431e-a273-cbb41ebc4564)) + (segment (start 58.42 34.203274) (end 59.323274 33.3) (width 0.25) (layer "F.Cu") (net 71) (tstamp 32a69904-9af6-4106-bfda-2bcdca290bf9)) + (segment (start 59.323274 33.3) (end 59.4 33.3) (width 0.25) (layer "F.Cu") (net 71) (tstamp 5dccc53a-700f-46db-9823-66b80f6d8bf4)) + (segment (start 58.42 34.888) (end 58.42 34.203274) (width 0.25) (layer "F.Cu") (net 71) (tstamp 9e1e9391-4d0b-42bd-bfc2-0ccc2468c1e6)) + (via (at 59.4 33.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 71) (tstamp 8925d80d-c42b-4d7d-87cd-6eee90be839c)) + (segment (start 59.455 33.245) (end 59.4 33.3) (width 0.25) (layer "B.Cu") (net 71) (tstamp 2e13bfdb-8f64-4760-bc43-998de455bb07)) + (segment (start 59.455 31.378) (end 59.455 33.245) (width 0.25) (layer "B.Cu") (net 71) (tstamp 4914acac-ba5e-459c-b6dc-8f9f893d4deb)) + (segment (start 57.92 33.604675) (end 58.224675 33.3) (width 0.25) (layer "F.Cu") (net 72) (tstamp c701de9a-d1d9-46a6-bc34-223a4df3e4e8)) + (segment (start 57.92 34.888) (end 57.92 33.604675) (width 0.25) (layer "F.Cu") (net 72) (tstamp ecbb142d-2111-4cb9-89d4-4b33682cae80)) + (via (at 58.224675 33.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 72) (tstamp 0d4831dd-6a0f-4517-9dc5-e34f4cf95482)) + (segment (start 58.805 32.719675) (end 58.224675 33.3) (width 0.25) (layer "B.Cu") (net 72) (tstamp 40663ba9-5f62-4441-9af0-003398564af1)) + (segment (start 58.805 31.378) (end 58.805 32.719675) (width 0.25) (layer "B.Cu") (net 72) (tstamp 62c31f24-3f41-44ce-807d-c7c604fbcdb4)) - (zone (net 1) (net_name GND) (layer F.Cu) (tstamp 60B17E61) (hatch edge 0.508) + (zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000060b17e61) (hatch edge 0.508) (connect_pads (clearance 0.508)) - (min_thickness 0.254) - (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts - (xy 78.74 74.93) (xy 31.115 74.93) (xy 31.115 27.305) (xy 78.74 27.305) - ) - ) - (filled_polygon - (pts - (xy 53.939 27.801) (xy 53.939 28.201) (xy 54.972 28.201) (xy 54.972 28.181) (xy 55.226 28.181) - (xy 55.226 28.201) (xy 56.259 28.201) (xy 56.259 27.801) (xy 56.234612 27.685) (xy 61.113388 27.685) - (xy 61.089 27.801) (xy 61.089 28.201) (xy 62.122 28.201) (xy 62.122 28.181) (xy 62.376 28.181) - (xy 62.376 28.201) (xy 63.409 28.201) (xy 63.409 27.801) (xy 63.384612 27.685) (xy 74.966496 27.685) - (xy 75.643248 27.751356) (xy 76.261998 27.938168) (xy 76.832675 28.241602) (xy 77.333548 28.650104) (xy 77.745536 29.148112) - (xy 78.052948 29.716658) (xy 78.244075 30.33409) (xy 78.315001 31.008903) (xy 78.315 70.966496) (xy 78.248644 71.643248) - (xy 78.061833 72.261996) (xy 77.758398 72.832675) (xy 77.349896 73.333548) (xy 76.851888 73.745536) (xy 76.283342 74.052948) - (xy 75.665909 74.244075) (xy 74.991107 74.315) (xy 35.033504 74.315) (xy 34.356752 74.248644) (xy 33.738004 74.061833) - (xy 33.167325 73.758398) (xy 32.666452 73.349896) (xy 32.368535 72.989775) (xy 41.18983 72.989775) (xy 41.429976 73.377018) - (xy 41.923877 73.637641) (xy 42.459133 73.796901) (xy 43.015174 73.848678) (xy 43.570632 73.790981) (xy 44.104161 73.626028) - (xy 44.570024 73.377018) (xy 44.81017 72.989775) (xy 43 71.179605) (xy 41.18983 72.989775) (xy 32.368535 72.989775) - (xy 32.254464 72.851888) (xy 31.947052 72.283342) (xy 31.755925 71.665909) (xy 31.68753 71.015174) (xy 40.151322 71.015174) - (xy 40.209019 71.570632) (xy 40.373972 72.104161) (xy 40.622982 72.570024) (xy 41.010225 72.81017) (xy 42.820395 71) - (xy 43.179605 71) (xy 44.989775 72.81017) (xy 45.377018 72.570024) (xy 45.637641 72.076123) (xy 45.796901 71.540867) - (xy 45.848678 70.984826) (xy 45.790981 70.429368) (xy 45.626028 69.895839) (xy 45.377018 69.429976) (xy 44.989775 69.18983) - (xy 43.179605 71) (xy 42.820395 71) (xy 41.010225 69.18983) (xy 40.622982 69.429976) (xy 40.362359 69.923877) - (xy 40.203099 70.459133) (xy 40.151322 71.015174) (xy 31.68753 71.015174) (xy 31.685 70.991107) (xy 31.685 70.08) - (xy 33.421928 70.08) (xy 33.434188 70.204482) (xy 33.470498 70.32418) (xy 33.529463 70.434494) (xy 33.608815 70.531185) - (xy 33.705506 70.610537) (xy 33.81582 70.669502) (xy 33.935518 70.705812) (xy 34.06 70.718072) (xy 35.27425 70.715) - (xy 35.433 70.55625) (xy 35.433 68.707) (xy 35.687 68.707) (xy 35.687 70.55625) (xy 35.84575 70.715) - (xy 37.06 70.718072) (xy 37.184482 70.705812) (xy 37.30418 70.669502) (xy 37.414494 70.610537) (xy 37.511185 70.531185) - (xy 37.590537 70.434494) (xy 37.649502 70.32418) (xy 37.685812 70.204482) (xy 37.698072 70.08) (xy 37.695366 69.010225) - (xy 41.18983 69.010225) (xy 43 70.820395) (xy 44.81017 69.010225) (xy 44.570024 68.622982) (xy 44.076123 68.362359) - (xy 43.540867 68.203099) (xy 42.984826 68.151322) (xy 42.429368 68.209019) (xy 41.895839 68.373972) (xy 41.429976 68.622982) - (xy 41.18983 69.010225) (xy 37.695366 69.010225) (xy 37.695 68.86575) (xy 37.53625 68.707) (xy 35.687 68.707) - (xy 35.433 68.707) (xy 33.58375 68.707) (xy 33.425 68.86575) (xy 33.421928 70.08) (xy 31.685 70.08) - (xy 31.685 67.08) (xy 33.421928 67.08) (xy 33.425 68.29425) (xy 33.58375 68.453) (xy 35.433 68.453) - (xy 35.433 66.60375) (xy 35.687 66.60375) (xy 35.687 68.453) (xy 37.53625 68.453) (xy 37.695 68.29425) - (xy 37.698072 67.08) (xy 37.685812 66.955518) (xy 37.649502 66.83582) (xy 37.590537 66.725506) (xy 37.511185 66.628815) - (xy 37.414494 66.549463) (xy 37.30418 66.490498) (xy 37.184482 66.454188) (xy 37.06 66.441928) (xy 35.84575 66.445) - (xy 35.687 66.60375) (xy 35.433 66.60375) (xy 35.27425 66.445) (xy 34.06 66.441928) (xy 33.935518 66.454188) - (xy 33.81582 66.490498) (xy 33.705506 66.549463) (xy 33.608815 66.628815) (xy 33.529463 66.725506) (xy 33.470498 66.83582) - (xy 33.434188 66.955518) (xy 33.421928 67.08) (xy 31.685 67.08) (xy 31.685 66.128) (xy 38.871928 66.128) - (xy 38.884188 66.252482) (xy 38.920498 66.37218) (xy 38.979463 66.482494) (xy 39.058815 66.579185) (xy 39.155506 66.658537) - (xy 39.26582 66.717502) (xy 39.385518 66.753812) (xy 39.51 66.766072) (xy 39.87425 66.763) (xy 40.033 66.60425) - (xy 40.033 65.405) (xy 40.287 65.405) (xy 40.287 66.60425) (xy 40.44575 66.763) (xy 40.81 66.766072) - (xy 40.934482 66.753812) (xy 41.05418 66.717502) (xy 41.164494 66.658537) (xy 41.261185 66.579185) (xy 41.340537 66.482494) - (xy 41.399502 66.37218) (xy 41.435812 66.252482) (xy 41.448072 66.128) (xy 41.445 65.56375) (xy 41.28625 65.405) - (xy 40.287 65.405) (xy 40.033 65.405) (xy 39.03375 65.405) (xy 38.875 65.56375) (xy 38.871928 66.128) - (xy 31.685 66.128) (xy 31.685 63.289721) (xy 33.425 63.289721) (xy 33.425 63.710279) (xy 33.507047 64.122756) - (xy 33.667988 64.511302) (xy 33.901637 64.860983) (xy 34.199017 65.158363) (xy 34.548698 65.392012) (xy 34.937244 65.552953) - (xy 35.349721 65.635) (xy 35.770279 65.635) (xy 36.182756 65.552953) (xy 36.571302 65.392012) (xy 36.920983 65.158363) - (xy 37.218363 64.860983) (xy 37.452012 64.511302) (xy 37.486516 64.428) (xy 38.871928 64.428) (xy 38.875 64.99225) - (xy 39.03375 65.151) (xy 40.033 65.151) (xy 40.033 63.95175) (xy 40.287 63.95175) (xy 40.287 65.151) - (xy 41.28625 65.151) (xy 41.445 64.99225) (xy 41.448072 64.428) (xy 41.435812 64.303518) (xy 41.399502 64.18382) - (xy 41.340537 64.073506) (xy 41.261185 63.976815) (xy 41.164494 63.897463) (xy 41.05418 63.838498) (xy 40.934482 63.802188) - (xy 40.81 63.789928) (xy 40.44575 63.793) (xy 40.287 63.95175) (xy 40.033 63.95175) (xy 39.87425 63.793) - (xy 39.51 63.789928) (xy 39.385518 63.802188) (xy 39.26582 63.838498) (xy 39.155506 63.897463) (xy 39.058815 63.976815) - (xy 38.979463 64.073506) (xy 38.920498 64.18382) (xy 38.884188 64.303518) (xy 38.871928 64.428) (xy 37.486516 64.428) - (xy 37.612953 64.122756) (xy 37.695 63.710279) (xy 37.695 63.289721) (xy 37.612953 62.877244) (xy 37.452012 62.488698) - (xy 37.218363 62.139017) (xy 36.920983 61.841637) (xy 36.873635 61.81) (xy 39.151928 61.81) (xy 39.164188 61.934482) - (xy 39.200498 62.05418) (xy 39.259463 62.164494) (xy 39.338815 62.261185) (xy 39.435506 62.340537) (xy 39.54582 62.399502) - (xy 39.665518 62.435812) (xy 39.79 62.448072) (xy 40.35425 62.445) (xy 40.513 62.28625) (xy 40.513 61.087) - (xy 39.31375 61.087) (xy 39.155 61.24575) (xy 39.151928 61.81) (xy 36.873635 61.81) (xy 36.571302 61.607988) - (xy 36.182756 61.447047) (xy 35.770279 61.365) (xy 35.349721 61.365) (xy 34.937244 61.447047) (xy 34.548698 61.607988) - (xy 34.199017 61.841637) (xy 33.901637 62.139017) (xy 33.667988 62.488698) (xy 33.507047 62.877244) (xy 33.425 63.289721) - (xy 31.685 63.289721) (xy 31.685 58.209721) (xy 33.425 58.209721) (xy 33.425 58.630279) (xy 33.507047 59.042756) - (xy 33.667988 59.431302) (xy 33.901637 59.780983) (xy 34.199017 60.078363) (xy 34.548698 60.312012) (xy 34.937244 60.472953) - (xy 35.349721 60.555) (xy 35.770279 60.555) (xy 36.182756 60.472953) (xy 36.571302 60.312012) (xy 36.920983 60.078363) - (xy 37.218363 59.780983) (xy 37.452012 59.431302) (xy 37.612953 59.042756) (xy 37.695 58.630279) (xy 37.695 58.209721) - (xy 37.612953 57.797244) (xy 37.452012 57.408698) (xy 37.218363 57.059017) (xy 36.920983 56.761637) (xy 36.571302 56.527988) - (xy 36.182756 56.367047) (xy 35.770279 56.285) (xy 35.349721 56.285) (xy 34.937244 56.367047) (xy 34.548698 56.527988) - (xy 34.199017 56.761637) (xy 33.901637 57.059017) (xy 33.667988 57.408698) (xy 33.507047 57.797244) (xy 33.425 58.209721) - (xy 31.685 58.209721) (xy 31.685 53.129721) (xy 33.425 53.129721) (xy 33.425 53.550279) (xy 33.507047 53.962756) - (xy 33.667988 54.351302) (xy 33.901637 54.700983) (xy 34.199017 54.998363) (xy 34.548698 55.232012) (xy 34.937244 55.392953) - (xy 35.349721 55.475) (xy 35.770279 55.475) (xy 36.182756 55.392953) (xy 36.571302 55.232012) (xy 36.920983 54.998363) - (xy 37.218363 54.700983) (xy 37.452012 54.351302) (xy 37.612953 53.962756) (xy 37.695 53.550279) (xy 37.695 53.129721) - (xy 37.612953 52.717244) (xy 37.452012 52.328698) (xy 37.218363 51.979017) (xy 36.920983 51.681637) (xy 36.571302 51.447988) - (xy 36.182756 51.287047) (xy 35.770279 51.205) (xy 35.349721 51.205) (xy 34.937244 51.287047) (xy 34.548698 51.447988) - (xy 34.199017 51.681637) (xy 33.901637 51.979017) (xy 33.667988 52.328698) (xy 33.507047 52.717244) (xy 33.425 53.129721) - (xy 31.685 53.129721) (xy 31.685 49.76) (xy 33.421928 49.76) (xy 33.434188 49.884482) (xy 33.470498 50.00418) - (xy 33.529463 50.114494) (xy 33.608815 50.211185) (xy 33.705506 50.290537) (xy 33.81582 50.349502) (xy 33.935518 50.385812) - (xy 34.06 50.398072) (xy 35.27425 50.395) (xy 35.433 50.23625) (xy 35.433 48.387) (xy 35.687 48.387) - (xy 35.687 50.23625) (xy 35.84575 50.395) (xy 37.06 50.398072) (xy 37.184482 50.385812) (xy 37.30418 50.349502) - (xy 37.414494 50.290537) (xy 37.511185 50.211185) (xy 37.590537 50.114494) (xy 37.649502 50.00418) (xy 37.685812 49.884482) - (xy 37.698072 49.76) (xy 37.696428 49.11) (xy 39.151928 49.11) (xy 39.164188 49.234482) (xy 39.200498 49.35418) - (xy 39.259463 49.464494) (xy 39.338815 49.561185) (xy 39.435506 49.640537) (xy 39.54582 49.699502) (xy 39.665518 49.735812) - (xy 39.79 49.748072) (xy 40.35425 49.745) (xy 40.513 49.58625) (xy 40.513 48.387) (xy 39.31375 48.387) - (xy 39.155 48.54575) (xy 39.151928 49.11) (xy 37.696428 49.11) (xy 37.695 48.54575) (xy 37.53625 48.387) - (xy 35.687 48.387) (xy 35.433 48.387) (xy 33.58375 48.387) (xy 33.425 48.54575) (xy 33.421928 49.76) - (xy 31.685 49.76) (xy 31.685 46.76) (xy 33.421928 46.76) (xy 33.425 47.97425) (xy 33.58375 48.133) - (xy 35.433 48.133) (xy 35.433 46.28375) (xy 35.687 46.28375) (xy 35.687 48.133) (xy 37.53625 48.133) - (xy 37.695 47.97425) (xy 37.698072 46.76) (xy 37.685812 46.635518) (xy 37.649502 46.51582) (xy 37.590537 46.405506) - (xy 37.511185 46.308815) (xy 37.414494 46.229463) (xy 37.30418 46.170498) (xy 37.184482 46.134188) (xy 37.06 46.121928) - (xy 35.84575 46.125) (xy 35.687 46.28375) (xy 35.433 46.28375) (xy 35.27425 46.125) (xy 34.06 46.121928) - (xy 33.935518 46.134188) (xy 33.81582 46.170498) (xy 33.705506 46.229463) (xy 33.608815 46.308815) (xy 33.529463 46.405506) - (xy 33.470498 46.51582) (xy 33.434188 46.635518) (xy 33.421928 46.76) (xy 31.685 46.76) (xy 31.685 37.889721) - (xy 33.425 37.889721) (xy 33.425 38.310279) (xy 33.507047 38.722756) (xy 33.667988 39.111302) (xy 33.901637 39.460983) - (xy 34.199017 39.758363) (xy 34.548698 39.992012) (xy 34.937244 40.152953) (xy 35.349721 40.235) (xy 35.770279 40.235) - (xy 36.182756 40.152953) (xy 36.571302 39.992012) (xy 36.920983 39.758363) (xy 37.218363 39.460983) (xy 37.452012 39.111302) - (xy 37.556105 38.86) (xy 39.361822 38.86) (xy 39.486525 39.046632) (xy 39.693368 39.253475) (xy 39.86776 39.37) - (xy 39.693368 39.486525) (xy 39.486525 39.693368) (xy 39.32401 39.936589) (xy 39.212068 40.206842) (xy 39.155 40.49374) - (xy 39.155 40.78626) (xy 39.19879 41.006407) (xy 37.785199 42.42) (xy 37.556105 42.42) (xy 37.452012 42.168698) - (xy 37.218363 41.819017) (xy 36.920983 41.521637) (xy 36.571302 41.287988) (xy 36.182756 41.127047) (xy 35.770279 41.045) - (xy 35.349721 41.045) (xy 34.937244 41.127047) (xy 34.548698 41.287988) (xy 34.199017 41.521637) (xy 33.901637 41.819017) - (xy 33.667988 42.168698) (xy 33.507047 42.557244) (xy 33.425 42.969721) (xy 33.425 43.390279) (xy 33.507047 43.802756) - (xy 33.667988 44.191302) (xy 33.901637 44.540983) (xy 34.199017 44.838363) (xy 34.548698 45.072012) (xy 34.937244 45.232953) - (xy 35.349721 45.315) (xy 35.770279 45.315) (xy 36.182756 45.232953) (xy 36.571302 45.072012) (xy 36.920983 44.838363) - (xy 37.218363 44.540983) (xy 37.452012 44.191302) (xy 37.556105 43.94) (xy 38.062678 43.94) (xy 38.1 43.943676) - (xy 38.137322 43.94) (xy 38.137333 43.94) (xy 38.248986 43.929003) (xy 38.392247 43.885546) (xy 38.524276 43.814974) - (xy 38.640001 43.720001) (xy 38.663804 43.690997) (xy 39.155 43.199801) (xy 39.155 43.32626) (xy 39.212068 43.613158) - (xy 39.32401 43.883411) (xy 39.486525 44.126632) (xy 39.693368 44.333475) (xy 39.86776 44.45) (xy 39.693368 44.566525) - (xy 39.486525 44.773368) (xy 39.32401 45.016589) (xy 39.212068 45.286842) (xy 39.155 45.57374) (xy 39.155 45.86626) - (xy 39.212068 46.153158) (xy 39.32401 46.423411) (xy 39.486525 46.666632) (xy 39.61838 46.798487) (xy 39.54582 46.820498) - (xy 39.435506 46.879463) (xy 39.338815 46.958815) (xy 39.259463 47.055506) (xy 39.200498 47.16582) (xy 39.164188 47.285518) - (xy 39.151928 47.41) (xy 39.155 47.97425) (xy 39.31375 48.133) (xy 40.513 48.133) (xy 40.513 48.113) - (xy 40.767 48.113) (xy 40.767 48.133) (xy 40.787 48.133) (xy 40.787 48.387) (xy 40.767 48.387) - (xy 40.767 49.58625) (xy 40.92575 49.745) (xy 41.49 49.748072) (xy 41.599618 49.737276) (xy 41.599618 50.196296) - (xy 41.595942 50.233618) (xy 41.599618 50.27094) (xy 41.599618 50.27095) (xy 41.610615 50.382603) (xy 41.649842 50.51192) - (xy 41.654072 50.525864) (xy 41.658001 50.533214) (xy 41.658 51.599332) (xy 41.658001 51.599339) (xy 41.658 52.257893) - (xy 41.586632 52.186525) (xy 41.343411 52.02401) (xy 41.073158 51.912068) (xy 40.78626 51.855) (xy 40.49374 51.855) - (xy 40.206842 51.912068) (xy 39.936589 52.02401) (xy 39.693368 52.186525) (xy 39.486525 52.393368) (xy 39.32401 52.636589) - (xy 39.212068 52.906842) (xy 39.155 53.19374) (xy 39.155 53.48626) (xy 39.212068 53.773158) (xy 39.32401 54.043411) - (xy 39.486525 54.286632) (xy 39.693368 54.493475) (xy 39.86776 54.61) (xy 39.693368 54.726525) (xy 39.486525 54.933368) - (xy 39.32401 55.176589) (xy 39.212068 55.446842) (xy 39.155 55.73374) (xy 39.155 56.02626) (xy 39.212068 56.313158) - (xy 39.32401 56.583411) (xy 39.486525 56.826632) (xy 39.693368 57.033475) (xy 39.86776 57.15) (xy 39.693368 57.266525) - (xy 39.486525 57.473368) (xy 39.32401 57.716589) (xy 39.212068 57.986842) (xy 39.155 58.27374) (xy 39.155 58.56626) - (xy 39.212068 58.853158) (xy 39.32401 59.123411) (xy 39.486525 59.366632) (xy 39.61838 59.498487) (xy 39.54582 59.520498) - (xy 39.435506 59.579463) (xy 39.338815 59.658815) (xy 39.259463 59.755506) (xy 39.200498 59.86582) (xy 39.164188 59.985518) - (xy 39.151928 60.11) (xy 39.155 60.67425) (xy 39.31375 60.833) (xy 40.513 60.833) (xy 40.513 60.813) - (xy 40.767 60.813) (xy 40.767 60.833) (xy 40.787 60.833) (xy 40.787 61.087) (xy 40.767 61.087) - (xy 40.767 62.28625) (xy 40.92575 62.445) (xy 41.49 62.448072) (xy 41.614482 62.435812) (xy 41.73418 62.399502) - (xy 41.844494 62.340537) (xy 41.941185 62.261185) (xy 42.020537 62.164494) (xy 42.02475 62.156611) (xy 42.058394 62.197606) - (xy 42.097866 62.23) (xy 42.058394 62.262394) (xy 41.954169 62.389392) (xy 41.876722 62.534284) (xy 41.829031 62.6915) - (xy 41.812928 62.855) (xy 41.812928 63.255) (xy 41.829031 63.4185) (xy 41.876722 63.575716) (xy 41.954169 63.720608) - (xy 42.058394 63.847606) (xy 42.185392 63.951831) (xy 42.330284 64.029278) (xy 42.478992 64.074388) (xy 42.420498 64.18382) - (xy 42.384188 64.303518) (xy 42.371928 64.428) (xy 42.371928 66.128) (xy 42.384188 66.252482) (xy 42.420498 66.37218) - (xy 42.479463 66.482494) (xy 42.558815 66.579185) (xy 42.655506 66.658537) (xy 42.76582 66.717502) (xy 42.885518 66.753812) - (xy 43.01 66.766072) (xy 44.254187 66.766072) (xy 44.353969 66.952751) (xy 44.558286 67.201714) (xy 44.620687 67.252925) - (xy 48.665 71.297239) (xy 48.665 71.330279) (xy 48.747047 71.742756) (xy 48.907988 72.131302) (xy 49.141637 72.480983) - (xy 49.439017 72.778363) (xy 49.788698 73.012012) (xy 50.177244 73.172953) (xy 50.589721 73.255) (xy 51.010279 73.255) - (xy 51.422756 73.172953) (xy 51.811302 73.012012) (xy 52.160983 72.778363) (xy 52.319346 72.62) (xy 53.741928 72.62) - (xy 53.754188 72.744482) (xy 53.790498 72.86418) (xy 53.849463 72.974494) (xy 53.928815 73.071185) (xy 54.025506 73.150537) - (xy 54.13582 73.209502) (xy 54.255518 73.245812) (xy 54.38 73.258072) (xy 55.59425 73.255) (xy 55.753 73.09625) - (xy 55.753 71.247) (xy 56.007 71.247) (xy 56.007 73.09625) (xy 56.16575 73.255) (xy 57.38 73.258072) - (xy 57.504482 73.245812) (xy 57.62418 73.209502) (xy 57.734494 73.150537) (xy 57.831185 73.071185) (xy 57.910537 72.974494) - (xy 57.969502 72.86418) (xy 58.005812 72.744482) (xy 58.018072 72.62) (xy 58.015 71.40575) (xy 57.85625 71.247) - (xy 56.007 71.247) (xy 55.753 71.247) (xy 53.90375 71.247) (xy 53.745 71.40575) (xy 53.741928 72.62) - (xy 52.319346 72.62) (xy 52.458363 72.480983) (xy 52.692012 72.131302) (xy 52.852953 71.742756) (xy 52.935 71.330279) - (xy 52.935 71.297238) (xy 53.744124 70.488114) (xy 53.745 70.83425) (xy 53.90375 70.993) (xy 55.753 70.993) - (xy 55.753 69.14375) (xy 56.007 69.14375) (xy 56.007 70.993) (xy 57.85625 70.993) (xy 58.015 70.83425) - (xy 58.018072 69.62) (xy 58.005812 69.495518) (xy 57.969502 69.37582) (xy 57.910537 69.265506) (xy 57.831185 69.168815) - (xy 57.734494 69.089463) (xy 57.62418 69.030498) (xy 57.504482 68.994188) (xy 57.38 68.981928) (xy 56.16575 68.985) - (xy 56.007 69.14375) (xy 55.753 69.14375) (xy 55.59425 68.985) (xy 54.743099 68.982847) (xy 54.753 68.882322) - (xy 54.753 68.88232) (xy 54.760911 68.802001) (xy 54.753 68.721681) (xy 54.753 68.715501) (xy 54.819185 68.661185) - (xy 54.898537 68.564494) (xy 54.957502 68.45418) (xy 54.993812 68.334482) (xy 55.006072 68.21) (xy 55.006072 66.41) - (xy 54.993812 66.285518) (xy 54.957502 66.16582) (xy 54.898537 66.055506) (xy 54.819185 65.958815) (xy 54.722494 65.879463) - (xy 54.61218 65.820498) (xy 54.492482 65.784188) (xy 54.368 65.771928) (xy 53.680057 65.771928) (xy 53.438515 65.698657) - (xy 53.118 65.667089) (xy 52.797484 65.698657) (xy 52.555942 65.771928) (xy 51.868 65.771928) (xy 51.743518 65.784188) - (xy 51.62382 65.820498) (xy 51.513506 65.879463) (xy 51.416815 65.958815) (xy 51.337463 66.055506) (xy 51.278498 66.16582) - (xy 51.242188 66.285518) (xy 51.229928 66.41) (xy 51.229928 68.21) (xy 51.242188 68.334482) (xy 51.249424 68.358337) - (xy 50.8 68.807761) (xy 47.355 65.362762) (xy 47.355 64.681293) (xy 47.556589 64.81599) (xy 47.826842 64.927932) - (xy 48.11374 64.985) (xy 48.40626 64.985) (xy 48.693158 64.927932) (xy 48.963411 64.81599) (xy 49.206632 64.653475) - (xy 49.338487 64.52162) (xy 49.360498 64.59418) (xy 49.419463 64.704494) (xy 49.498815 64.801185) (xy 49.595506 64.880537) - (xy 49.70582 64.939502) (xy 49.825518 64.975812) (xy 49.95 64.988072) (xy 51.65 64.988072) (xy 51.774482 64.975812) - (xy 51.89418 64.939502) (xy 52.004494 64.880537) (xy 52.101185 64.801185) (xy 52.180537 64.704494) (xy 52.239502 64.59418) - (xy 52.275812 64.474482) (xy 52.288072 64.35) (xy 52.288072 62.65) (xy 52.275812 62.525518) (xy 52.239502 62.40582) - (xy 52.180537 62.295506) (xy 52.101185 62.198815) (xy 52.019002 62.131369) (xy 52.019002 61.796) (xy 52.992928 61.796) - (xy 52.996 62.01025) (xy 53.15475 62.169) (xy 54.229 62.169) (xy 54.229 61.31975) (xy 54.07025 61.161) - (xy 53.631 61.157928) (xy 53.506518 61.170188) (xy 53.38682 61.206498) (xy 53.276506 61.265463) (xy 53.179815 61.344815) - (xy 53.100463 61.441506) (xy 53.041498 61.55182) (xy 53.005188 61.671518) (xy 52.992928 61.796) (xy 52.019002 61.796) - (xy 52.019002 60.538066) (xy 52.13075 60.549072) (xy 52.56825 60.549072) (xy 52.735408 60.532608) (xy 52.896142 60.48385) - (xy 53.044275 60.404671) (xy 53.174115 60.298115) (xy 53.280671 60.168275) (xy 53.35985 60.020142) (xy 53.408608 59.859408) - (xy 53.425072 59.69225) (xy 53.425072 59.435229) (xy 54.188301 58.672) (xy 55.409928 58.672) (xy 55.413 59.13625) - (xy 55.57175 59.295) (xy 56.921 59.295) (xy 56.921 58.19575) (xy 57.175 58.19575) (xy 57.175 59.295) - (xy 58.52425 59.295) (xy 58.683 59.13625) (xy 58.686072 58.672) (xy 58.673812 58.547518) (xy 58.637502 58.42782) - (xy 58.578537 58.317506) (xy 58.499185 58.220815) (xy 58.402494 58.141463) (xy 58.29218 58.082498) (xy 58.172482 58.046188) - (xy 58.048 58.033928) (xy 57.33375 58.037) (xy 57.175 58.19575) (xy 56.921 58.19575) (xy 56.76225 58.037) - (xy 56.048 58.033928) (xy 55.923518 58.046188) (xy 55.80382 58.082498) (xy 55.693506 58.141463) (xy 55.596815 58.220815) - (xy 55.517463 58.317506) (xy 55.458498 58.42782) (xy 55.422188 58.547518) (xy 55.409928 58.672) (xy 54.188301 58.672) - (xy 54.247507 58.612795) (xy 54.338256 58.575205) (xy 54.507774 58.461937) (xy 54.651937 58.317774) (xy 54.765205 58.148256) - (xy 54.843226 57.959898) (xy 54.883 57.759939) (xy 54.883 57.556061) (xy 54.843226 57.356102) (xy 54.765205 57.167744) - (xy 54.651937 56.998226) (xy 54.507774 56.854063) (xy 54.338256 56.740795) (xy 54.149898 56.662774) (xy 53.949939 56.623) - (xy 53.746061 56.623) (xy 53.546102 56.662774) (xy 53.357744 56.740795) (xy 53.216405 56.835234) (xy 53.179606 56.790394) - (xy 53.153537 56.769) (xy 53.179606 56.747606) (xy 53.283831 56.620608) (xy 53.361278 56.475716) (xy 53.408969 56.3185) - (xy 53.425072 56.155) (xy 53.425072 55.605) (xy 53.408969 55.4415) (xy 53.361278 55.284284) (xy 53.283831 55.139392) - (xy 53.179606 55.012394) (xy 53.052608 54.908169) (xy 52.907716 54.830722) (xy 52.7505 54.783031) (xy 52.587 54.766928) - (xy 52.187 54.766928) (xy 52.0235 54.783031) (xy 51.866284 54.830722) (xy 51.721392 54.908169) (xy 51.61941 54.991863) - (xy 51.588185 54.953815) (xy 51.491494 54.874463) (xy 51.38118 54.815498) (xy 51.261482 54.779188) (xy 51.137 54.766928) - (xy 51.04164 54.769492) (xy 51.10806 54.703072) (xy 51.116 54.703072) (xy 51.289254 54.686008) (xy 51.45585 54.635472) - (xy 51.609386 54.553405) (xy 51.743962 54.442962) (xy 51.749342 54.436406) (xy 51.814815 54.516185) (xy 51.911506 54.595537) - (xy 52.02182 54.654502) (xy 52.141518 54.690812) (xy 52.266 54.703072) (xy 52.48025 54.7) (xy 52.639 54.54125) - (xy 52.639 53.467) (xy 52.893 53.467) (xy 52.893 54.54125) (xy 53.05175 54.7) (xy 53.266 54.703072) - (xy 53.390482 54.690812) (xy 53.51018 54.654502) (xy 53.620494 54.595537) (xy 53.717185 54.516185) (xy 53.796537 54.419494) - (xy 53.855502 54.30918) (xy 53.891812 54.189482) (xy 53.904072 54.065) (xy 53.901 53.62575) (xy 53.74225 53.467) - (xy 52.893 53.467) (xy 52.639 53.467) (xy 52.619 53.467) (xy 52.619 53.213) (xy 52.639 53.213) - (xy 52.639 53.193) (xy 52.893 53.193) (xy 52.893 53.213) (xy 53.74225 53.213) (xy 53.901 53.05425) - (xy 53.904072 52.615) (xy 53.891812 52.490518) (xy 53.855502 52.37082) (xy 53.796537 52.260506) (xy 53.717185 52.163815) - (xy 53.620494 52.084463) (xy 53.51018 52.025498) (xy 53.390482 51.989188) (xy 53.266 51.976928) (xy 53.240559 51.977293) - (xy 53.317537 51.883494) (xy 53.376502 51.77318) (xy 53.412812 51.653482) (xy 53.425072 51.529) (xy 53.422 51.33975) - (xy 53.26325 51.181) (xy 52.464 51.181) (xy 52.464 51.201) (xy 52.21 51.201) (xy 52.21 51.181) - (xy 52.19 51.181) (xy 52.19 50.941333) (xy 52.204333 50.927) (xy 52.21 50.927) (xy 52.21 50.921333) - (xy 52.224333 50.907) (xy 52.464 50.907) (xy 52.464 50.927) (xy 53.26325 50.927) (xy 53.422 50.76825) - (xy 53.425072 50.579) (xy 53.412812 50.454518) (xy 53.376502 50.33482) (xy 53.317537 50.224506) (xy 53.238185 50.127815) - (xy 53.141494 50.048463) (xy 53.103291 50.028043) (xy 55.30315 47.828184) (xy 55.346458 47.792642) (xy 55.488293 47.619816) - (xy 55.593685 47.42264) (xy 55.658586 47.208692) (xy 55.658786 47.206667) (xy 55.667355 47.119658) (xy 55.675009 47.041945) - (xy 55.675009 47.041938) (xy 55.680499 46.986194) (xy 55.675009 46.93045) (xy 55.675009 43.963593) (xy 55.792284 44.026278) - (xy 55.9495 44.073969) (xy 56.113 44.090072) (xy 56.35127 44.090072) (xy 56.7142 44.453002) (xy 56.737999 44.482001) - (xy 56.766997 44.505799) (xy 56.853723 44.576974) (xy 56.9373 44.621647) (xy 56.985753 44.647546) (xy 57.129014 44.691003) - (xy 57.240667 44.702) (xy 57.240676 44.702) (xy 57.277999 44.705676) (xy 57.315322 44.702) (xy 58.224289 44.702) - (xy 58.268226 44.745937) (xy 58.437744 44.859205) (xy 58.626102 44.937226) (xy 58.826061 44.977) (xy 59.029939 44.977) - (xy 59.229898 44.937226) (xy 59.418256 44.859205) (xy 59.587774 44.745937) (xy 59.631711 44.702) (xy 61.090199 44.702) - (xy 63.656928 47.26873) (xy 63.656928 47.27201) (xy 61.377725 47.27201) (xy 60.273981 46.168267) (xy 60.273981 46.106129) - (xy 60.234207 45.90617) (xy 60.156186 45.717812) (xy 60.042918 45.548294) (xy 59.898755 45.404131) (xy 59.729237 45.290863) - (xy 59.540879 45.212842) (xy 59.34092 45.173068) (xy 59.137042 45.173068) (xy 58.937083 45.212842) (xy 58.748725 45.290863) - (xy 58.579207 45.404131) (xy 58.435044 45.548294) (xy 58.321776 45.717812) (xy 58.243755 45.90617) (xy 58.209599 46.077888) - (xy 58.19077 46.059059) (xy 58.021252 45.945791) (xy 57.832894 45.86777) (xy 57.632935 45.827996) (xy 57.429057 45.827996) - (xy 57.229098 45.86777) (xy 57.04074 45.945791) (xy 56.871222 46.059059) (xy 56.727059 46.203222) (xy 56.613791 46.37274) - (xy 56.53577 46.561098) (xy 56.495996 46.761057) (xy 56.495996 46.964935) (xy 56.53577 47.164894) (xy 56.613791 47.353252) - (xy 56.727059 47.52277) (xy 56.871222 47.666933) (xy 56.890586 47.679871) (xy 56.847832 47.783088) (xy 56.785 48.098967) - (xy 56.785 48.421033) (xy 56.847832 48.736912) (xy 56.971082 49.034463) (xy 57.150013 49.302252) (xy 57.377748 49.529987) - (xy 57.645537 49.708918) (xy 57.943088 49.832168) (xy 58.258967 49.895) (xy 58.581033 49.895) (xy 58.896912 49.832168) - (xy 58.911375 49.826177) (xy 59.380197 50.294999) (xy 59.403995 50.323997) (xy 59.51972 50.41897) (xy 59.651749 50.489542) - (xy 59.784999 50.529962) (xy 59.728726 50.567563) (xy 59.584563 50.711726) (xy 59.471295 50.881244) (xy 59.393274 51.069602) - (xy 59.3535 51.269561) (xy 59.3535 51.331698) (xy 58.911375 51.773823) (xy 58.896912 51.767832) (xy 58.581033 51.705) - (xy 58.258967 51.705) (xy 57.943088 51.767832) (xy 57.645537 51.891082) (xy 57.377748 52.070013) (xy 57.150013 52.297748) - (xy 56.971082 52.565537) (xy 56.847832 52.863088) (xy 56.785 53.178967) (xy 56.785 53.501033) (xy 56.847832 53.816912) - (xy 56.971082 54.114463) (xy 57.150013 54.382252) (xy 57.377748 54.609987) (xy 57.645537 54.788918) (xy 57.943088 54.912168) - (xy 58.258967 54.975) (xy 58.581033 54.975) (xy 58.896912 54.912168) (xy 59.194463 54.788918) (xy 59.462252 54.609987) - (xy 59.689987 54.382252) (xy 59.868918 54.114463) (xy 59.992168 53.816912) (xy 60.055 53.501033) (xy 60.055 53.178967) - (xy 59.992168 52.863088) (xy 59.986177 52.848625) (xy 60.428302 52.4065) (xy 60.490439 52.4065) (xy 60.690398 52.366726) - (xy 60.878756 52.288705) (xy 61.048274 52.175437) (xy 61.192437 52.031274) (xy 61.305705 51.861756) (xy 61.383726 51.673398) - (xy 61.4235 51.473439) (xy 61.4235 51.411301) (xy 62.608302 50.2265) (xy 64.387039 50.2265) (xy 64.499338 50.338799) - (xy 64.499338 50.400937) (xy 64.539112 50.600896) (xy 64.617133 50.789254) (xy 64.67563 50.876802) (xy 64.609815 50.930815) - (xy 64.530463 51.027506) (xy 64.471498 51.13782) (xy 64.435188 51.257518) (xy 64.422928 51.382) (xy 64.426 51.59625) - (xy 64.58475 51.755) (xy 65.659 51.755) (xy 65.659 51.735) (xy 65.913 51.735) (xy 65.913 51.755) - (xy 65.933 51.755) (xy 65.933 52.009) (xy 65.913 52.009) (xy 65.913 52.029) (xy 65.659 52.029) - (xy 65.659 52.009) (xy 64.58475 52.009) (xy 64.426 52.16775) (xy 64.422928 52.382) (xy 64.435188 52.506482) - (xy 64.471498 52.62618) (xy 64.530463 52.736494) (xy 64.609815 52.833185) (xy 64.689594 52.898658) (xy 64.683038 52.904038) - (xy 64.572595 53.038614) (xy 64.490528 53.19215) (xy 64.439992 53.358746) (xy 64.422928 53.532) (xy 64.422928 54.032) - (xy 64.439992 54.205254) (xy 64.490528 54.37185) (xy 64.554094 54.490774) (xy 63.498854 55.546015) (xy 63.455552 55.581552) - (xy 63.420014 55.624855) (xy 63.420012 55.624857) (xy 63.330654 55.73374) (xy 63.313717 55.754378) (xy 63.208324 55.951554) - (xy 63.143423 56.165502) (xy 63.121509 56.388) (xy 63.143423 56.610498) (xy 63.208324 56.824446) (xy 63.313717 57.021622) - (xy 63.392812 57.117999) (xy 63.455552 57.194448) (xy 63.498854 57.229985) (xy 64.436008 58.16714) (xy 64.471551 58.210449) - (xy 64.644377 58.352284) (xy 64.736146 58.401335) (xy 64.738 58.62875) (xy 64.89675 58.7875) (xy 66.421 58.7875) - (xy 66.421 58.7675) (xy 66.675 58.7675) (xy 66.675 58.7875) (xy 66.695 58.7875) (xy 66.695 59.0415) - (xy 66.675 59.0415) (xy 66.675 60.05325) (xy 66.83375 60.212) (xy 67.723 60.215072) (xy 67.847482 60.202812) - (xy 67.96718 60.166502) (xy 67.981121 60.15905) (xy 67.978928 60.312) (xy 67.991188 60.436482) (xy 68.027498 60.55618) - (xy 68.086463 60.666494) (xy 68.165815 60.763185) (xy 68.262506 60.842537) (xy 68.284887 60.8545) (xy 67.985767 60.8545) - (xy 67.966387 60.838595) (xy 67.812851 60.756528) (xy 67.646255 60.705992) (xy 67.549722 60.696484) (xy 67.460752 60.623469) - (xy 67.176715 60.471648) (xy 66.868516 60.378157) (xy 66.628322 60.3545) (xy 64.986072 60.3545) (xy 64.986072 60.080919) - (xy 65.018506 60.107537) (xy 65.12882 60.166502) (xy 65.248518 60.202812) (xy 65.373 60.215072) (xy 66.26225 60.212) - (xy 66.421 60.05325) (xy 66.421 59.0415) (xy 64.89675 59.0415) (xy 64.738 59.20025) (xy 64.737025 59.319802) - (xy 64.702494 59.291463) (xy 64.59218 59.232498) (xy 64.472482 59.196188) (xy 64.348 59.183928) (xy 62.348 59.183928) - (xy 62.223518 59.196188) (xy 62.10382 59.232498) (xy 61.993506 59.291463) (xy 61.896815 59.370815) (xy 61.817463 59.467506) - (xy 61.758498 59.57782) (xy 61.722188 59.697518) (xy 61.709928 59.822) (xy 61.709928 61.67287) (xy 61.705089 61.722) - (xy 61.709928 61.77113) (xy 61.709928 63.176941) (xy 61.251869 63.635) (xy 60.566132 63.635) (xy 59.883001 62.95187) - (xy 59.883001 62.76775) (xy 59.888492 62.711998) (xy 59.866578 62.4895) (xy 59.801677 62.275552) (xy 59.770382 62.217003) - (xy 59.696285 62.078376) (xy 59.55445 61.90555) (xy 59.511141 61.870007) (xy 58.686072 61.044939) (xy 58.686072 60.972) - (xy 58.673812 60.847518) (xy 58.637502 60.72782) (xy 58.578537 60.617506) (xy 58.541191 60.572) (xy 58.578537 60.526494) - (xy 58.637502 60.41618) (xy 58.673812 60.296482) (xy 58.686072 60.172) (xy 58.683 59.70775) (xy 58.52425 59.549) - (xy 57.175 59.549) (xy 57.175 59.569) (xy 56.921 59.569) (xy 56.921 59.549) (xy 55.57175 59.549) - (xy 55.413 59.70775) (xy 55.409928 60.172) (xy 55.422188 60.296482) (xy 55.458498 60.41618) (xy 55.517463 60.526494) - (xy 55.554809 60.572) (xy 55.517463 60.617506) (xy 55.458498 60.72782) (xy 55.422188 60.847518) (xy 55.409928 60.972) - (xy 55.409928 61.251797) (xy 55.32518 61.206498) (xy 55.205482 61.170188) (xy 55.081 61.157928) (xy 54.64175 61.161) - (xy 54.483 61.31975) (xy 54.483 62.169) (xy 54.503 62.169) (xy 54.503 62.423) (xy 54.483 62.423) - (xy 54.483 62.443) (xy 54.229 62.443) (xy 54.229 62.423) (xy 53.15475 62.423) (xy 52.996 62.58175) - (xy 52.992928 62.796) (xy 53.005188 62.920482) (xy 53.041498 63.04018) (xy 53.100463 63.150494) (xy 53.179815 63.247185) - (xy 53.259594 63.312658) (xy 53.253038 63.318038) (xy 53.142595 63.452614) (xy 53.060528 63.60615) (xy 53.009992 63.772746) - (xy 52.992928 63.946) (xy 52.992928 64.446) (xy 53.009992 64.619254) (xy 53.060528 64.78585) (xy 53.142595 64.939386) - (xy 53.253038 65.073962) (xy 53.387614 65.184405) (xy 53.54115 65.266472) (xy 53.707746 65.317008) (xy 53.881 65.334072) - (xy 54.331439 65.334072) (xy 54.356 65.336491) (xy 54.380561 65.334072) (xy 54.831 65.334072) (xy 55.004254 65.317008) - (xy 55.17085 65.266472) (xy 55.324386 65.184405) (xy 55.357779 65.157) (xy 55.483001 65.157) (xy 55.483 65.904498) - (xy 55.416815 65.958815) (xy 55.337463 66.055506) (xy 55.278498 66.16582) (xy 55.242188 66.285518) (xy 55.229928 66.41) - (xy 55.229928 68.21) (xy 55.242188 68.334482) (xy 55.278498 68.45418) (xy 55.337463 68.564494) (xy 55.416815 68.661185) - (xy 55.513506 68.740537) (xy 55.62382 68.799502) (xy 55.743518 68.835812) (xy 55.868 68.848072) (xy 56.555942 68.848072) - (xy 56.797484 68.921343) (xy 57.118 68.952911) (xy 57.198322 68.945) (xy 60.536762 68.945) (xy 60.433951 69.047811) - (xy 60.337244 69.067047) (xy 59.948698 69.227988) (xy 59.599017 69.461637) (xy 59.301637 69.759017) (xy 59.067988 70.108698) - (xy 58.907047 70.497244) (xy 58.825 70.909721) (xy 58.825 71.330279) (xy 58.907047 71.742756) (xy 59.067988 72.131302) - (xy 59.301637 72.480983) (xy 59.599017 72.778363) (xy 59.948698 73.012012) (xy 60.337244 73.172953) (xy 60.749721 73.255) - (xy 61.170279 73.255) (xy 61.582756 73.172953) (xy 61.971302 73.012012) (xy 62.320983 72.778363) (xy 62.479346 72.62) - (xy 63.901928 72.62) (xy 63.914188 72.744482) (xy 63.950498 72.86418) (xy 64.009463 72.974494) (xy 64.088815 73.071185) - (xy 64.185506 73.150537) (xy 64.29582 73.209502) (xy 64.415518 73.245812) (xy 64.54 73.258072) (xy 65.75425 73.255) - (xy 65.913 73.09625) (xy 65.913 71.247) (xy 66.167 71.247) (xy 66.167 73.09625) (xy 66.32575 73.255) - (xy 67.54 73.258072) (xy 67.664482 73.245812) (xy 67.78418 73.209502) (xy 67.894494 73.150537) (xy 67.991185 73.071185) - (xy 68.057996 72.989775) (xy 73.18983 72.989775) (xy 73.429976 73.377018) (xy 73.923877 73.637641) (xy 74.459133 73.796901) - (xy 75.015174 73.848678) (xy 75.570632 73.790981) (xy 76.104161 73.626028) (xy 76.570024 73.377018) (xy 76.81017 72.989775) - (xy 75 71.179605) (xy 73.18983 72.989775) (xy 68.057996 72.989775) (xy 68.070537 72.974494) (xy 68.129502 72.86418) - (xy 68.165812 72.744482) (xy 68.178072 72.62) (xy 68.175 71.40575) (xy 68.01625 71.247) (xy 66.167 71.247) - (xy 65.913 71.247) (xy 64.06375 71.247) (xy 63.905 71.40575) (xy 63.901928 72.62) (xy 62.479346 72.62) - (xy 62.618363 72.480983) (xy 62.852012 72.131302) (xy 63.012953 71.742756) (xy 63.095 71.330279) (xy 63.095 71.015174) - (xy 72.151322 71.015174) (xy 72.209019 71.570632) (xy 72.373972 72.104161) (xy 72.622982 72.570024) (xy 73.010225 72.81017) - (xy 74.820395 71) (xy 75.179605 71) (xy 76.989775 72.81017) (xy 77.377018 72.570024) (xy 77.637641 72.076123) - (xy 77.796901 71.540867) (xy 77.848678 70.984826) (xy 77.790981 70.429368) (xy 77.626028 69.895839) (xy 77.377018 69.429976) - (xy 76.989775 69.18983) (xy 75.179605 71) (xy 74.820395 71) (xy 73.010225 69.18983) (xy 72.622982 69.429976) - (xy 72.362359 69.923877) (xy 72.203099 70.459133) (xy 72.151322 71.015174) (xy 63.095 71.015174) (xy 63.095 71.011239) - (xy 63.903403 70.202836) (xy 63.905 70.83425) (xy 64.06375 70.993) (xy 65.913 70.993) (xy 65.913 69.14375) - (xy 66.167 69.14375) (xy 66.167 70.993) (xy 68.01625 70.993) (xy 68.175 70.83425) (xy 68.178072 69.62) - (xy 68.165812 69.495518) (xy 68.129502 69.37582) (xy 68.070537 69.265506) (xy 67.991185 69.168815) (xy 67.894494 69.089463) - (xy 67.78418 69.030498) (xy 67.717349 69.010225) (xy 73.18983 69.010225) (xy 75 70.820395) (xy 76.81017 69.010225) - (xy 76.570024 68.622982) (xy 76.418087 68.542808) (xy 76.568 68.544072) (xy 76.692482 68.531812) (xy 76.81218 68.495502) - (xy 76.922494 68.436537) (xy 77.019185 68.357185) (xy 77.098537 68.260494) (xy 77.157502 68.15018) (xy 77.193812 68.030482) - (xy 77.206072 67.906) (xy 77.203 67.34175) (xy 77.04425 67.183) (xy 76.045 67.183) (xy 76.045 67.203) - (xy 75.791 67.203) (xy 75.791 67.183) (xy 74.79175 67.183) (xy 74.633 67.34175) (xy 74.629928 67.906) - (xy 74.642188 68.030482) (xy 74.678498 68.15018) (xy 74.69519 68.181407) (xy 74.429368 68.209019) (xy 73.895839 68.373972) - (xy 73.429976 68.622982) (xy 73.18983 69.010225) (xy 67.717349 69.010225) (xy 67.664482 68.994188) (xy 67.54 68.981928) - (xy 66.32575 68.985) (xy 66.167 69.14375) (xy 65.913 69.14375) (xy 65.75425 68.985) (xy 65.122837 68.983403) - (xy 65.258168 68.848072) (xy 65.734 68.848072) (xy 65.858482 68.835812) (xy 65.97818 68.799502) (xy 66.088494 68.740537) - (xy 66.185185 68.661185) (xy 66.264537 68.564494) (xy 66.305928 68.487059) (xy 66.322005 68.503136) (xy 66.357552 68.54645) - (xy 66.530378 68.688285) (xy 66.727554 68.793677) (xy 66.941502 68.858578) (xy 67.108249 68.875001) (xy 67.108258 68.875001) - (xy 67.164 68.880491) (xy 67.219742 68.875001) (xy 71.678248 68.875001) (xy 71.733999 68.880492) (xy 71.78975 68.875001) - (xy 71.789751 68.875001) (xy 71.956498 68.858578) (xy 72.170446 68.793677) (xy 72.367622 68.688285) (xy 72.540448 68.54645) - (xy 72.5424 68.544072) (xy 73.068 68.544072) (xy 73.192482 68.531812) (xy 73.31218 68.495502) (xy 73.422494 68.436537) - (xy 73.519185 68.357185) (xy 73.598537 68.260494) (xy 73.657502 68.15018) (xy 73.693812 68.030482) (xy 73.706072 67.906) - (xy 73.706072 66.206) (xy 74.629928 66.206) (xy 74.633 66.77025) (xy 74.79175 66.929) (xy 75.791 66.929) - (xy 75.791 65.72975) (xy 76.045 65.72975) (xy 76.045 66.929) (xy 77.04425 66.929) (xy 77.203 66.77025) - (xy 77.206072 66.206) (xy 77.193812 66.081518) (xy 77.157502 65.96182) (xy 77.098537 65.851506) (xy 77.019185 65.754815) - (xy 76.922494 65.675463) (xy 76.81218 65.616498) (xy 76.692482 65.580188) (xy 76.568 65.567928) (xy 76.20375 65.571) - (xy 76.045 65.72975) (xy 75.791 65.72975) (xy 75.63225 65.571) (xy 75.268 65.567928) (xy 75.143518 65.580188) - (xy 75.02382 65.616498) (xy 74.913506 65.675463) (xy 74.816815 65.754815) (xy 74.737463 65.851506) (xy 74.678498 65.96182) - (xy 74.642188 66.081518) (xy 74.629928 66.206) (xy 73.706072 66.206) (xy 73.693812 66.081518) (xy 73.657502 65.96182) - (xy 73.598537 65.851506) (xy 73.519185 65.754815) (xy 73.422494 65.675463) (xy 73.31218 65.616498) (xy 73.192482 65.580188) - (xy 73.068 65.567928) (xy 71.768 65.567928) (xy 71.643518 65.580188) (xy 71.52382 65.616498) (xy 71.413506 65.675463) - (xy 71.316815 65.754815) (xy 71.237463 65.851506) (xy 71.178498 65.96182) (xy 71.142188 66.081518) (xy 71.129928 66.206) - (xy 71.129928 66.605001) (xy 70.11568 66.605001) (xy 70.152168 66.516912) (xy 70.215 66.201033) (xy 70.215 65.878967) - (xy 70.152168 65.563088) (xy 70.028918 65.265537) (xy 69.849987 64.997748) (xy 69.622252 64.770013) (xy 69.420809 64.635413) - (xy 70.164192 64.635413) (xy 70.259956 64.899814) (xy 70.549571 65.040704) (xy 70.861108 65.122384) (xy 71.182595 65.141718) - (xy 71.501675 65.097961) (xy 71.806088 64.992795) (xy 71.980044 64.899814) (xy 72.075808 64.635413) (xy 71.12 63.679605) - (xy 70.164192 64.635413) (xy 69.420809 64.635413) (xy 69.354463 64.591082) (xy 69.056912 64.467832) (xy 68.741033 64.405) - (xy 68.418967 64.405) (xy 68.103088 64.467832) (xy 67.805537 64.591082) (xy 67.537748 64.770013) (xy 67.459561 64.8482) - (xy 63.248931 64.8482) (xy 63.83706 64.260072) (xy 64.348 64.260072) (xy 64.472482 64.247812) (xy 64.59218 64.211502) - (xy 64.702494 64.152537) (xy 64.799185 64.073185) (xy 64.878537 63.976494) (xy 64.937502 63.86618) (xy 64.973812 63.746482) - (xy 64.985826 63.6245) (xy 66.628322 63.6245) (xy 66.868516 63.600843) (xy 67.176715 63.507352) (xy 67.460752 63.355531) - (xy 67.549722 63.282516) (xy 67.646255 63.273008) (xy 67.812851 63.222472) (xy 67.966387 63.140405) (xy 67.985767 63.1245) - (xy 69.177269 63.1245) (xy 69.23302 63.129991) (xy 69.288771 63.1245) (xy 69.288772 63.1245) (xy 69.455519 63.108077) - (xy 69.539146 63.082709) (xy 69.497616 63.241108) (xy 69.478282 63.562595) (xy 69.522039 63.881675) (xy 69.627205 64.186088) - (xy 69.720186 64.360044) (xy 69.984587 64.455808) (xy 70.940395 63.5) (xy 71.299605 63.5) (xy 72.255413 64.455808) - (xy 72.519814 64.360044) (xy 72.660704 64.070429) (xy 72.742384 63.758892) (xy 72.761718 63.437405) (xy 72.717961 63.118325) - (xy 72.612795 62.813912) (xy 72.519814 62.639956) (xy 72.255413 62.544192) (xy 71.299605 63.5) (xy 70.940395 63.5) - (xy 70.926253 63.485858) (xy 71.105858 63.306253) (xy 71.12 63.320395) (xy 72.075808 62.364587) (xy 71.980044 62.100186) - (xy 71.690429 61.959296) (xy 71.378892 61.877616) (xy 71.057405 61.858282) (xy 70.955378 61.872273) (xy 71.167375 61.660277) - (xy 71.177233 61.665546) (xy 71.320494 61.709003) (xy 71.46948 61.723677) (xy 71.506813 61.72) (xy 72.205091 61.72) - (xy 72.211082 61.734463) (xy 72.390013 62.002252) (xy 72.617748 62.229987) (xy 72.885537 62.408918) (xy 73.183088 62.532168) - (xy 73.498967 62.595) (xy 73.821033 62.595) (xy 74.136912 62.532168) (xy 74.434463 62.408918) (xy 74.702252 62.229987) - (xy 74.929987 62.002252) (xy 75.108918 61.734463) (xy 75.232168 61.436912) (xy 75.295 61.121033) (xy 75.295 60.798967) - (xy 75.232168 60.483088) (xy 75.108918 60.185537) (xy 74.929987 59.917748) (xy 74.702252 59.690013) (xy 74.434463 59.511082) - (xy 74.136912 59.387832) (xy 73.821033 59.325) (xy 73.498967 59.325) (xy 73.183088 59.387832) (xy 72.885537 59.511082) - (xy 72.617748 59.690013) (xy 72.390013 59.917748) (xy 72.211082 60.185537) (xy 72.205091 60.2) (xy 72.001 60.2) - (xy 72.001 58.766752) (xy 72.006491 58.711) (xy 71.992987 58.573885) (xy 71.984577 58.488501) (xy 71.919676 58.274553) - (xy 71.814284 58.077377) (xy 71.778626 58.033928) (xy 71.707989 57.947856) (xy 71.707987 57.947854) (xy 71.672449 57.904551) - (xy 71.629145 57.869012) (xy 70.908995 57.148864) (xy 70.873449 57.105551) (xy 70.700623 56.963716) (xy 70.503447 56.858324) - (xy 70.289499 56.793423) (xy 70.122752 56.777) (xy 70.122751 56.777) (xy 70.067 56.771509) (xy 70.011249 56.777) - (xy 69.848191 56.777) (xy 69.817 56.773928) (xy 68.867 56.773928) (xy 68.835809 56.777) (xy 68.796131 56.777) - (xy 68.659996 56.640865) (xy 68.624449 56.597551) (xy 68.451623 56.455716) (xy 68.254447 56.350324) (xy 68.040499 56.285423) - (xy 67.873752 56.269) (xy 67.873751 56.269) (xy 67.818 56.263509) (xy 67.762249 56.269) (xy 65.986132 56.269) - (xy 66.54914 55.705991) (xy 66.592449 55.670449) (xy 66.734284 55.497623) (xy 66.839676 55.300447) (xy 66.904577 55.086499) - (xy 66.921 54.919752) (xy 66.921 54.919743) (xy 66.92127 54.917) (xy 67.587249 54.917) (xy 67.643 54.922491) - (xy 67.698751 54.917) (xy 67.698752 54.917) (xy 67.865499 54.900577) (xy 68.079447 54.835676) (xy 68.276623 54.730284) - (xy 68.402004 54.627386) (xy 68.547497 54.549618) (xy 68.678284 54.442284) (xy 68.785618 54.311497) (xy 68.865375 54.162283) - (xy 68.914488 54.000377) (xy 68.92879 53.855164) (xy 68.936576 53.829499) (xy 68.95849 53.607001) (xy 68.9526 53.547201) - (xy 69.345004 53.154798) (xy 69.374001 53.131001) (xy 69.441392 53.048885) (xy 69.468974 53.015277) (xy 69.539546 52.883247) - (xy 69.545661 52.863088) (xy 69.583003 52.739986) (xy 69.594 52.628333) (xy 69.594 52.628323) (xy 69.597676 52.591) - (xy 69.596609 52.580166) (xy 71.840512 52.580166) (xy 71.877834 52.583842) (xy 71.915156 52.580166) (xy 71.915167 52.580166) - (xy 72.02682 52.569169) (xy 72.170081 52.525712) (xy 72.30211 52.45514) (xy 72.417835 52.360167) (xy 72.441638 52.331163) - (xy 72.837998 51.934803) (xy 72.867001 51.911001) (xy 72.961974 51.795276) (xy 73.032546 51.663247) (xy 73.076003 51.519986) - (xy 73.087 51.408333) (xy 73.087 51.408325) (xy 73.090676 51.371) (xy 73.087 51.333675) (xy 73.087 49.789365) - (xy 73.119606 49.762606) (xy 73.152 49.723134) (xy 73.184394 49.762606) (xy 73.311392 49.866831) (xy 73.456284 49.944278) - (xy 73.6135 49.991969) (xy 73.777 50.008072) (xy 74.177 50.008072) (xy 74.3405 49.991969) (xy 74.497716 49.944278) - (xy 74.642608 49.866831) (xy 74.769606 49.762606) (xy 74.857916 49.655) (xy 75.344843 49.655) (xy 75.369733 49.671631) - (xy 75.282795 49.801744) (xy 75.204774 49.990102) (xy 75.165 50.190061) (xy 75.165 50.393939) (xy 75.204774 50.593898) - (xy 75.282795 50.782256) (xy 75.396063 50.951774) (xy 75.540226 51.095937) (xy 75.709744 51.209205) (xy 75.898102 51.287226) - (xy 76.098061 51.327) (xy 76.301939 51.327) (xy 76.501898 51.287226) (xy 76.690256 51.209205) (xy 76.859774 51.095937) - (xy 77.003937 50.951774) (xy 77.117205 50.782256) (xy 77.195226 50.593898) (xy 77.235 50.393939) (xy 77.235 50.190061) - (xy 77.195226 49.990102) (xy 77.117205 49.801744) (xy 77.030267 49.671631) (xy 77.242252 49.529987) (xy 77.469987 49.302252) - (xy 77.648918 49.034463) (xy 77.772168 48.736912) (xy 77.835 48.421033) (xy 77.835 48.098967) (xy 77.772168 47.783088) - (xy 77.648918 47.485537) (xy 77.469987 47.217748) (xy 77.242252 46.990013) (xy 76.974463 46.811082) (xy 76.752391 46.719097) - (xy 76.740001 46.703999) (xy 76.711008 46.680205) (xy 75.523072 45.492271) (xy 75.523072 45.47) (xy 75.506488 45.301623) - (xy 75.457375 45.139717) (xy 75.377618 44.990503) (xy 75.270284 44.859716) (xy 75.195 44.797932) (xy 75.195 44.474878) - (xy 75.425537 44.628918) (xy 75.723088 44.752168) (xy 76.038967 44.815) (xy 76.361033 44.815) (xy 76.676912 44.752168) - (xy 76.974463 44.628918) (xy 77.242252 44.449987) (xy 77.469987 44.222252) (xy 77.648918 43.954463) (xy 77.772168 43.656912) - (xy 77.835 43.341033) (xy 77.835 43.018967) (xy 77.772168 42.703088) (xy 77.648918 42.405537) (xy 77.469987 42.137748) - (xy 77.242252 41.910013) (xy 76.974463 41.731082) (xy 76.676912 41.607832) (xy 76.361033 41.545) (xy 76.038967 41.545) - (xy 75.726999 41.607054) (xy 75.726999 40.471072) (xy 75.942 40.471072) (xy 76.110377 40.454488) (xy 76.272283 40.405375) - (xy 76.421497 40.325618) (xy 76.552284 40.218284) (xy 76.659618 40.087497) (xy 76.739375 39.938283) (xy 76.788488 39.776377) - (xy 76.805072 39.608) (xy 76.805072 39.158) (xy 76.788488 38.989623) (xy 76.739375 38.827717) (xy 76.6613 38.681649) - (xy 76.697537 38.637494) (xy 76.756502 38.52718) (xy 76.792812 38.407482) (xy 76.805072 38.283) (xy 76.802 38.11875) - (xy 76.64325 37.96) (xy 75.819 37.96) (xy 75.819 37.98) (xy 75.565 37.98) (xy 75.565 37.96) - (xy 74.74075 37.96) (xy 74.582 38.11875) (xy 74.578928 38.283) (xy 74.591188 38.407482) (xy 74.627498 38.52718) - (xy 74.686463 38.637494) (xy 74.7227 38.681649) (xy 74.644625 38.827717) (xy 74.595512 38.989623) (xy 74.578928 39.158) - (xy 74.578928 39.421271) (xy 74.455997 39.544202) (xy 74.426999 39.568) (xy 74.403201 39.596998) (xy 74.4032 39.596999) - (xy 74.332025 39.683725) (xy 74.261453 39.815755) (xy 74.237718 39.894003) (xy 74.222029 39.945725) (xy 74.217997 39.959016) - (xy 74.203323 40.108001) (xy 74.207 40.145333) (xy 74.206999 41.186999) (xy 72.971332 41.186999) (xy 72.933999 41.183322) - (xy 72.896666 41.186999) (xy 72.785013 41.197996) (xy 72.721749 41.217187) (xy 72.719812 41.197518) (xy 72.683502 41.07782) - (xy 72.624537 40.967506) (xy 72.545185 40.870815) (xy 72.448494 40.791463) (xy 72.404 40.76768) (xy 72.404 39.477801) - (xy 72.414729 39.467072) (xy 72.653 39.467072) (xy 72.8165 39.450969) (xy 72.973716 39.403278) (xy 73.118608 39.325831) - (xy 73.245606 39.221606) (xy 73.349831 39.094608) (xy 73.427278 38.949716) (xy 73.474969 38.7925) (xy 73.491072 38.629) - (xy 73.491072 38.079) (xy 73.474969 37.9155) (xy 73.427278 37.758284) (xy 73.349831 37.613392) (xy 73.245606 37.486394) - (xy 73.119621 37.383) (xy 74.578928 37.383) (xy 74.582 37.54725) (xy 74.74075 37.706) (xy 75.565 37.706) - (xy 75.565 36.90675) (xy 75.819 36.90675) (xy 75.819 37.706) (xy 76.64325 37.706) (xy 76.802 37.54725) - (xy 76.805072 37.383) (xy 76.792812 37.258518) (xy 76.756502 37.13882) (xy 76.697537 37.028506) (xy 76.618185 36.931815) - (xy 76.521494 36.852463) (xy 76.41118 36.793498) (xy 76.291482 36.757188) (xy 76.167 36.744928) (xy 75.97775 36.748) - (xy 75.819 36.90675) (xy 75.565 36.90675) (xy 75.40625 36.748) (xy 75.217 36.744928) (xy 75.092518 36.757188) - (xy 74.97282 36.793498) (xy 74.862506 36.852463) (xy 74.765815 36.931815) (xy 74.686463 37.028506) (xy 74.627498 37.13882) - (xy 74.591188 37.258518) (xy 74.578928 37.383) (xy 73.119621 37.383) (xy 73.118608 37.382169) (xy 72.973716 37.304722) - (xy 72.8165 37.257031) (xy 72.653 37.240928) (xy 72.253 37.240928) (xy 72.0895 37.257031) (xy 71.932284 37.304722) - (xy 71.787392 37.382169) (xy 71.660394 37.486394) (xy 71.628 37.525866) (xy 71.595606 37.486394) (xy 71.563 37.459635) - (xy 71.563 36.550323) (xy 71.566676 36.513) (xy 71.563 36.475677) (xy 71.563 36.475667) (xy 71.552003 36.364014) - (xy 71.508546 36.220753) (xy 71.492902 36.191486) (xy 71.437974 36.088723) (xy 71.366799 36.001997) (xy 71.343001 35.972999) - (xy 71.314003 35.949201) (xy 68.354577 32.989775) (xy 73.18983 32.989775) (xy 73.429976 33.377018) (xy 73.923877 33.637641) - (xy 74.459133 33.796901) (xy 75.015174 33.848678) (xy 75.570632 33.790981) (xy 76.104161 33.626028) (xy 76.570024 33.377018) - (xy 76.81017 32.989775) (xy 75 31.179605) (xy 73.18983 32.989775) (xy 68.354577 32.989775) (xy 67.873804 32.509003) - (xy 67.850001 32.479999) (xy 67.734276 32.385026) (xy 67.602247 32.314454) (xy 67.458986 32.270997) (xy 67.347333 32.26) - (xy 67.347322 32.26) (xy 67.31 32.256324) (xy 67.272678 32.26) (xy 65.315325 32.26) (xy 65.278 32.256324) - (xy 65.240675 32.26) (xy 65.240667 32.26) (xy 65.129014 32.270997) (xy 64.985753 32.314454) (xy 64.853724 32.385026) - (xy 64.737999 32.479999) (xy 64.714201 32.508998) (xy 64.201199 33.022) (xy 63.04694 33.022) (xy 63.142947 32.928059) - (xy 63.272099 32.739246) (xy 63.361934 32.528865) (xy 63.409 32.305) (xy 63.409 31.905) (xy 62.376 31.905) - (xy 62.376 31.925) (xy 62.122 31.925) (xy 62.122 31.905) (xy 61.089 31.905) (xy 61.089 32.305) - (xy 61.136066 32.528865) (xy 61.225901 32.739246) (xy 61.355053 32.928059) (xy 61.488499 33.058634) (xy 61.462568 33.0665) - (xy 61.429753 33.076454) (xy 61.297723 33.147026) (xy 61.227768 33.204437) (xy 61.181999 33.241999) (xy 61.158201 33.270997) - (xy 60.420867 34.008332) (xy 60.371717 33.967996) (xy 60.250597 33.903256) (xy 60.119175 33.863389) (xy 59.9825 33.849928) - (xy 59.8575 33.849928) (xy 59.720825 33.863389) (xy 59.67 33.878807) (xy 59.619175 33.863389) (xy 59.4825 33.849928) - (xy 59.429862 33.849928) (xy 59.460966 33.774838) (xy 59.50074 33.574879) (xy 59.50074 33.371001) (xy 59.460966 33.171042) - (xy 59.382945 32.982684) (xy 59.269677 32.813166) (xy 59.125514 32.669003) (xy 58.955996 32.555735) (xy 58.767638 32.477714) - (xy 58.567679 32.43794) (xy 58.363801 32.43794) (xy 58.355964 32.439499) (xy 58.347381 32.426653) (xy 58.203218 32.28249) - (xy 58.0337 32.169222) (xy 57.845342 32.091201) (xy 57.764479 32.075116) (xy 57.760577 32.035501) (xy 57.695676 31.821553) - (xy 57.590284 31.624377) (xy 57.448449 31.451551) (xy 57.275623 31.309716) (xy 57.189046 31.26344) (xy 57.285964 31.198681) - (xy 57.419681 31.064964) (xy 57.524741 30.907731) (xy 57.597108 30.733022) (xy 57.634 30.547552) (xy 57.634 30.358448) - (xy 59.714 30.358448) (xy 59.714 30.547552) (xy 59.750892 30.733022) (xy 59.823259 30.907731) (xy 59.928319 31.064964) - (xy 60.062036 31.198681) (xy 60.219269 31.303741) (xy 60.393978 31.376108) (xy 60.579448 31.413) (xy 60.768552 31.413) - (xy 60.954022 31.376108) (xy 61.089 31.320198) (xy 61.089 31.651) (xy 62.122 31.651) (xy 62.122 30.384837) - (xy 62.376 30.384837) (xy 62.376 31.651) (xy 63.409 31.651) (xy 63.409 31.251) (xy 63.361934 31.027135) - (xy 63.356827 31.015174) (xy 72.151322 31.015174) (xy 72.209019 31.570632) (xy 72.373972 32.104161) (xy 72.622982 32.570024) - (xy 73.010225 32.81017) (xy 74.820395 31) (xy 75.179605 31) (xy 76.989775 32.81017) (xy 77.377018 32.570024) - (xy 77.637641 32.076123) (xy 77.796901 31.540867) (xy 77.848678 30.984826) (xy 77.790981 30.429368) (xy 77.626028 29.895839) - (xy 77.377018 29.429976) (xy 76.989775 29.18983) (xy 75.179605 31) (xy 74.820395 31) (xy 73.010225 29.18983) - (xy 72.622982 29.429976) (xy 72.362359 29.923877) (xy 72.203099 30.459133) (xy 72.151322 31.015174) (xy 63.356827 31.015174) - (xy 63.272099 30.816754) (xy 63.142947 30.627941) (xy 62.979441 30.467953) (xy 62.787864 30.342937) (xy 62.55481 30.259036) - (xy 62.376 30.384837) (xy 62.122 30.384837) (xy 61.94319 30.259036) (xy 61.710136 30.342937) (xy 61.634 30.392621) - (xy 61.634 30.358448) (xy 61.597108 30.172978) (xy 61.524741 29.998269) (xy 61.419681 29.841036) (xy 61.285964 29.707319) - (xy 61.128731 29.602259) (xy 60.954022 29.529892) (xy 60.768552 29.493) (xy 60.579448 29.493) (xy 60.393978 29.529892) - (xy 60.219269 29.602259) (xy 60.062036 29.707319) (xy 59.928319 29.841036) (xy 59.823259 29.998269) (xy 59.750892 30.172978) - (xy 59.714 30.358448) (xy 57.634 30.358448) (xy 57.597108 30.172978) (xy 57.524741 29.998269) (xy 57.419681 29.841036) - (xy 57.285964 29.707319) (xy 57.128731 29.602259) (xy 56.954022 29.529892) (xy 56.768552 29.493) (xy 56.579448 29.493) - (xy 56.393978 29.529892) (xy 56.219269 29.602259) (xy 56.062036 29.707319) (xy 55.928319 29.841036) (xy 55.823259 29.998269) - (xy 55.750892 30.172978) (xy 55.714 30.358448) (xy 55.714 30.392621) (xy 55.637864 30.342937) (xy 55.40481 30.259036) - (xy 55.226 30.384837) (xy 55.226 31.651) (xy 55.246 31.651) (xy 55.246 31.905) (xy 55.226 31.905) - (xy 55.226 31.925) (xy 54.972 31.925) (xy 54.972 31.905) (xy 53.939 31.905) (xy 53.939 31.997146) - (xy 53.800102 32.024774) (xy 53.611744 32.102795) (xy 53.442226 32.216063) (xy 53.298063 32.360226) (xy 53.184795 32.529744) - (xy 53.106774 32.718102) (xy 53.067 32.918061) (xy 53.067 32.995774) (xy 52.99671 33.127276) (xy 52.996455 33.127753) - (xy 52.952998 33.271014) (xy 52.942001 33.382667) (xy 52.942001 33.382677) (xy 52.938325 33.419999) (xy 52.942001 33.457321) - (xy 52.942002 43.009617) (xy 52.86445 43.04174) (xy 52.694932 43.155008) (xy 52.550769 43.299171) (xy 52.437501 43.468689) - (xy 52.35948 43.657047) (xy 52.319706 43.857006) (xy 52.319706 44.060884) (xy 52.35948 44.260843) (xy 52.437501 44.449201) - (xy 52.550769 44.618719) (xy 52.694932 44.762882) (xy 52.86445 44.87615) (xy 53.052808 44.954171) (xy 53.252767 44.993945) - (xy 53.40501 44.993945) (xy 53.40501 46.51606) (xy 51.270207 48.650863) (xy 51.205774 48.58643) (xy 51.036256 48.473162) - (xy 50.931401 48.429729) (xy 50.931401 44.366723) (xy 50.935077 44.329401) (xy 50.931401 44.292078) (xy 50.931401 44.292068) - (xy 50.920404 44.180415) (xy 50.876947 44.037154) (xy 50.829737 43.948831) (xy 50.806375 43.905124) (xy 50.7352 43.818398) - (xy 50.711402 43.7894) (xy 50.682405 43.765603) (xy 50.565 43.648198) (xy 50.565 43.586061) (xy 50.525226 43.386102) - (xy 50.447205 43.197744) (xy 50.333937 43.028226) (xy 50.189774 42.884063) (xy 50.020256 42.770795) (xy 49.831898 42.692774) - (xy 49.631939 42.653) (xy 49.428061 42.653) (xy 49.228102 42.692774) (xy 49.039744 42.770795) (xy 48.895 42.86751) - (xy 48.750256 42.770795) (xy 48.561898 42.692774) (xy 48.361939 42.653) (xy 48.158061 42.653) (xy 47.958102 42.692774) - (xy 47.769744 42.770795) (xy 47.600226 42.884063) (xy 47.456063 43.028226) (xy 47.355 43.179478) (xy 47.355 43.018967) - (xy 47.292168 42.703088) (xy 47.168918 42.405537) (xy 46.989987 42.137748) (xy 46.762252 41.910013) (xy 46.494463 41.731082) - (xy 46.196912 41.607832) (xy 45.881033 41.545) (xy 45.558967 41.545) (xy 45.243088 41.607832) (xy 44.945537 41.731082) - (xy 44.677748 41.910013) (xy 44.450013 42.137748) (xy 44.271082 42.405537) (xy 44.265091 42.42) (xy 43.62801 42.42) - (xy 43.62801 36.576686) (xy 43.735898 36.555226) (xy 43.924256 36.477205) (xy 44.093774 36.363937) (xy 44.237937 36.219774) - (xy 44.351205 36.050256) (xy 44.374418 35.994215) (xy 44.960001 36.579799) (xy 44.960001 36.645091) (xy 44.945537 36.651082) - (xy 44.677748 36.830013) (xy 44.450013 37.057748) (xy 44.271082 37.325537) (xy 44.147832 37.623088) (xy 44.085 37.938967) - (xy 44.085 38.261033) (xy 44.147832 38.576912) (xy 44.271082 38.874463) (xy 44.450013 39.142252) (xy 44.677748 39.369987) - (xy 44.945537 39.548918) (xy 45.243088 39.672168) (xy 45.558967 39.735) (xy 45.881033 39.735) (xy 46.196912 39.672168) - (xy 46.494463 39.548918) (xy 46.762252 39.369987) (xy 46.989987 39.142252) (xy 47.168918 38.874463) (xy 47.292168 38.576912) - (xy 47.311617 38.479136) (xy 47.333815 38.506185) (xy 47.430506 38.585537) (xy 47.54082 38.644502) (xy 47.660518 38.680812) - (xy 47.785 38.693072) (xy 47.97425 38.69) (xy 48.133 38.53125) (xy 48.133 37.7445) (xy 48.113 37.7445) - (xy 48.113 37.56501) (xy 48.407 37.56501) (xy 48.407 37.7445) (xy 48.387 37.7445) (xy 48.387 38.53125) - (xy 48.54575 38.69) (xy 48.735 38.693072) (xy 48.859482 38.680812) (xy 48.97918 38.644502) (xy 49.089494 38.585537) - (xy 49.186185 38.506185) (xy 49.265537 38.409494) (xy 49.324502 38.29918) (xy 49.360812 38.179482) (xy 49.367947 38.107035) - (xy 49.428061 38.118992) (xy 49.631939 38.118992) (xy 49.692053 38.107035) (xy 49.699188 38.179482) (xy 49.735498 38.29918) - (xy 49.794463 38.409494) (xy 49.873815 38.506185) (xy 49.970506 38.585537) (xy 50.08082 38.644502) (xy 50.200518 38.680812) - (xy 50.325 38.693072) (xy 50.51425 38.69) (xy 50.673 38.53125) (xy 50.673 37.7445) (xy 50.927 37.7445) - (xy 50.927 38.53125) (xy 51.08575 38.69) (xy 51.275 38.693072) (xy 51.399482 38.680812) (xy 51.51918 38.644502) - (xy 51.629494 38.585537) (xy 51.726185 38.506185) (xy 51.805537 38.409494) (xy 51.864502 38.29918) (xy 51.900812 38.179482) - (xy 51.913072 38.055) (xy 51.91 37.90325) (xy 51.75125 37.7445) (xy 50.927 37.7445) (xy 50.673 37.7445) - (xy 50.653 37.7445) (xy 50.653 37.4905) (xy 50.673 37.4905) (xy 50.673 37.4705) (xy 50.927 37.4705) - (xy 50.927 37.4905) (xy 51.75125 37.4905) (xy 51.91 37.33175) (xy 51.913072 37.18) (xy 51.900812 37.055518) - (xy 51.864502 36.93582) (xy 51.805537 36.825506) (xy 51.7509 36.75893) (xy 51.768671 36.737275) (xy 51.84785 36.589142) - (xy 51.896608 36.428408) (xy 51.913072 36.26125) (xy 51.913072 35.82375) (xy 51.896608 35.656592) (xy 51.84785 35.495858) - (xy 51.768671 35.347725) (xy 51.662115 35.217885) (xy 51.620824 35.183999) (xy 51.667606 35.145606) (xy 51.771831 35.018608) - (xy 51.849278 34.873716) (xy 51.896969 34.7165) (xy 51.913072 34.553) (xy 51.913072 34.153) (xy 51.896969 33.9895) - (xy 51.849278 33.832284) (xy 51.771831 33.687392) (xy 51.667606 33.560394) (xy 51.628134 33.528) (xy 51.667606 33.495606) - (xy 51.771831 33.368608) (xy 51.849278 33.223716) (xy 51.896969 33.0665) (xy 51.913072 32.903) (xy 51.913072 32.503) - (xy 51.896969 32.3395) (xy 51.849278 32.182284) (xy 51.771831 32.037392) (xy 51.710085 31.962154) (xy 51.774482 31.955812) - (xy 51.89418 31.919502) (xy 52.004494 31.860537) (xy 52.101185 31.781185) (xy 52.180537 31.684494) (xy 52.239502 31.57418) - (xy 52.275812 31.454482) (xy 52.288072 31.33) (xy 52.288072 31.251) (xy 53.939 31.251) (xy 53.939 31.651) - (xy 54.972 31.651) (xy 54.972 30.384837) (xy 54.79319 30.259036) (xy 54.560136 30.342937) (xy 54.368559 30.467953) - (xy 54.205053 30.627941) (xy 54.075901 30.816754) (xy 53.986066 31.027135) (xy 53.939 31.251) (xy 52.288072 31.251) - (xy 52.288072 29.63) (xy 52.275812 29.505518) (xy 52.239502 29.38582) (xy 52.180537 29.275506) (xy 52.101185 29.178815) - (xy 52.004494 29.099463) (xy 51.89418 29.040498) (xy 51.774482 29.004188) (xy 51.65 28.991928) (xy 49.95 28.991928) - (xy 49.825518 29.004188) (xy 49.70582 29.040498) (xy 49.659213 29.06541) (xy 49.387805 28.794002) (xy 49.364002 28.764998) - (xy 49.248277 28.670025) (xy 49.116248 28.599453) (xy 48.972987 28.555996) (xy 48.861334 28.544999) (xy 48.861323 28.544999) - (xy 48.824001 28.541323) (xy 48.786679 28.544999) (xy 47.733321 28.544999) (xy 47.695998 28.541323) (xy 47.658675 28.544999) - (xy 47.658666 28.544999) (xy 47.547013 28.555996) (xy 47.403752 28.599453) (xy 47.271723 28.670025) (xy 47.271721 28.670026) - (xy 47.271722 28.670026) (xy 47.184995 28.7412) (xy 47.184991 28.741204) (xy 47.155998 28.764998) (xy 47.132204 28.793991) - (xy 46.574001 29.352196) (xy 46.544998 29.375998) (xy 46.518018 29.408874) (xy 46.450025 29.491723) (xy 46.434088 29.521539) - (xy 46.379453 29.623753) (xy 46.335996 29.767014) (xy 46.324999 29.878667) (xy 46.324999 29.878677) (xy 46.321323 29.915999) - (xy 46.324999 29.953322) (xy 46.325 35.804196) (xy 46.283799 35.753993) (xy 46.260001 35.724995) (xy 46.231003 35.701197) - (xy 44.758422 34.228617) (xy 44.734619 34.199613) (xy 44.618894 34.10464) (xy 44.486865 34.034068) (xy 44.343604 33.990611) - (xy 44.231951 33.979614) (xy 44.23194 33.979614) (xy 44.194618 33.975938) (xy 44.157296 33.979614) (xy 43.063329 33.979614) - (xy 43.019392 33.935677) (xy 42.868788 33.835047) (xy 43.015174 33.848678) (xy 43.570632 33.790981) (xy 44.104161 33.626028) - (xy 44.570024 33.377018) (xy 44.81017 32.989775) (xy 43 31.179605) (xy 41.18983 32.989775) (xy 41.429976 33.377018) - (xy 41.923877 33.637641) (xy 42.192524 33.717574) (xy 42.05772 33.744388) (xy 41.869362 33.822409) (xy 41.699844 33.935677) - (xy 41.555681 34.07984) (xy 41.442413 34.249358) (xy 41.422687 34.29698) (xy 41.343411 34.24401) (xy 41.073158 34.132068) - (xy 40.78626 34.075) (xy 40.49374 34.075) (xy 40.206842 34.132068) (xy 39.936589 34.24401) (xy 39.693368 34.406525) - (xy 39.486525 34.613368) (xy 39.32401 34.856589) (xy 39.212068 35.126842) (xy 39.155 35.41374) (xy 39.155 35.70626) - (xy 39.212068 35.993158) (xy 39.32401 36.263411) (xy 39.486525 36.506632) (xy 39.693368 36.713475) (xy 39.86776 36.83) - (xy 39.693368 36.946525) (xy 39.486525 37.153368) (xy 39.361822 37.34) (xy 37.556105 37.34) (xy 37.452012 37.088698) - (xy 37.218363 36.739017) (xy 36.920983 36.441637) (xy 36.571302 36.207988) (xy 36.182756 36.047047) (xy 35.770279 35.965) - (xy 35.349721 35.965) (xy 34.937244 36.047047) (xy 34.548698 36.207988) (xy 34.199017 36.441637) (xy 33.901637 36.739017) - (xy 33.667988 37.088698) (xy 33.507047 37.477244) (xy 33.425 37.889721) (xy 31.685 37.889721) (xy 31.685 32.809721) - (xy 33.425 32.809721) (xy 33.425 33.230279) (xy 33.507047 33.642756) (xy 33.667988 34.031302) (xy 33.901637 34.380983) - (xy 34.199017 34.678363) (xy 34.548698 34.912012) (xy 34.937244 35.072953) (xy 35.349721 35.155) (xy 35.770279 35.155) - (xy 36.182756 35.072953) (xy 36.571302 34.912012) (xy 36.920983 34.678363) (xy 37.218363 34.380983) (xy 37.452012 34.031302) - (xy 37.612953 33.642756) (xy 37.695 33.230279) (xy 37.695 32.809721) (xy 37.612953 32.397244) (xy 37.452012 32.008698) - (xy 37.218363 31.659017) (xy 36.920983 31.361637) (xy 36.571302 31.127988) (xy 36.298945 31.015174) (xy 40.151322 31.015174) - (xy 40.209019 31.570632) (xy 40.373972 32.104161) (xy 40.622982 32.570024) (xy 41.010225 32.81017) (xy 42.820395 31) - (xy 43.179605 31) (xy 44.989775 32.81017) (xy 45.377018 32.570024) (xy 45.637641 32.076123) (xy 45.796901 31.540867) - (xy 45.848678 30.984826) (xy 45.790981 30.429368) (xy 45.626028 29.895839) (xy 45.377018 29.429976) (xy 44.989775 29.18983) - (xy 43.179605 31) (xy 42.820395 31) (xy 41.010225 29.18983) (xy 40.622982 29.429976) (xy 40.362359 29.923877) - (xy 40.203099 30.459133) (xy 40.151322 31.015174) (xy 36.298945 31.015174) (xy 36.182756 30.967047) (xy 35.770279 30.885) - (xy 35.349721 30.885) (xy 34.937244 30.967047) (xy 34.548698 31.127988) (xy 34.199017 31.361637) (xy 33.901637 31.659017) - (xy 33.667988 32.008698) (xy 33.507047 32.397244) (xy 33.425 32.809721) (xy 31.685 32.809721) (xy 31.685 31.033504) - (xy 31.751356 30.356752) (xy 31.938168 29.738002) (xy 32.241602 29.167325) (xy 32.369729 29.010225) (xy 41.18983 29.010225) - (xy 43 30.820395) (xy 44.81017 29.010225) (xy 44.570024 28.622982) (xy 44.251685 28.455) (xy 53.939 28.455) - (xy 53.939 28.855) (xy 53.986066 29.078865) (xy 54.075901 29.289246) (xy 54.205053 29.478059) (xy 54.368559 29.638047) - (xy 54.560136 29.763063) (xy 54.79319 29.846964) (xy 54.972 29.721163) (xy 54.972 28.455) (xy 55.226 28.455) - (xy 55.226 29.721163) (xy 55.40481 29.846964) (xy 55.637864 29.763063) (xy 55.829441 29.638047) (xy 55.992947 29.478059) - (xy 56.122099 29.289246) (xy 56.211934 29.078865) (xy 56.259 28.855) (xy 56.259 28.455) (xy 61.089 28.455) - (xy 61.089 28.855) (xy 61.136066 29.078865) (xy 61.225901 29.289246) (xy 61.355053 29.478059) (xy 61.518559 29.638047) - (xy 61.710136 29.763063) (xy 61.94319 29.846964) (xy 62.122 29.721163) (xy 62.122 28.455) (xy 62.376 28.455) - (xy 62.376 29.721163) (xy 62.55481 29.846964) (xy 62.787864 29.763063) (xy 62.979441 29.638047) (xy 63.142947 29.478059) - (xy 63.272099 29.289246) (xy 63.361934 29.078865) (xy 63.376365 29.010225) (xy 73.18983 29.010225) (xy 75 30.820395) - (xy 76.81017 29.010225) (xy 76.570024 28.622982) (xy 76.076123 28.362359) (xy 75.540867 28.203099) (xy 74.984826 28.151322) - (xy 74.429368 28.209019) (xy 73.895839 28.373972) (xy 73.429976 28.622982) (xy 73.18983 29.010225) (xy 63.376365 29.010225) - (xy 63.409 28.855) (xy 63.409 28.455) (xy 62.376 28.455) (xy 62.122 28.455) (xy 61.089 28.455) - (xy 56.259 28.455) (xy 55.226 28.455) (xy 54.972 28.455) (xy 53.939 28.455) (xy 44.251685 28.455) - (xy 44.076123 28.362359) (xy 43.540867 28.203099) (xy 42.984826 28.151322) (xy 42.429368 28.209019) (xy 41.895839 28.373972) - (xy 41.429976 28.622982) (xy 41.18983 29.010225) (xy 32.369729 29.010225) (xy 32.650104 28.666452) (xy 33.148112 28.254464) - (xy 33.716658 27.947052) (xy 34.33409 27.755925) (xy 35.008894 27.685) (xy 53.963388 27.685) - ) - ) - (filled_polygon - (pts - (xy 47.500001 59.398668) (xy 47.496324 59.436) (xy 47.500001 59.473333) (xy 47.510212 59.577) (xy 47.510998 59.584985) - (xy 47.554454 59.728246) (xy 47.625026 59.860276) (xy 47.689634 59.939) (xy 47.72 59.976001) (xy 47.748998 59.999799) - (xy 48.113864 60.364665) (xy 48.015 60.354928) (xy 47.77673 60.354928) (xy 47.329072 59.90727) (xy 47.329072 59.415) - (xy 47.312969 59.2515) (xy 47.265278 59.094284) (xy 47.187831 58.949392) (xy 47.083606 58.822394) (xy 46.956608 58.718169) - (xy 46.811716 58.640722) (xy 46.6545 58.593031) (xy 46.491 58.576928) (xy 46.091 58.576928) (xy 45.9275 58.593031) - (xy 45.770284 58.640722) (xy 45.625392 58.718169) (xy 45.52341 58.801863) (xy 45.492185 58.763815) (xy 45.395494 58.684463) - (xy 45.28518 58.625498) (xy 45.165482 58.589188) (xy 45.041 58.576928) (xy 44.92675 58.58) (xy 44.768 58.73875) - (xy 44.768 59.563) (xy 44.788 59.563) (xy 44.788 59.817) (xy 44.768 59.817) (xy 44.768 60.64125) - (xy 44.92675 60.8) (xy 45.041 60.803072) (xy 45.165482 60.790812) (xy 45.247582 60.765907) (xy 45.190722 60.872284) - (xy 45.143031 61.0295) (xy 45.126928 61.193) (xy 45.126928 61.743) (xy 45.143031 61.9065) (xy 45.159685 61.9614) - (xy 45.091286 61.982148) (xy 44.807249 62.133969) (xy 44.558287 62.338286) (xy 44.35397 62.587248) (xy 44.202149 62.871285) - (xy 44.112528 63.166726) (xy 44.039072 63.09327) (xy 44.039072 62.855) (xy 44.022969 62.6915) (xy 43.975278 62.534284) - (xy 43.897831 62.389392) (xy 43.793606 62.262394) (xy 43.754134 62.23) (xy 43.793606 62.197606) (xy 43.897831 62.070608) - (xy 43.975278 61.925716) (xy 44.022969 61.7685) (xy 44.039072 61.605) (xy 44.039072 61.205) (xy 44.022969 61.0415) - (xy 43.975278 60.884284) (xy 43.897831 60.739392) (xy 43.810956 60.633535) (xy 43.886506 60.695537) (xy 43.99682 60.754502) - (xy 44.116518 60.790812) (xy 44.241 60.803072) (xy 44.35525 60.8) (xy 44.514 60.64125) (xy 44.514 59.817) - (xy 44.494 59.817) (xy 44.494 59.563) (xy 44.514 59.563) (xy 44.514 58.73875) (xy 44.35525 58.58) - (xy 44.241 58.576928) (xy 44.116518 58.589188) (xy 43.99682 58.625498) (xy 43.886506 58.684463) (xy 43.789815 58.763815) - (xy 43.710463 58.860506) (xy 43.686 58.906272) (xy 43.686 58.457422) (xy 43.700332 58.45601) (xy 44.893146 58.45601) - (xy 44.930468 58.459686) (xy 44.96779 58.45601) (xy 44.967801 58.45601) (xy 45.079454 58.445013) (xy 45.222715 58.401556) - (xy 45.354744 58.330984) (xy 45.470469 58.236011) (xy 45.494272 58.207007) (xy 47.500001 56.201279) - ) - ) - (filled_polygon - (pts - (xy 69.469 59.685) (xy 69.489 59.685) (xy 69.489 59.939) (xy 69.469 59.939) (xy 69.469 59.959) - (xy 69.215 59.959) (xy 69.215 59.939) (xy 69.195 59.939) (xy 69.195 59.685) (xy 69.215 59.685) - (xy 69.215 59.665) (xy 69.469 59.665) - ) - ) - (filled_polygon - (pts - (xy 47.264774 43.989898) (xy 47.342795 44.178256) (xy 47.429733 44.308369) (xy 47.217748 44.450013) (xy 46.990013 44.677748) - (xy 46.811082 44.945537) (xy 46.805091 44.96) (xy 45.974332 44.96) (xy 45.937009 44.956324) (xy 45.899686 44.96) - (xy 45.899677 44.96) (xy 45.788024 44.970997) (xy 45.644763 45.014454) (xy 45.512734 45.085026) (xy 45.512732 45.085027) - (xy 45.512733 45.085027) (xy 45.426006 45.156201) (xy 45.426002 45.156205) (xy 45.397009 45.179999) (xy 45.373215 45.208992) - (xy 44.664198 45.91801) (xy 44.602061 45.91801) (xy 44.402102 45.957784) (xy 44.213744 46.035805) (xy 44.044226 46.149073) - (xy 43.900063 46.293236) (xy 43.786795 46.462754) (xy 43.708774 46.651112) (xy 43.669 46.851071) (xy 43.669 47.054949) - (xy 43.708774 47.254908) (xy 43.786795 47.443266) (xy 43.900063 47.612784) (xy 44.044226 47.756947) (xy 44.213744 47.870215) - (xy 44.402102 47.948236) (xy 44.602061 47.98801) (xy 44.805939 47.98801) (xy 45.005898 47.948236) (xy 45.194256 47.870215) - (xy 45.363774 47.756947) (xy 45.507937 47.612784) (xy 45.621205 47.443266) (xy 45.699226 47.254908) (xy 45.739 47.054949) - (xy 45.739 46.992812) (xy 46.251813 46.48) (xy 46.805091 46.48) (xy 46.811082 46.494463) (xy 46.990013 46.762252) - (xy 47.217748 46.989987) (xy 47.485537 47.168918) (xy 47.726256 47.268627) (xy 46.224884 48.77) (xy 45.915711 48.77) - (xy 45.871774 48.726063) (xy 45.702256 48.612795) (xy 45.513898 48.534774) (xy 45.313939 48.495) (xy 45.110061 48.495) - (xy 44.910102 48.534774) (xy 44.721744 48.612795) (xy 44.552226 48.726063) (xy 44.408063 48.870226) (xy 44.294795 49.039744) - (xy 44.216774 49.228102) (xy 44.177 49.428061) (xy 44.177 49.631939) (xy 44.216774 49.831898) (xy 44.294795 50.020256) - (xy 44.408063 50.189774) (xy 44.552226 50.333937) (xy 44.721744 50.447205) (xy 44.910102 50.525226) (xy 45.110061 50.565) - (xy 45.313939 50.565) (xy 45.513898 50.525226) (xy 45.702256 50.447205) (xy 45.871774 50.333937) (xy 45.915711 50.29) - (xy 46.502363 50.29) (xy 46.539685 50.293676) (xy 46.577007 50.29) (xy 46.577018 50.29) (xy 46.688671 50.279003) - (xy 46.708596 50.272959) (xy 46.687832 50.323088) (xy 46.625 50.638967) (xy 46.625 50.961033) (xy 46.687832 51.276912) - (xy 46.811082 51.574463) (xy 46.990013 51.842252) (xy 47.217748 52.069987) (xy 47.485537 52.248918) (xy 47.5 52.254909) - (xy 47.5 52.305) (xy 47.396061 52.305) (xy 47.196102 52.344774) (xy 47.007744 52.422795) (xy 46.838226 52.536063) - (xy 46.694063 52.680226) (xy 46.580795 52.849744) (xy 46.502774 53.038102) (xy 46.463 53.238061) (xy 46.463 53.441939) - (xy 46.502774 53.641898) (xy 46.580795 53.830256) (xy 46.694063 53.999774) (xy 46.738001 54.043712) (xy 46.738 54.813676) - (xy 45.403725 56.147952) (xy 45.305606 56.028394) (xy 45.273 56.001635) (xy 45.273 54.481823) (xy 45.276676 54.4445) - (xy 45.273 54.407177) (xy 45.273 54.407167) (xy 45.262003 54.295514) (xy 45.218546 54.152253) (xy 45.21164 54.139333) - (xy 45.147974 54.020223) (xy 45.076799 53.933497) (xy 45.055072 53.907023) (xy 45.055072 53.65475) (xy 45.038608 53.487592) - (xy 44.98985 53.326858) (xy 44.910671 53.178725) (xy 44.8929 53.15707) (xy 44.947537 53.090494) (xy 45.006502 52.98018) - (xy 45.042812 52.860482) (xy 45.055072 52.736) (xy 45.052 52.58425) (xy 44.89325 52.4255) (xy 44.069 52.4255) - (xy 44.069 52.4455) (xy 43.815 52.4455) (xy 43.815 52.4255) (xy 43.795 52.4255) (xy 43.795 52.1715) - (xy 43.815 52.1715) (xy 43.815 51.38475) (xy 44.069 51.38475) (xy 44.069 52.1715) (xy 44.89325 52.1715) - (xy 45.052 52.01275) (xy 45.055072 51.861) (xy 45.042812 51.736518) (xy 45.006502 51.61682) (xy 44.947537 51.506506) - (xy 44.868185 51.409815) (xy 44.771494 51.330463) (xy 44.66118 51.271498) (xy 44.541482 51.235188) (xy 44.417 51.222928) - (xy 44.22775 51.226) (xy 44.069 51.38475) (xy 43.815 51.38475) (xy 43.65625 51.226) (xy 43.62801 51.225542) - (xy 43.62801 43.94) (xy 44.265091 43.94) (xy 44.271082 43.954463) (xy 44.450013 44.222252) (xy 44.677748 44.449987) - (xy 44.945537 44.628918) (xy 45.243088 44.752168) (xy 45.558967 44.815) (xy 45.881033 44.815) (xy 46.196912 44.752168) - (xy 46.494463 44.628918) (xy 46.762252 44.449987) (xy 46.989987 44.222252) (xy 47.168918 43.954463) (xy 47.228915 43.809619) - ) - ) - (filled_polygon - (pts - (xy 50.864 55.753) (xy 50.884 55.753) (xy 50.884 56.007) (xy 50.864 56.007) (xy 50.864 56.027) - (xy 50.77199 56.027) (xy 50.77199 55.733) (xy 50.864 55.733) - ) - ) - (filled_polygon - (pts - (xy 67.965 52.025968) (xy 67.965 52.184) (xy 67.945 52.184) (xy 67.945 52.204) (xy 67.691 52.204) - (xy 67.691 52.184) (xy 67.671 52.184) (xy 67.671 51.93) (xy 67.691 51.93) (xy 67.691 51.91) - (xy 67.849033 51.91) - ) - ) - (filled_polygon - (pts - (xy 72.742815 43.523185) (xy 72.839506 43.602537) (xy 72.94982 43.661502) (xy 73.069518 43.697812) (xy 73.101506 43.700962) - (xy 73.104 43.704001) (xy 73.132998 43.727799) (xy 73.675 44.269802) (xy 73.675 44.706716) (xy 73.57918 44.655498) - (xy 73.459482 44.619188) (xy 73.335 44.606928) (xy 73.17075 44.61) (xy 73.012 44.76875) (xy 73.012 45.593) - (xy 73.032 45.593) (xy 73.032 45.847) (xy 73.012 45.847) (xy 73.012 46.67125) (xy 73.17075 46.83) - (xy 73.335 46.833072) (xy 73.459482 46.820812) (xy 73.57918 46.784502) (xy 73.689494 46.725537) (xy 73.733649 46.6893) - (xy 73.879717 46.767375) (xy 74.041623 46.816488) (xy 74.21 46.833072) (xy 74.66 46.833072) (xy 74.709404 46.828206) - (xy 75.014479 47.133282) (xy 74.930013 47.217748) (xy 74.751082 47.485537) (xy 74.627832 47.783088) (xy 74.604066 47.902568) - (xy 74.497716 47.845722) (xy 74.3405 47.798031) (xy 74.177 47.781928) (xy 73.777 47.781928) (xy 73.6135 47.798031) - (xy 73.456284 47.845722) (xy 73.311392 47.923169) (xy 73.184394 48.027394) (xy 73.152 48.066866) (xy 73.119606 48.027394) - (xy 72.992608 47.923169) (xy 72.847716 47.845722) (xy 72.6905 47.798031) (xy 72.527 47.781928) (xy 72.127 47.781928) - (xy 71.9635 47.798031) (xy 71.806284 47.845722) (xy 71.661392 47.923169) (xy 71.5645 48.002687) (xy 71.467608 47.923169) - (xy 71.322716 47.845722) (xy 71.1655 47.798031) (xy 71.002 47.781928) (xy 70.763729 47.781928) (xy 70.476803 47.495002) - (xy 70.453001 47.465999) (xy 70.337276 47.371026) (xy 70.205247 47.300454) (xy 70.088564 47.265059) (xy 70.123 47.091939) - (xy 70.123 47.029802) (xy 70.171002 46.9818) (xy 70.200001 46.958001) (xy 70.294974 46.842276) (xy 70.365546 46.710247) - (xy 70.386222 46.642086) (xy 70.42759 46.608137) (xy 70.458815 46.646185) (xy 70.555506 46.725537) (xy 70.66582 46.784502) - (xy 70.785518 46.820812) (xy 70.91 46.833072) (xy 71.02425 46.83) (xy 71.183 46.67125) (xy 71.183 45.847) - (xy 71.437 45.847) (xy 71.437 46.67125) (xy 71.59575 46.83) (xy 71.71 46.833072) (xy 71.834482 46.820812) - (xy 71.95418 46.784502) (xy 72.064494 46.725537) (xy 72.0725 46.718967) (xy 72.080506 46.725537) (xy 72.19082 46.784502) - (xy 72.310518 46.820812) (xy 72.435 46.833072) (xy 72.59925 46.83) (xy 72.758 46.67125) (xy 72.758 45.847) - (xy 71.437 45.847) (xy 71.183 45.847) (xy 71.163 45.847) (xy 71.163 45.593) (xy 71.183 45.593) - (xy 71.183 45.573) (xy 71.437 45.573) (xy 71.437 45.593) (xy 72.758 45.593) (xy 72.758 44.76875) - (xy 72.59925 44.61) (xy 72.435 44.606928) (xy 72.31396 44.618849) (xy 72.33818 44.611502) (xy 72.448494 44.552537) - (xy 72.545185 44.473185) (xy 72.624537 44.376494) (xy 72.683502 44.26618) (xy 72.719812 44.146482) (xy 72.732072 44.022) - (xy 72.732072 43.510095) - ) - ) - (filled_polygon - (pts - (xy 65.534 38.751679) (xy 65.530324 38.789002) (xy 65.534 38.826324) (xy 65.534 38.826334) (xy 65.544997 38.937987) - (xy 65.575085 39.037175) (xy 65.588454 39.081248) (xy 65.659026 39.213278) (xy 65.665861 39.221606) (xy 65.747371 39.320927) - (xy 65.71582 39.330498) (xy 65.605506 39.389463) (xy 65.508815 39.468815) (xy 65.429463 39.565506) (xy 65.370498 39.67582) - (xy 65.334188 39.795518) (xy 65.321928 39.92) (xy 65.321928 40.82) (xy 65.334188 40.944482) (xy 65.370498 41.06418) - (xy 65.429463 41.174494) (xy 65.508815 41.271185) (xy 65.6 41.346019) (xy 65.600001 42.509668) (xy 65.596324 42.547) - (xy 65.600001 42.584333) (xy 65.610998 42.695986) (xy 65.614339 42.706999) (xy 65.654454 42.839246) (xy 65.725026 42.971276) - (xy 65.782855 43.04174) (xy 65.82 43.087001) (xy 65.848998 43.110799) (xy 65.954928 43.216729) (xy 65.954928 43.455) - (xy 65.971031 43.6185) (xy 65.99272 43.69) (xy 65.823322 43.69) (xy 65.785999 43.686324) (xy 65.748676 43.69) - (xy 65.748667 43.69) (xy 65.637014 43.700997) (xy 65.493753 43.744454) (xy 65.361724 43.815026) (xy 65.245999 43.909999) - (xy 65.222196 43.939003) (xy 65.217199 43.944) (xy 63.814802 43.944) (xy 63.498 43.627199) (xy 63.498 39.2953) - (xy 63.501676 39.257977) (xy 63.498 39.220654) (xy 63.498 39.220645) (xy 63.487003 39.108992) (xy 63.443546 38.965731) - (xy 63.394762 38.874463) (xy 63.372974 38.833701) (xy 63.301799 38.746975) (xy 63.278001 38.717977) (xy 63.249004 38.69418) - (xy 62.598145 38.043321) (xy 62.729754 37.972974) (xy 62.845479 37.878001) (xy 62.869281 37.848998) (xy 63.574535 37.143745) - (xy 63.6445 37.164969) (xy 63.808 37.181072) (xy 64.208 37.181072) (xy 64.3715 37.164969) (xy 64.528716 37.117278) - (xy 64.673608 37.039831) (xy 64.800606 36.935606) (xy 64.904831 36.808608) (xy 64.982278 36.663716) (xy 65.029969 36.5065) - (xy 65.037368 36.431378) (xy 65.063801 36.404944) (xy 65.125939 36.404944) (xy 65.325898 36.36517) (xy 65.514256 36.287149) - (xy 65.534001 36.273956) - ) - ) - (filled_polygon - (pts - (xy 58.547 37.211) (xy 58.567 37.211) (xy 58.567 37.465) (xy 58.547 37.465) (xy 58.547 37.485) - (xy 58.293 37.485) (xy 58.293 37.465) (xy 58.273 37.465) (xy 58.273 37.211) (xy 58.293 37.211) - (xy 58.293 37.191) (xy 58.547 37.191) + (xy 78.74 74.93) + (xy 31.115 74.93) + (xy 31.115 27.305) + (xy 78.74 27.305) ) ) ) - (zone (net 1) (net_name GND) (layer B.Cu) (tstamp 60B17E5E) (hatch edge 0.508) + (zone (net 11) (net_name "VOUT") (layers "In1.Cu" "In2.Cu") (tstamp 708e3559-957d-4d99-9a8a-a42ebb97ae20) (hatch edge 0.508) (connect_pads (clearance 0.508)) - (min_thickness 0.254) - (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts - (xy 78.74 74.93) (xy 31.115 74.93) (xy 31.115 27.305) (xy 78.74 27.305) + (xy 42 52) + (xy 50 60) + (xy 50 75) + (xy 31 75) + (xy 31 27) + (xy 42 27) ) ) - (filled_polygon + ) + (zone (net 3) (net_name "+3V3") (layer "In1.Cu") (tstamp b298ff51-cd3e-45bb-bcfb-ca890fb79a87) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon (pts - (xy 53.939 27.801) (xy 53.939 28.201) (xy 54.972 28.201) (xy 54.972 28.181) (xy 55.226 28.181) - (xy 55.226 28.201) (xy 56.259 28.201) (xy 56.259 27.801) (xy 56.234612 27.685) (xy 61.113388 27.685) - (xy 61.089 27.801) (xy 61.089 28.201) (xy 62.122 28.201) (xy 62.122 28.181) (xy 62.376 28.181) - (xy 62.376 28.201) (xy 63.409 28.201) (xy 63.409 27.801) (xy 63.384612 27.685) (xy 74.966496 27.685) - (xy 75.643248 27.751356) (xy 76.261998 27.938168) (xy 76.832675 28.241602) (xy 77.333548 28.650104) (xy 77.745536 29.148112) - (xy 78.052948 29.716658) (xy 78.244075 30.33409) (xy 78.315001 31.008903) (xy 78.315001 36.218224) (xy 78.302974 36.195724) - (xy 78.208001 36.079999) (xy 78.179003 36.056201) (xy 76.229784 34.106983) (xy 76.205981 34.077979) (xy 76.090256 33.983006) - (xy 75.958227 33.912434) (xy 75.814966 33.868977) (xy 75.703313 33.85798) (xy 75.703302 33.85798) (xy 75.66598 33.854304) - (xy 75.628658 33.85798) (xy 73.611293 33.85798) (xy 73.611 33.81375) (xy 73.45225 33.655) (xy 72.353 33.655) - (xy 72.353 33.675) (xy 72.099 33.675) (xy 72.099 33.655) (xy 70.99975 33.655) (xy 70.841 33.81375) - (xy 70.840707 33.85798) (xy 67.837 33.85798) (xy 67.837 33.680061) (xy 67.797226 33.480102) (xy 67.719205 33.291744) - (xy 67.605937 33.122226) (xy 67.461774 32.978063) (xy 67.292256 32.864795) (xy 67.103898 32.786774) (xy 67.059788 32.778) - (xy 70.837928 32.778) (xy 70.841 33.24225) (xy 70.99975 33.401) (xy 72.099 33.401) (xy 72.099 32.30175) - (xy 71.94025 32.143) (xy 71.476 32.139928) (xy 71.351518 32.152188) (xy 71.23182 32.188498) (xy 71.121506 32.247463) - (xy 71.024815 32.326815) (xy 70.945463 32.423506) (xy 70.886498 32.53382) (xy 70.850188 32.653518) (xy 70.837928 32.778) - (xy 67.059788 32.778) (xy 66.903939 32.747) (xy 66.700061 32.747) (xy 66.591455 32.768603) (xy 66.585333 32.768) - (xy 66.585322 32.768) (xy 66.548 32.764324) (xy 66.510678 32.768) (xy 65.813087 32.768) (xy 65.801812 32.653518) - (xy 65.765502 32.53382) (xy 65.706537 32.423506) (xy 65.627185 32.326815) (xy 65.530494 32.247463) (xy 65.42018 32.188498) - (xy 65.300482 32.152188) (xy 65.176 32.139928) (xy 63.676 32.139928) (xy 63.551518 32.152188) (xy 63.43182 32.188498) - (xy 63.409 32.200696) (xy 63.409 31.905) (xy 62.376 31.905) (xy 62.376 33.171163) (xy 62.55481 33.296964) - (xy 62.787864 33.213063) (xy 62.979441 33.088047) (xy 63.037928 33.030818) (xy 63.037928 33.85798) (xy 62.894732 33.85798) - (xy 62.813805 33.777053) (xy 62.644287 33.663785) (xy 62.455929 33.585764) (xy 62.25597 33.54599) (xy 62.052092 33.54599) - (xy 61.852133 33.585764) (xy 61.663775 33.663785) (xy 61.494257 33.777053) (xy 61.45032 33.82099) (xy 59.441849 33.82099) - (xy 59.460966 33.774838) (xy 59.50074 33.574879) (xy 59.50074 33.371001) (xy 59.460966 33.171042) (xy 59.434 33.105941) - (xy 59.434 32.978572) (xy 59.524 32.978572) (xy 59.648482 32.966312) (xy 59.650605 32.965668) (xy 59.74225 32.9755) - (xy 59.810218 32.907532) (xy 59.878494 32.871037) (xy 59.975185 32.791685) (xy 60.047 32.704178) (xy 60.047 32.81675) - (xy 60.20575 32.9755) (xy 60.306233 32.96472) (xy 60.425471 32.926928) (xy 60.535046 32.8666) (xy 60.630746 32.786055) - (xy 60.708893 32.688387) (xy 60.766484 32.57735) (xy 60.801307 32.457211) (xy 60.812023 32.332587) (xy 60.810091 31.905) - (xy 61.089 31.905) (xy 61.089 32.305) (xy 61.136066 32.528865) (xy 61.225901 32.739246) (xy 61.355053 32.928059) - (xy 61.518559 33.088047) (xy 61.710136 33.213063) (xy 61.94319 33.296964) (xy 62.122 33.171163) (xy 62.122 31.905) - (xy 61.089 31.905) (xy 60.810091 31.905) (xy 60.809 31.66375) (xy 60.650252 31.505002) (xy 60.809 31.505002) - (xy 60.809 31.404954) (xy 60.954022 31.376108) (xy 61.089 31.320198) (xy 61.089 31.651) (xy 62.122 31.651) - (xy 62.122 30.384837) (xy 62.376 30.384837) (xy 62.376 31.651) (xy 63.409 31.651) (xy 63.409 31.251) - (xy 63.361934 31.027135) (xy 63.356827 31.015174) (xy 72.151322 31.015174) (xy 72.209019 31.570632) (xy 72.373972 32.104161) - (xy 72.435493 32.219257) (xy 72.353 32.30175) (xy 72.353 33.401) (xy 73.45225 33.401) (xy 73.460255 33.392995) - (xy 73.923877 33.637641) (xy 74.459133 33.796901) (xy 75.015174 33.848678) (xy 75.570632 33.790981) (xy 76.104161 33.626028) - (xy 76.570024 33.377018) (xy 76.81017 32.989775) (xy 75 31.179605) (xy 74.985858 31.193748) (xy 74.806253 31.014143) - (xy 74.820395 31) (xy 75.179605 31) (xy 76.989775 32.81017) (xy 77.377018 32.570024) (xy 77.637641 32.076123) - (xy 77.796901 31.540867) (xy 77.848678 30.984826) (xy 77.790981 30.429368) (xy 77.626028 29.895839) (xy 77.377018 29.429976) - (xy 76.989775 29.18983) (xy 75.179605 31) (xy 74.820395 31) (xy 73.010225 29.18983) (xy 72.622982 29.429976) - (xy 72.362359 29.923877) (xy 72.203099 30.459133) (xy 72.151322 31.015174) (xy 63.356827 31.015174) (xy 63.272099 30.816754) - (xy 63.142947 30.627941) (xy 62.979441 30.467953) (xy 62.787864 30.342937) (xy 62.55481 30.259036) (xy 62.376 30.384837) - (xy 62.122 30.384837) (xy 61.94319 30.259036) (xy 61.710136 30.342937) (xy 61.634 30.392621) (xy 61.634 30.358448) - (xy 61.597108 30.172978) (xy 61.524741 29.998269) (xy 61.419681 29.841036) (xy 61.285964 29.707319) (xy 61.128731 29.602259) - (xy 60.954022 29.529892) (xy 60.768552 29.493) (xy 60.579448 29.493) (xy 60.393978 29.529892) (xy 60.219269 29.602259) - (xy 60.062036 29.707319) (xy 59.928319 29.841036) (xy 59.891717 29.895815) (xy 59.878494 29.884963) (xy 59.810218 29.848468) - (xy 59.74225 29.7805) (xy 59.650605 29.790332) (xy 59.648482 29.789688) (xy 59.524 29.777428) (xy 59.124 29.777428) - (xy 58.999518 29.789688) (xy 58.999 29.789845) (xy 58.998482 29.789688) (xy 58.874 29.777428) (xy 58.474 29.777428) - (xy 58.349518 29.789688) (xy 58.349 29.789845) (xy 58.348482 29.789688) (xy 58.224 29.777428) (xy 57.824 29.777428) - (xy 57.699518 29.789688) (xy 57.699 29.789845) (xy 57.698482 29.789688) (xy 57.574 29.777428) (xy 57.356073 29.777428) - (xy 57.285964 29.707319) (xy 57.128731 29.602259) (xy 56.954022 29.529892) (xy 56.768552 29.493) (xy 56.579448 29.493) - (xy 56.393978 29.529892) (xy 56.219269 29.602259) (xy 56.062036 29.707319) (xy 55.928319 29.841036) (xy 55.823259 29.998269) - (xy 55.750892 30.172978) (xy 55.714 30.358448) (xy 55.714 30.392621) (xy 55.637864 30.342937) (xy 55.40481 30.259036) - (xy 55.226 30.384837) (xy 55.226 31.651) (xy 55.246 31.651) (xy 55.246 31.905) (xy 55.226 31.905) - (xy 55.226 31.925) (xy 54.972 31.925) (xy 54.972 31.905) (xy 53.939 31.905) (xy 53.939 31.997146) - (xy 53.800102 32.024774) (xy 53.611744 32.102795) (xy 53.442226 32.216063) (xy 53.298063 32.360226) (xy 53.184795 32.529744) - (xy 53.106774 32.718102) (xy 53.067 32.918061) (xy 53.067 33.121939) (xy 53.106774 33.321898) (xy 53.184795 33.510256) - (xy 53.298063 33.679774) (xy 53.439279 33.82099) (xy 43.281731 33.82099) (xy 43.570632 33.790981) (xy 44.104161 33.626028) - (xy 44.570024 33.377018) (xy 44.81017 32.989775) (xy 43 31.179605) (xy 41.18983 32.989775) (xy 41.429976 33.377018) - (xy 41.923877 33.637641) (xy 42.192524 33.717574) (xy 42.05772 33.744388) (xy 41.869362 33.822409) (xy 41.699844 33.935677) - (xy 41.555681 34.07984) (xy 41.49872 34.165088) (xy 41.268715 34.042148) (xy 40.960516 33.948657) (xy 40.720322 33.925) - (xy 38.777239 33.925) (xy 37.695 32.842762) (xy 37.695 32.809721) (xy 37.612953 32.397244) (xy 37.452012 32.008698) - (xy 37.218363 31.659017) (xy 36.920983 31.361637) (xy 36.571302 31.127988) (xy 36.298945 31.015174) (xy 40.151322 31.015174) - (xy 40.209019 31.570632) (xy 40.373972 32.104161) (xy 40.622982 32.570024) (xy 41.010225 32.81017) (xy 42.820395 31) - (xy 43.179605 31) (xy 44.989775 32.81017) (xy 45.377018 32.570024) (xy 45.637641 32.076123) (xy 45.796901 31.540867) - (xy 45.848678 30.984826) (xy 45.790981 30.429368) (xy 45.761416 30.33374) (xy 46.775 30.33374) (xy 46.775 30.62626) - (xy 46.832068 30.913158) (xy 46.94401 31.183411) (xy 47.106525 31.426632) (xy 47.313368 31.633475) (xy 47.556589 31.79599) - (xy 47.826842 31.907932) (xy 48.11374 31.965) (xy 48.40626 31.965) (xy 48.693158 31.907932) (xy 48.963411 31.79599) - (xy 49.206632 31.633475) (xy 49.338487 31.50162) (xy 49.360498 31.57418) (xy 49.419463 31.684494) (xy 49.498815 31.781185) - (xy 49.595506 31.860537) (xy 49.70582 31.919502) (xy 49.825518 31.955812) (xy 49.95 31.968072) (xy 51.65 31.968072) - (xy 51.774482 31.955812) (xy 51.89418 31.919502) (xy 52.004494 31.860537) (xy 52.101185 31.781185) (xy 52.180537 31.684494) - (xy 52.239502 31.57418) (xy 52.275812 31.454482) (xy 52.288072 31.33) (xy 52.288072 31.251) (xy 53.939 31.251) - (xy 53.939 31.651) (xy 54.972 31.651) (xy 54.972 30.384837) (xy 54.79319 30.259036) (xy 54.560136 30.342937) - (xy 54.368559 30.467953) (xy 54.205053 30.627941) (xy 54.075901 30.816754) (xy 53.986066 31.027135) (xy 53.939 31.251) - (xy 52.288072 31.251) (xy 52.288072 29.63) (xy 52.275812 29.505518) (xy 52.239502 29.38582) (xy 52.180537 29.275506) - (xy 52.101185 29.178815) (xy 52.004494 29.099463) (xy 51.89418 29.040498) (xy 51.774482 29.004188) (xy 51.65 28.991928) - (xy 49.95 28.991928) (xy 49.825518 29.004188) (xy 49.70582 29.040498) (xy 49.595506 29.099463) (xy 49.498815 29.178815) - (xy 49.419463 29.275506) (xy 49.360498 29.38582) (xy 49.338487 29.45838) (xy 49.206632 29.326525) (xy 48.963411 29.16401) - (xy 48.693158 29.052068) (xy 48.40626 28.995) (xy 48.11374 28.995) (xy 47.826842 29.052068) (xy 47.556589 29.16401) - (xy 47.313368 29.326525) (xy 47.106525 29.533368) (xy 46.94401 29.776589) (xy 46.832068 30.046842) (xy 46.775 30.33374) - (xy 45.761416 30.33374) (xy 45.626028 29.895839) (xy 45.377018 29.429976) (xy 44.989775 29.18983) (xy 43.179605 31) - (xy 42.820395 31) (xy 41.010225 29.18983) (xy 40.622982 29.429976) (xy 40.362359 29.923877) (xy 40.203099 30.459133) - (xy 40.151322 31.015174) (xy 36.298945 31.015174) (xy 36.182756 30.967047) (xy 35.770279 30.885) (xy 35.349721 30.885) - (xy 34.937244 30.967047) (xy 34.548698 31.127988) (xy 34.199017 31.361637) (xy 33.901637 31.659017) (xy 33.667988 32.008698) - (xy 33.507047 32.397244) (xy 33.425 32.809721) (xy 33.425 33.230279) (xy 33.507047 33.642756) (xy 33.667988 34.031302) - (xy 33.901637 34.380983) (xy 34.199017 34.678363) (xy 34.548698 34.912012) (xy 34.937244 35.072953) (xy 35.349721 35.155) - (xy 35.382762 35.155) (xy 36.339899 36.112138) (xy 36.182756 36.047047) (xy 35.770279 35.965) (xy 35.349721 35.965) - (xy 34.937244 36.047047) (xy 34.548698 36.207988) (xy 34.199017 36.441637) (xy 33.901637 36.739017) (xy 33.667988 37.088698) - (xy 33.507047 37.477244) (xy 33.425 37.889721) (xy 33.425 38.310279) (xy 33.507047 38.722756) (xy 33.667988 39.111302) - (xy 33.901637 39.460983) (xy 34.199017 39.758363) (xy 34.548698 39.992012) (xy 34.937244 40.152953) (xy 35.349721 40.235) - (xy 35.770279 40.235) (xy 36.182756 40.152953) (xy 36.571302 39.992012) (xy 36.625002 39.956131) (xy 36.625002 41.323869) - (xy 36.571302 41.287988) (xy 36.182756 41.127047) (xy 35.770279 41.045) (xy 35.349721 41.045) (xy 34.937244 41.127047) - (xy 34.548698 41.287988) (xy 34.199017 41.521637) (xy 33.901637 41.819017) (xy 33.667988 42.168698) (xy 33.507047 42.557244) - (xy 33.425 42.969721) (xy 33.425 43.390279) (xy 33.507047 43.802756) (xy 33.667988 44.191302) (xy 33.901637 44.540983) - (xy 34.199017 44.838363) (xy 34.548698 45.072012) (xy 34.937244 45.232953) (xy 35.349721 45.315) (xy 35.770279 45.315) - (xy 36.182756 45.232953) (xy 36.571302 45.072012) (xy 36.625001 45.036131) (xy 36.625001 46.123029) (xy 35.84575 46.125) - (xy 35.687 46.28375) (xy 35.687 48.133) (xy 35.707 48.133) (xy 35.707 48.387) (xy 35.687 48.387) - (xy 35.687 50.23625) (xy 35.84575 50.395) (xy 36.191886 50.395876) (xy 35.382762 51.205) (xy 35.349721 51.205) - (xy 34.937244 51.287047) (xy 34.548698 51.447988) (xy 34.199017 51.681637) (xy 33.901637 51.979017) (xy 33.667988 52.328698) - (xy 33.507047 52.717244) (xy 33.425 53.129721) (xy 33.425 53.550279) (xy 33.507047 53.962756) (xy 33.667988 54.351302) - (xy 33.901637 54.700983) (xy 34.199017 54.998363) (xy 34.548698 55.232012) (xy 34.937244 55.392953) (xy 35.349721 55.475) - (xy 35.770279 55.475) (xy 36.182756 55.392953) (xy 36.571302 55.232012) (xy 36.920983 54.998363) (xy 37.184346 54.735) - (xy 39.684893 54.735) (xy 39.486525 54.933368) (xy 39.32401 55.176589) (xy 39.212068 55.446842) (xy 39.155 55.73374) - (xy 39.155 56.02626) (xy 39.19879 56.246407) (xy 37.785199 57.66) (xy 37.556105 57.66) (xy 37.452012 57.408698) - (xy 37.218363 57.059017) (xy 36.920983 56.761637) (xy 36.571302 56.527988) (xy 36.182756 56.367047) (xy 35.770279 56.285) - (xy 35.349721 56.285) (xy 34.937244 56.367047) (xy 34.548698 56.527988) (xy 34.199017 56.761637) (xy 33.901637 57.059017) - (xy 33.667988 57.408698) (xy 33.507047 57.797244) (xy 33.425 58.209721) (xy 33.425 58.630279) (xy 33.507047 59.042756) - (xy 33.667988 59.431302) (xy 33.901637 59.780983) (xy 34.199017 60.078363) (xy 34.548698 60.312012) (xy 34.937244 60.472953) - (xy 35.349721 60.555) (xy 35.770279 60.555) (xy 36.182756 60.472953) (xy 36.571302 60.312012) (xy 36.920983 60.078363) - (xy 37.218363 59.780983) (xy 37.452012 59.431302) (xy 37.556105 59.18) (xy 38.062678 59.18) (xy 38.1 59.183676) - (xy 38.137322 59.18) (xy 38.137333 59.18) (xy 38.248986 59.169003) (xy 38.392247 59.125546) (xy 38.524276 59.054974) - (xy 38.640001 58.960001) (xy 38.663804 58.930997) (xy 39.155 58.439801) (xy 39.155 58.56626) (xy 39.19879 58.786408) - (xy 36.434059 61.55114) (xy 36.182756 61.447047) (xy 35.770279 61.365) (xy 35.349721 61.365) (xy 34.937244 61.447047) - (xy 34.548698 61.607988) (xy 34.199017 61.841637) (xy 33.901637 62.139017) (xy 33.667988 62.488698) (xy 33.507047 62.877244) - (xy 33.425 63.289721) (xy 33.425 63.710279) (xy 33.507047 64.122756) (xy 33.667988 64.511302) (xy 33.901637 64.860983) - (xy 34.199017 65.158363) (xy 34.548698 65.392012) (xy 34.937244 65.552953) (xy 35.349721 65.635) (xy 35.770279 65.635) - (xy 36.182756 65.552953) (xy 36.571302 65.392012) (xy 36.920983 65.158363) (xy 37.218363 64.860983) (xy 37.452012 64.511302) - (xy 37.612953 64.122756) (xy 37.695 63.710279) (xy 37.695 63.289721) (xy 37.612953 62.877244) (xy 37.50886 62.625941) - (xy 39.155 60.979802) (xy 39.155 61.087002) (xy 39.313748 61.087002) (xy 39.155 61.24575) (xy 39.151928 61.81) - (xy 39.164188 61.934482) (xy 39.200498 62.05418) (xy 39.259463 62.164494) (xy 39.338815 62.261185) (xy 39.435506 62.340537) - (xy 39.54582 62.399502) (xy 39.665518 62.435812) (xy 39.79 62.448072) (xy 40.35425 62.445) (xy 40.513 62.28625) - (xy 40.513 61.087) (xy 40.767 61.087) (xy 40.767 62.28625) (xy 40.92575 62.445) (xy 41.49 62.448072) - (xy 41.614482 62.435812) (xy 41.73418 62.399502) (xy 41.844494 62.340537) (xy 41.941185 62.261185) (xy 42.020537 62.164494) - (xy 42.079502 62.05418) (xy 42.115812 61.934482) (xy 42.128072 61.81) (xy 42.125 61.24575) (xy 41.96625 61.087) - (xy 40.767 61.087) (xy 40.513 61.087) (xy 40.493 61.087) (xy 40.493 60.833) (xy 40.513 60.833) - (xy 40.513 60.813) (xy 40.767 60.813) (xy 40.767 60.833) (xy 41.96625 60.833) (xy 42.125 60.67425) - (xy 42.128072 60.11) (xy 42.115812 59.985518) (xy 42.079502 59.86582) (xy 42.020537 59.755506) (xy 41.941185 59.658815) - (xy 41.844494 59.579463) (xy 41.73418 59.520498) (xy 41.66162 59.498487) (xy 41.793475 59.366632) (xy 41.95599 59.123411) - (xy 42.067932 58.853158) (xy 42.125 58.56626) (xy 42.125 58.475157) (xy 45.664842 62.015) (xy 45.57374 62.015) - (xy 45.286842 62.072068) (xy 45.016589 62.18401) (xy 44.773368 62.346525) (xy 44.566525 62.553368) (xy 44.40401 62.796589) - (xy 44.292068 63.066842) (xy 44.235 63.35374) (xy 44.235 63.64626) (xy 44.292068 63.933158) (xy 44.40401 64.203411) - (xy 44.566525 64.446632) (xy 44.773368 64.653475) (xy 45.016589 64.81599) (xy 45.286842 64.927932) (xy 45.57374 64.985) - (xy 45.86626 64.985) (xy 46.153158 64.927932) (xy 46.423411 64.81599) (xy 46.666632 64.653475) (xy 46.873475 64.446632) - (xy 46.895151 64.414191) (xy 47.098286 64.661714) (xy 47.347248 64.866031) (xy 47.631285 65.017852) (xy 47.939484 65.111343) - (xy 48.26 65.142911) (xy 48.580515 65.111343) (xy 48.888714 65.017852) (xy 49.172751 64.866031) (xy 49.404255 64.676042) - (xy 49.419463 64.704494) (xy 49.498815 64.801185) (xy 49.595506 64.880537) (xy 49.70582 64.939502) (xy 49.825518 64.975812) - (xy 49.95 64.988072) (xy 50.115571 64.988072) (xy 50.171285 65.017852) (xy 50.479484 65.111343) (xy 50.719678 65.135) - (xy 52.662762 65.135) (xy 56.511886 68.984124) (xy 56.16575 68.985) (xy 56.007 69.14375) (xy 56.007 70.993) - (xy 57.85625 70.993) (xy 58.015 70.83425) (xy 58.015876 70.488114) (xy 58.825 71.297239) (xy 58.825 71.330279) - (xy 58.907047 71.742756) (xy 59.067988 72.131302) (xy 59.301637 72.480983) (xy 59.599017 72.778363) (xy 59.948698 73.012012) - (xy 60.337244 73.172953) (xy 60.749721 73.255) (xy 61.170279 73.255) (xy 61.582756 73.172953) (xy 61.971302 73.012012) - (xy 62.320983 72.778363) (xy 62.479346 72.62) (xy 63.901928 72.62) (xy 63.914188 72.744482) (xy 63.950498 72.86418) - (xy 64.009463 72.974494) (xy 64.088815 73.071185) (xy 64.185506 73.150537) (xy 64.29582 73.209502) (xy 64.415518 73.245812) - (xy 64.54 73.258072) (xy 65.75425 73.255) (xy 65.913 73.09625) (xy 65.913 71.247) (xy 66.167 71.247) - (xy 66.167 73.09625) (xy 66.32575 73.255) (xy 67.54 73.258072) (xy 67.664482 73.245812) (xy 67.78418 73.209502) - (xy 67.894494 73.150537) (xy 67.991185 73.071185) (xy 68.057996 72.989775) (xy 73.18983 72.989775) (xy 73.429976 73.377018) - (xy 73.923877 73.637641) (xy 74.459133 73.796901) (xy 75.015174 73.848678) (xy 75.570632 73.790981) (xy 76.104161 73.626028) - (xy 76.570024 73.377018) (xy 76.81017 72.989775) (xy 75 71.179605) (xy 73.18983 72.989775) (xy 68.057996 72.989775) - (xy 68.070537 72.974494) (xy 68.129502 72.86418) (xy 68.165812 72.744482) (xy 68.178072 72.62) (xy 68.175 71.40575) - (xy 68.01625 71.247) (xy 66.167 71.247) (xy 65.913 71.247) (xy 64.06375 71.247) (xy 63.905 71.40575) - (xy 63.901928 72.62) (xy 62.479346 72.62) (xy 62.618363 72.480983) (xy 62.852012 72.131302) (xy 63.012953 71.742756) - (xy 63.095 71.330279) (xy 63.095 71.015174) (xy 72.151322 71.015174) (xy 72.209019 71.570632) (xy 72.373972 72.104161) - (xy 72.622982 72.570024) (xy 73.010225 72.81017) (xy 74.820395 71) (xy 75.179605 71) (xy 76.989775 72.81017) - (xy 77.377018 72.570024) (xy 77.637641 72.076123) (xy 77.796901 71.540867) (xy 77.848678 70.984826) (xy 77.790981 70.429368) - (xy 77.626028 69.895839) (xy 77.377018 69.429976) (xy 76.989775 69.18983) (xy 75.179605 71) (xy 74.820395 71) - (xy 73.010225 69.18983) (xy 72.622982 69.429976) (xy 72.362359 69.923877) (xy 72.203099 70.459133) (xy 72.151322 71.015174) - (xy 63.095 71.015174) (xy 63.095 70.909721) (xy 63.012953 70.497244) (xy 62.852012 70.108698) (xy 62.618363 69.759017) - (xy 62.479346 69.62) (xy 63.901928 69.62) (xy 63.905 70.83425) (xy 64.06375 70.993) (xy 65.913 70.993) - (xy 65.913 69.14375) (xy 66.167 69.14375) (xy 66.167 70.993) (xy 68.01625 70.993) (xy 68.175 70.83425) - (xy 68.178072 69.62) (xy 68.165812 69.495518) (xy 68.129502 69.37582) (xy 68.070537 69.265506) (xy 67.991185 69.168815) - (xy 67.894494 69.089463) (xy 67.78418 69.030498) (xy 67.717349 69.010225) (xy 73.18983 69.010225) (xy 75 70.820395) - (xy 76.81017 69.010225) (xy 76.570024 68.622982) (xy 76.076123 68.362359) (xy 75.540867 68.203099) (xy 74.984826 68.151322) - (xy 74.429368 68.209019) (xy 73.895839 68.373972) (xy 73.429976 68.622982) (xy 73.18983 69.010225) (xy 67.717349 69.010225) - (xy 67.664482 68.994188) (xy 67.54 68.981928) (xy 66.32575 68.985) (xy 66.167 69.14375) (xy 65.913 69.14375) - (xy 65.75425 68.985) (xy 64.54 68.981928) (xy 64.415518 68.994188) (xy 64.29582 69.030498) (xy 64.185506 69.089463) - (xy 64.088815 69.168815) (xy 64.009463 69.265506) (xy 63.950498 69.37582) (xy 63.914188 69.495518) (xy 63.901928 69.62) - (xy 62.479346 69.62) (xy 62.320983 69.461637) (xy 61.971302 69.227988) (xy 61.582756 69.067047) (xy 61.170279 68.985) - (xy 61.137239 68.985) (xy 54.552925 62.400687) (xy 54.501714 62.338286) (xy 54.252752 62.133969) (xy 53.968715 61.982148) - (xy 53.660516 61.888657) (xy 53.420322 61.865) (xy 53.420319 61.865) (xy 53.34 61.857089) (xy 53.259681 61.865) - (xy 50.719678 61.865) (xy 50.479484 61.888657) (xy 50.171285 61.982148) (xy 50.115571 62.011928) (xy 49.95 62.011928) - (xy 49.875466 62.019269) (xy 49.871343 61.977403) (xy 49.790088 61.709542) (xy 49.831898 61.701226) (xy 50.020256 61.623205) - (xy 50.189774 61.509937) (xy 50.233711 61.466) (xy 69.744678 61.466) (xy 69.782 61.469676) (xy 69.819322 61.466) - (xy 69.819333 61.466) (xy 69.930986 61.455003) (xy 70.074247 61.411546) (xy 70.206276 61.340974) (xy 70.322001 61.246001) - (xy 70.345804 61.216997) (xy 76.179003 55.383799) (xy 76.208001 55.360001) (xy 76.302358 55.245027) (xy 76.302974 55.244277) - (xy 76.335923 55.182634) (xy 76.41218 55.159502) (xy 76.522494 55.100537) (xy 76.619185 55.021185) (xy 76.668 54.961704) - (xy 76.716815 55.021185) (xy 76.813506 55.100537) (xy 76.908001 55.151046) (xy 76.908001 56.015928) (xy 76.048 56.015928) - (xy 75.923518 56.028188) (xy 75.80382 56.064498) (xy 75.693506 56.123463) (xy 75.596815 56.202815) (xy 75.517463 56.299506) - (xy 75.458498 56.40982) (xy 75.422188 56.529518) (xy 75.409928 56.654) (xy 75.409928 58.154) (xy 75.422188 58.278482) - (xy 75.458498 58.39818) (xy 75.517463 58.508494) (xy 75.596815 58.605185) (xy 75.693506 58.684537) (xy 75.80382 58.743502) - (xy 75.923518 58.779812) (xy 76.048 58.792072) (xy 77.548 58.792072) (xy 77.672482 58.779812) (xy 77.79218 58.743502) - (xy 77.902494 58.684537) (xy 77.999185 58.605185) (xy 78.078537 58.508494) (xy 78.137502 58.39818) (xy 78.173812 58.278482) - (xy 78.186072 58.154) (xy 78.186072 57.091998) (xy 78.208001 57.074001) (xy 78.302974 56.958276) (xy 78.315 56.935777) - (xy 78.315 70.966496) (xy 78.248644 71.643248) (xy 78.061833 72.261996) (xy 77.758398 72.832675) (xy 77.349896 73.333548) - (xy 76.851888 73.745536) (xy 76.283342 74.052948) (xy 75.665909 74.244075) (xy 74.991107 74.315) (xy 35.033504 74.315) - (xy 34.356752 74.248644) (xy 33.738004 74.061833) (xy 33.167325 73.758398) (xy 32.666452 73.349896) (xy 32.368535 72.989775) - (xy 41.18983 72.989775) (xy 41.429976 73.377018) (xy 41.923877 73.637641) (xy 42.459133 73.796901) (xy 43.015174 73.848678) - (xy 43.570632 73.790981) (xy 44.104161 73.626028) (xy 44.570024 73.377018) (xy 44.81017 72.989775) (xy 43 71.179605) - (xy 41.18983 72.989775) (xy 32.368535 72.989775) (xy 32.254464 72.851888) (xy 31.947052 72.283342) (xy 31.755925 71.665909) - (xy 31.68753 71.015174) (xy 40.151322 71.015174) (xy 40.209019 71.570632) (xy 40.373972 72.104161) (xy 40.622982 72.570024) - (xy 41.010225 72.81017) (xy 42.820395 71) (xy 43.179605 71) (xy 44.989775 72.81017) (xy 45.377018 72.570024) - (xy 45.637641 72.076123) (xy 45.796901 71.540867) (xy 45.848678 70.984826) (xy 45.840877 70.909721) (xy 48.665 70.909721) - (xy 48.665 71.330279) (xy 48.747047 71.742756) (xy 48.907988 72.131302) (xy 49.141637 72.480983) (xy 49.439017 72.778363) - (xy 49.788698 73.012012) (xy 50.177244 73.172953) (xy 50.589721 73.255) (xy 51.010279 73.255) (xy 51.422756 73.172953) - (xy 51.811302 73.012012) (xy 52.160983 72.778363) (xy 52.319346 72.62) (xy 53.741928 72.62) (xy 53.754188 72.744482) - (xy 53.790498 72.86418) (xy 53.849463 72.974494) (xy 53.928815 73.071185) (xy 54.025506 73.150537) (xy 54.13582 73.209502) - (xy 54.255518 73.245812) (xy 54.38 73.258072) (xy 55.59425 73.255) (xy 55.753 73.09625) (xy 55.753 71.247) - (xy 56.007 71.247) (xy 56.007 73.09625) (xy 56.16575 73.255) (xy 57.38 73.258072) (xy 57.504482 73.245812) - (xy 57.62418 73.209502) (xy 57.734494 73.150537) (xy 57.831185 73.071185) (xy 57.910537 72.974494) (xy 57.969502 72.86418) - (xy 58.005812 72.744482) (xy 58.018072 72.62) (xy 58.015 71.40575) (xy 57.85625 71.247) (xy 56.007 71.247) - (xy 55.753 71.247) (xy 53.90375 71.247) (xy 53.745 71.40575) (xy 53.741928 72.62) (xy 52.319346 72.62) - (xy 52.458363 72.480983) (xy 52.692012 72.131302) (xy 52.852953 71.742756) (xy 52.935 71.330279) (xy 52.935 70.909721) - (xy 52.852953 70.497244) (xy 52.692012 70.108698) (xy 52.458363 69.759017) (xy 52.319346 69.62) (xy 53.741928 69.62) - (xy 53.745 70.83425) (xy 53.90375 70.993) (xy 55.753 70.993) (xy 55.753 69.14375) (xy 55.59425 68.985) - (xy 54.38 68.981928) (xy 54.255518 68.994188) (xy 54.13582 69.030498) (xy 54.025506 69.089463) (xy 53.928815 69.168815) - (xy 53.849463 69.265506) (xy 53.790498 69.37582) (xy 53.754188 69.495518) (xy 53.741928 69.62) (xy 52.319346 69.62) - (xy 52.160983 69.461637) (xy 51.811302 69.227988) (xy 51.422756 69.067047) (xy 51.010279 68.985) (xy 50.589721 68.985) - (xy 50.177244 69.067047) (xy 49.788698 69.227988) (xy 49.439017 69.461637) (xy 49.141637 69.759017) (xy 48.907988 70.108698) - (xy 48.747047 70.497244) (xy 48.665 70.909721) (xy 45.840877 70.909721) (xy 45.790981 70.429368) (xy 45.626028 69.895839) - (xy 45.377018 69.429976) (xy 44.989775 69.18983) (xy 43.179605 71) (xy 42.820395 71) (xy 41.010225 69.18983) - (xy 40.622982 69.429976) (xy 40.362359 69.923877) (xy 40.203099 70.459133) (xy 40.151322 71.015174) (xy 31.68753 71.015174) - (xy 31.685 70.991107) (xy 31.685 70.08) (xy 33.421928 70.08) (xy 33.434188 70.204482) (xy 33.470498 70.32418) - (xy 33.529463 70.434494) (xy 33.608815 70.531185) (xy 33.705506 70.610537) (xy 33.81582 70.669502) (xy 33.935518 70.705812) - (xy 34.06 70.718072) (xy 35.27425 70.715) (xy 35.433 70.55625) (xy 35.433 68.707) (xy 35.687 68.707) - (xy 35.687 70.55625) (xy 35.84575 70.715) (xy 37.06 70.718072) (xy 37.184482 70.705812) (xy 37.30418 70.669502) - (xy 37.414494 70.610537) (xy 37.511185 70.531185) (xy 37.590537 70.434494) (xy 37.649502 70.32418) (xy 37.685812 70.204482) - (xy 37.698072 70.08) (xy 37.695366 69.010225) (xy 41.18983 69.010225) (xy 43 70.820395) (xy 44.81017 69.010225) - (xy 44.570024 68.622982) (xy 44.076123 68.362359) (xy 43.540867 68.203099) (xy 42.984826 68.151322) (xy 42.429368 68.209019) - (xy 41.895839 68.373972) (xy 41.429976 68.622982) (xy 41.18983 69.010225) (xy 37.695366 69.010225) (xy 37.695 68.86575) - (xy 37.53625 68.707) (xy 35.687 68.707) (xy 35.433 68.707) (xy 33.58375 68.707) (xy 33.425 68.86575) - (xy 33.421928 70.08) (xy 31.685 70.08) (xy 31.685 67.08) (xy 33.421928 67.08) (xy 33.425 68.29425) - (xy 33.58375 68.453) (xy 35.433 68.453) (xy 35.433 66.60375) (xy 35.687 66.60375) (xy 35.687 68.453) - (xy 37.53625 68.453) (xy 37.695 68.29425) (xy 37.698072 67.08) (xy 37.685812 66.955518) (xy 37.649502 66.83582) - (xy 37.590537 66.725506) (xy 37.511185 66.628815) (xy 37.414494 66.549463) (xy 37.30418 66.490498) (xy 37.184482 66.454188) - (xy 37.06 66.441928) (xy 35.84575 66.445) (xy 35.687 66.60375) (xy 35.433 66.60375) (xy 35.27425 66.445) - (xy 34.06 66.441928) (xy 33.935518 66.454188) (xy 33.81582 66.490498) (xy 33.705506 66.549463) (xy 33.608815 66.628815) - (xy 33.529463 66.725506) (xy 33.470498 66.83582) (xy 33.434188 66.955518) (xy 33.421928 67.08) (xy 31.685 67.08) - (xy 31.685 49.76) (xy 33.421928 49.76) (xy 33.434188 49.884482) (xy 33.470498 50.00418) (xy 33.529463 50.114494) - (xy 33.608815 50.211185) (xy 33.705506 50.290537) (xy 33.81582 50.349502) (xy 33.935518 50.385812) (xy 34.06 50.398072) - (xy 35.27425 50.395) (xy 35.433 50.23625) (xy 35.433 48.387) (xy 33.58375 48.387) (xy 33.425 48.54575) - (xy 33.421928 49.76) (xy 31.685 49.76) (xy 31.685 46.76) (xy 33.421928 46.76) (xy 33.425 47.97425) - (xy 33.58375 48.133) (xy 35.433 48.133) (xy 35.433 46.28375) (xy 35.27425 46.125) (xy 34.06 46.121928) - (xy 33.935518 46.134188) (xy 33.81582 46.170498) (xy 33.705506 46.229463) (xy 33.608815 46.308815) (xy 33.529463 46.405506) - (xy 33.470498 46.51582) (xy 33.434188 46.635518) (xy 33.421928 46.76) (xy 31.685 46.76) (xy 31.685 31.033504) - (xy 31.751356 30.356752) (xy 31.938168 29.738002) (xy 32.241602 29.167325) (xy 32.369729 29.010225) (xy 41.18983 29.010225) - (xy 43 30.820395) (xy 44.81017 29.010225) (xy 44.570024 28.622982) (xy 44.251685 28.455) (xy 53.939 28.455) - (xy 53.939 28.855) (xy 53.986066 29.078865) (xy 54.075901 29.289246) (xy 54.205053 29.478059) (xy 54.368559 29.638047) - (xy 54.560136 29.763063) (xy 54.79319 29.846964) (xy 54.972 29.721163) (xy 54.972 28.455) (xy 55.226 28.455) - (xy 55.226 29.721163) (xy 55.40481 29.846964) (xy 55.637864 29.763063) (xy 55.829441 29.638047) (xy 55.992947 29.478059) - (xy 56.122099 29.289246) (xy 56.211934 29.078865) (xy 56.259 28.855) (xy 56.259 28.455) (xy 61.089 28.455) - (xy 61.089 28.855) (xy 61.136066 29.078865) (xy 61.225901 29.289246) (xy 61.355053 29.478059) (xy 61.518559 29.638047) - (xy 61.710136 29.763063) (xy 61.94319 29.846964) (xy 62.122 29.721163) (xy 62.122 28.455) (xy 62.376 28.455) - (xy 62.376 29.721163) (xy 62.55481 29.846964) (xy 62.787864 29.763063) (xy 62.979441 29.638047) (xy 63.142947 29.478059) - (xy 63.272099 29.289246) (xy 63.361934 29.078865) (xy 63.376365 29.010225) (xy 73.18983 29.010225) (xy 75 30.820395) - (xy 76.81017 29.010225) (xy 76.570024 28.622982) (xy 76.076123 28.362359) (xy 75.540867 28.203099) (xy 74.984826 28.151322) - (xy 74.429368 28.209019) (xy 73.895839 28.373972) (xy 73.429976 28.622982) (xy 73.18983 29.010225) (xy 63.376365 29.010225) - (xy 63.409 28.855) (xy 63.409 28.455) (xy 62.376 28.455) (xy 62.122 28.455) (xy 61.089 28.455) - (xy 56.259 28.455) (xy 55.226 28.455) (xy 54.972 28.455) (xy 53.939 28.455) (xy 44.251685 28.455) - (xy 44.076123 28.362359) (xy 43.540867 28.203099) (xy 42.984826 28.151322) (xy 42.429368 28.209019) (xy 41.895839 28.373972) - (xy 41.429976 28.622982) (xy 41.18983 29.010225) (xy 32.369729 29.010225) (xy 32.650104 28.666452) (xy 33.148112 28.254464) - (xy 33.716658 27.947052) (xy 34.33409 27.755925) (xy 35.008894 27.685) (xy 53.963388 27.685) + (xy 79 75) + (xy 51 75) + (xy 51 59) + (xy 43 51) + (xy 43 27) + (xy 79 27) ) ) - (filled_polygon + ) + (zone (net 1) (net_name "GND") (layer "In2.Cu") (tstamp 942d5a99-4324-4173-9bfb-0c5be44bff26) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon (pts - (xy 58.579207 47.012005) (xy 58.748725 47.125273) (xy 58.937083 47.203294) (xy 59.137042 47.243068) (xy 59.203982 47.243068) - (xy 59.203983 50.90965) (xy 59.200306 50.946982) (xy 59.203983 50.984315) (xy 59.21498 51.095968) (xy 59.227793 51.138206) - (xy 59.258436 51.239228) (xy 59.329008 51.371258) (xy 59.3535 51.401101) (xy 59.3535 51.473439) (xy 59.393274 51.673398) - (xy 59.471295 51.861756) (xy 59.584563 52.031274) (xy 59.728726 52.175437) (xy 59.898244 52.288705) (xy 60.086602 52.366726) - (xy 60.286561 52.4065) (xy 60.490439 52.4065) (xy 60.690398 52.366726) (xy 60.878756 52.288705) (xy 61.048274 52.175437) - (xy 61.192437 52.031274) (xy 61.305705 51.861756) (xy 61.307231 51.858072) (xy 62.568714 51.858072) (xy 62.542188 51.945518) - (xy 62.529928 52.07) (xy 62.529928 54.57) (xy 62.533001 54.601197) (xy 62.533001 55.738239) (xy 62.527509 55.794) - (xy 62.549423 56.016498) (xy 62.614324 56.230446) (xy 62.653788 56.304277) (xy 62.719717 56.427623) (xy 62.861552 56.600449) - (xy 62.90486 56.635991) (xy 63.498857 57.229988) (xy 63.628378 57.336284) (xy 63.825553 57.441676) (xy 64.039501 57.506577) - (xy 64.262 57.528491) (xy 64.484499 57.506577) (xy 64.698446 57.441676) (xy 64.895622 57.336284) (xy 65.068449 57.194449) - (xy 65.210284 57.021622) (xy 65.315676 56.824446) (xy 65.36738 56.654) (xy 67.609928 56.654) (xy 67.613 57.11825) - (xy 67.77175 57.277) (xy 68.871 57.277) (xy 68.871 56.17775) (xy 69.125 56.17775) (xy 69.125 57.277) - (xy 70.22425 57.277) (xy 70.383 57.11825) (xy 70.386072 56.654) (xy 70.373812 56.529518) (xy 70.337502 56.40982) - (xy 70.278537 56.299506) (xy 70.199185 56.202815) (xy 70.102494 56.123463) (xy 69.99218 56.064498) (xy 69.872482 56.028188) - (xy 69.748 56.015928) (xy 69.28375 56.019) (xy 69.125 56.17775) (xy 68.871 56.17775) (xy 68.71225 56.019) - (xy 68.248 56.015928) (xy 68.123518 56.028188) (xy 68.00382 56.064498) (xy 67.893506 56.123463) (xy 67.796815 56.202815) - (xy 67.717463 56.299506) (xy 67.658498 56.40982) (xy 67.622188 56.529518) (xy 67.609928 56.654) (xy 65.36738 56.654) - (xy 65.380577 56.610499) (xy 65.402491 56.388) (xy 65.380577 56.165501) (xy 65.315676 55.951553) (xy 65.210284 55.754378) - (xy 65.103988 55.624857) (xy 64.803 55.323869) (xy 64.803 55.091915) (xy 64.813506 55.100537) (xy 64.92382 55.159502) - (xy 65.043518 55.195812) (xy 65.168 55.208072) (xy 66.168 55.208072) (xy 66.292482 55.195812) (xy 66.41218 55.159502) - (xy 66.522494 55.100537) (xy 66.619185 55.021185) (xy 66.668 54.961704) (xy 66.716815 55.021185) (xy 66.813506 55.100537) - (xy 66.92382 55.159502) (xy 67.043518 55.195812) (xy 67.168 55.208072) (xy 68.168 55.208072) (xy 68.292482 55.195812) - (xy 68.41218 55.159502) (xy 68.522494 55.100537) (xy 68.619185 55.021185) (xy 68.668 54.961704) (xy 68.716815 55.021185) - (xy 68.813506 55.100537) (xy 68.92382 55.159502) (xy 69.043518 55.195812) (xy 69.168 55.208072) (xy 70.168 55.208072) - (xy 70.292482 55.195812) (xy 70.41218 55.159502) (xy 70.522494 55.100537) (xy 70.619185 55.021185) (xy 70.668 54.961704) - (xy 70.716815 55.021185) (xy 70.813506 55.100537) (xy 70.92382 55.159502) (xy 71.043518 55.195812) (xy 71.168 55.208072) - (xy 72.168 55.208072) (xy 72.292482 55.195812) (xy 72.41218 55.159502) (xy 72.522494 55.100537) (xy 72.619185 55.021185) - (xy 72.668 54.961704) (xy 72.716815 55.021185) (xy 72.813506 55.100537) (xy 72.92382 55.159502) (xy 73.043518 55.195812) - (xy 73.168 55.208072) (xy 74.168 55.208072) (xy 74.209182 55.204016) (xy 69.467199 59.946) (xy 50.233711 59.946) - (xy 50.189774 59.902063) (xy 50.020256 59.788795) (xy 49.831898 59.710774) (xy 49.631939 59.671) (xy 49.428061 59.671) - (xy 49.228102 59.710774) (xy 49.039744 59.788795) (xy 48.870226 59.902063) (xy 48.726063 60.046226) (xy 48.612795 60.215744) - (xy 48.576848 60.302528) (xy 44.325001 56.050682) (xy 44.325001 54.268239) (xy 44.332912 54.18792) (xy 44.325001 54.107598) - (xy 44.301344 53.867404) (xy 44.207853 53.559205) (xy 44.056032 53.275168) (xy 43.851715 53.026206) (xy 43.789314 52.974995) - (xy 43.055006 52.240687) (xy 43.003795 52.178286) (xy 42.754833 51.973969) (xy 42.470796 51.822148) (xy 42.162597 51.728657) - (xy 41.922403 51.705) (xy 41.9224 51.705) (xy 41.842081 51.697089) (xy 41.761762 51.705) (xy 41.317239 51.705) - (xy 39.895001 50.282763) (xy 39.895001 49.7475) (xy 40.35425 49.745) (xy 40.513 49.58625) (xy 40.513 48.387) - (xy 40.767 48.387) (xy 40.767 49.58625) (xy 40.92575 49.745) (xy 41.49 49.748072) (xy 41.614482 49.735812) - (xy 41.73418 49.699502) (xy 41.844494 49.640537) (xy 41.941185 49.561185) (xy 42.020537 49.464494) (xy 42.079502 49.35418) - (xy 42.115812 49.234482) (xy 42.128072 49.11) (xy 42.125 48.54575) (xy 41.96625 48.387) (xy 40.767 48.387) - (xy 40.513 48.387) (xy 40.493 48.387) (xy 40.493 48.133) (xy 40.513 48.133) (xy 40.513 48.113) - (xy 40.767 48.113) (xy 40.767 48.133) (xy 41.96625 48.133) (xy 42.125 47.97425) (xy 42.126422 47.71301) - (xy 44.000289 47.71301) (xy 44.044226 47.756947) (xy 44.213744 47.870215) (xy 44.402102 47.948236) (xy 44.602061 47.98801) - (xy 44.805939 47.98801) (xy 45.005898 47.948236) (xy 45.194256 47.870215) (xy 45.363774 47.756947) (xy 45.407711 47.71301) - (xy 56.940181 47.71301) (xy 57.04074 47.780201) (xy 57.081605 47.797128) (xy 56.674599 47.797128) (xy 56.501345 47.814192) - (xy 56.334749 47.864728) (xy 56.181213 47.946795) (xy 56.046638 48.057238) (xy 55.936195 48.191813) (xy 55.864999 48.32501) - (xy 50.888679 48.32501) (xy 50.851356 48.321334) (xy 50.814034 48.32501) (xy 50.814024 48.32501) (xy 50.702371 48.336007) - (xy 50.638549 48.355367) (xy 50.444061 48.355367) (xy 50.244102 48.395141) (xy 50.055744 48.473162) (xy 49.886226 48.58643) - (xy 49.742063 48.730593) (xy 49.628795 48.900111) (xy 49.550774 49.088469) (xy 49.511 49.288428) (xy 49.511 49.492306) - (xy 49.514221 49.5085) (xy 46.265302 49.5085) (xy 46.247 49.490198) (xy 46.247 49.428061) (xy 46.207226 49.228102) - (xy 46.129205 49.039744) (xy 46.015937 48.870226) (xy 45.871774 48.726063) (xy 45.702256 48.612795) (xy 45.513898 48.534774) - (xy 45.313939 48.495) (xy 45.110061 48.495) (xy 44.910102 48.534774) (xy 44.721744 48.612795) (xy 44.552226 48.726063) - (xy 44.408063 48.870226) (xy 44.294795 49.039744) (xy 44.216774 49.228102) (xy 44.177 49.428061) (xy 44.177 49.631939) - (xy 44.216774 49.831898) (xy 44.294795 50.020256) (xy 44.408063 50.189774) (xy 44.552226 50.333937) (xy 44.721744 50.447205) - (xy 44.910102 50.525226) (xy 45.110061 50.565) (xy 45.172198 50.565) (xy 45.386701 50.779502) (xy 45.410499 50.808501) - (xy 45.526224 50.903474) (xy 45.658253 50.974046) (xy 45.801514 51.017503) (xy 45.913167 51.0285) (xy 45.913175 51.0285) - (xy 45.9505 51.032176) (xy 45.987825 51.0285) (xy 52.76457 51.0285) (xy 52.871638 51.158962) (xy 52.898491 51.181) - (xy 52.871638 51.203038) (xy 52.76457 51.3335) (xy 48.781822 51.3335) (xy 48.744499 51.329824) (xy 48.707176 51.3335) - (xy 48.707167 51.3335) (xy 48.595514 51.344497) (xy 48.452253 51.387954) (xy 48.320224 51.458526) (xy 48.204499 51.553499) - (xy 48.180701 51.582497) (xy 47.458199 52.305) (xy 47.396061 52.305) (xy 47.196102 52.344774) (xy 47.007744 52.422795) - (xy 46.838226 52.536063) (xy 46.694063 52.680226) (xy 46.580795 52.849744) (xy 46.502774 53.038102) (xy 46.463 53.238061) - (xy 46.463 53.441939) (xy 46.502774 53.641898) (xy 46.580795 53.830256) (xy 46.694063 53.999774) (xy 46.838226 54.143937) - (xy 47.007744 54.257205) (xy 47.196102 54.335226) (xy 47.396061 54.375) (xy 47.599939 54.375) (xy 47.799898 54.335226) - (xy 47.988256 54.257205) (xy 48.157774 54.143937) (xy 48.301937 53.999774) (xy 48.415205 53.830256) (xy 48.493226 53.641898) - (xy 48.533 53.441939) (xy 48.533 53.379801) (xy 49.059302 52.8535) (xy 52.76457 52.8535) (xy 52.871638 52.983962) - (xy 53.006213 53.094405) (xy 53.159749 53.176472) (xy 53.326345 53.227008) (xy 53.499599 53.244072) (xy 54.399601 53.244072) - (xy 54.572855 53.227008) (xy 54.739451 53.176472) (xy 54.892987 53.094405) (xy 55.027562 52.983962) (xy 55.138005 52.849387) - (xy 55.220072 52.695851) (xy 55.270608 52.529255) (xy 55.287672 52.356001) (xy 55.287672 51.830999) (xy 55.270608 51.657745) - (xy 55.220072 51.491149) (xy 55.138005 51.337613) (xy 55.027562 51.203038) (xy 55.000709 51.181) (xy 55.027562 51.158962) - (xy 55.138005 51.024387) (xy 55.220072 50.870851) (xy 55.270608 50.704255) (xy 55.287672 50.531001) (xy 55.287672 50.005999) - (xy 55.271816 49.84501) (xy 56.054982 49.84501) (xy 56.073491 49.8602) (xy 56.046638 49.882238) (xy 55.936195 50.016813) - (xy 55.854128 50.170349) (xy 55.803592 50.336945) (xy 55.786528 50.510199) (xy 55.786528 51.035201) (xy 55.803592 51.208455) - (xy 55.854128 51.375051) (xy 55.936195 51.528587) (xy 56.046638 51.663162) (xy 56.181213 51.773605) (xy 56.334749 51.855672) - (xy 56.364601 51.864727) (xy 56.3646 53.558598) (xy 53.844998 56.078201) (xy 53.816 56.101999) (xy 53.721026 56.217724) - (xy 53.650454 56.349753) (xy 53.606997 56.493014) (xy 53.596 56.604667) (xy 53.596 56.604678) (xy 53.592324 56.642) - (xy 53.593443 56.653357) (xy 53.546102 56.662774) (xy 53.357744 56.740795) (xy 53.188226 56.854063) (xy 53.044063 56.998226) - (xy 52.930795 57.167744) (xy 52.852774 57.356102) (xy 52.813 57.556061) (xy 52.813 57.759939) (xy 52.852774 57.959898) - (xy 52.930795 58.148256) (xy 53.044063 58.317774) (xy 53.188226 58.461937) (xy 53.357744 58.575205) (xy 53.546102 58.653226) - (xy 53.746061 58.693) (xy 53.949939 58.693) (xy 54.149898 58.653226) (xy 54.338256 58.575205) (xy 54.507774 58.461937) - (xy 54.651937 58.317774) (xy 54.761366 58.154) (xy 67.609928 58.154) (xy 67.622188 58.278482) (xy 67.658498 58.39818) - (xy 67.717463 58.508494) (xy 67.796815 58.605185) (xy 67.893506 58.684537) (xy 68.00382 58.743502) (xy 68.123518 58.779812) - (xy 68.248 58.792072) (xy 68.71225 58.789) (xy 68.871 58.63025) (xy 68.871 57.531) (xy 69.125 57.531) - (xy 69.125 58.63025) (xy 69.28375 58.789) (xy 69.748 58.792072) (xy 69.872482 58.779812) (xy 69.99218 58.743502) - (xy 70.102494 58.684537) (xy 70.199185 58.605185) (xy 70.278537 58.508494) (xy 70.337502 58.39818) (xy 70.373812 58.278482) - (xy 70.386072 58.154) (xy 70.383 57.68975) (xy 70.22425 57.531) (xy 69.125 57.531) (xy 68.871 57.531) - (xy 67.77175 57.531) (xy 67.613 57.68975) (xy 67.609928 58.154) (xy 54.761366 58.154) (xy 54.765205 58.148256) - (xy 54.843226 57.959898) (xy 54.883 57.759939) (xy 54.883 57.700671) (xy 54.896001 57.690001) (xy 54.990974 57.574276) - (xy 55.061546 57.442247) (xy 55.105003 57.298986) (xy 55.116 57.187333) (xy 55.116 57.187324) (xy 55.119676 57.150001) - (xy 55.116 57.112678) (xy 55.116 56.956801) (xy 57.635604 54.437198) (xy 57.664601 54.413401) (xy 57.759574 54.297676) - (xy 57.830146 54.165647) (xy 57.873603 54.022386) (xy 57.8846 53.910733) (xy 57.8846 53.910725) (xy 57.888276 53.8734) - (xy 57.8846 53.836075) (xy 57.8846 51.864727) (xy 57.914451 51.855672) (xy 58.067987 51.773605) (xy 58.202562 51.663162) - (xy 58.313005 51.528587) (xy 58.395072 51.375051) (xy 58.445608 51.208455) (xy 58.462672 51.035201) (xy 58.462672 50.510199) - (xy 58.445608 50.336945) (xy 58.395072 50.170349) (xy 58.313005 50.016813) (xy 58.202562 49.882238) (xy 58.175709 49.8602) - (xy 58.202562 49.838162) (xy 58.313005 49.703587) (xy 58.395072 49.550051) (xy 58.445608 49.383455) (xy 58.462672 49.210201) - (xy 58.462672 48.685199) (xy 58.445608 48.511945) (xy 58.395072 48.345349) (xy 58.313005 48.191813) (xy 58.202562 48.057238) - (xy 58.067987 47.946795) (xy 57.914451 47.864728) (xy 57.858305 47.847696) (xy 58.021252 47.780201) (xy 58.19077 47.666933) - (xy 58.334933 47.52277) (xy 58.448201 47.353252) (xy 58.526222 47.164894) (xy 58.560378 46.993176) + (xy 79 75) + (xy 51 75) + (xy 51 59) + (xy 43 51) + (xy 43 27) + (xy 79 27) ) ) - (filled_polygon + ) + (zone (net 1) (net_name "GND") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000060b17e5e) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon (pts - (xy 62.533 37.83425) (xy 62.69175 37.993) (xy 63.541 37.993) (xy 63.541 37.973) (xy 63.795 37.973) - (xy 63.795 37.993) (xy 63.815 37.993) (xy 63.815 38.247) (xy 63.795 38.247) (xy 63.795 39.84625) - (xy 63.95375 40.005) (xy 64.168 40.008072) (xy 64.292482 39.995812) (xy 64.41218 39.959502) (xy 64.522494 39.900537) - (xy 64.619185 39.821185) (xy 64.668 39.761704) (xy 64.716815 39.821185) (xy 64.813506 39.900537) (xy 64.908 39.951046) - (xy 64.908001 45.564668) (xy 64.904324 45.602) (xy 64.908001 45.639333) (xy 64.918998 45.750986) (xy 64.921201 45.758247) - (xy 64.962454 45.894246) (xy 65.033026 46.026276) (xy 65.104201 46.113002) (xy 65.128 46.142001) (xy 65.156998 46.165799) - (xy 66.296 47.304803) (xy 66.296001 47.508849) (xy 66.246102 47.518774) (xy 66.057744 47.596795) (xy 65.888226 47.710063) - (xy 65.744063 47.854226) (xy 65.630795 48.023744) (xy 65.552774 48.212102) (xy 65.513 48.412061) (xy 65.513 48.615939) - (xy 65.552774 48.815898) (xy 65.630795 49.004256) (xy 65.744063 49.173774) (xy 65.888226 49.317937) (xy 65.917247 49.337328) - (xy 65.836236 49.303772) (xy 65.636277 49.263998) (xy 65.432399 49.263998) (xy 65.23244 49.303772) (xy 65.044082 49.381793) - (xy 64.874564 49.495061) (xy 64.730401 49.639224) (xy 64.617133 49.808742) (xy 64.539112 49.9971) (xy 64.499338 50.197059) - (xy 64.499338 50.400937) (xy 64.539112 50.600896) (xy 64.617133 50.789254) (xy 64.730401 50.958772) (xy 64.874564 51.102935) - (xy 64.908001 51.125277) (xy 64.908001 51.488954) (xy 64.813506 51.539463) (xy 64.716815 51.618815) (xy 64.668 51.678296) - (xy 64.619185 51.618815) (xy 64.522494 51.539463) (xy 64.41218 51.480498) (xy 64.292482 51.444188) (xy 64.168 51.431928) - (xy 63.667286 51.431928) (xy 63.693812 51.344482) (xy 63.706072 51.22) (xy 63.706072 50.22) (xy 63.693812 50.095518) - (xy 63.657502 49.97582) (xy 63.598537 49.865506) (xy 63.519185 49.768815) (xy 63.459704 49.72) (xy 63.519185 49.671185) - (xy 63.598537 49.574494) (xy 63.657502 49.46418) (xy 63.693812 49.344482) (xy 63.706072 49.22) (xy 63.706072 48.22) - (xy 63.693812 48.095518) (xy 63.657502 47.97582) (xy 63.598537 47.865506) (xy 63.519185 47.768815) (xy 63.459704 47.72) - (xy 63.519185 47.671185) (xy 63.598537 47.574494) (xy 63.657502 47.46418) (xy 63.693812 47.344482) (xy 63.706072 47.22) - (xy 63.706072 46.22) (xy 63.693812 46.095518) (xy 63.657502 45.97582) (xy 63.598537 45.865506) (xy 63.519185 45.768815) - (xy 63.459704 45.72) (xy 63.519185 45.671185) (xy 63.598537 45.574494) (xy 63.657502 45.46418) (xy 63.693812 45.344482) - (xy 63.706072 45.22) (xy 63.706072 44.22) (xy 63.693812 44.095518) (xy 63.657502 43.97582) (xy 63.598537 43.865506) - (xy 63.519185 43.768815) (xy 63.459704 43.72) (xy 63.519185 43.671185) (xy 63.598537 43.574494) (xy 63.657502 43.46418) - (xy 63.693812 43.344482) (xy 63.706072 43.22) (xy 63.706072 42.22) (xy 63.693812 42.095518) (xy 63.657502 41.97582) - (xy 63.598537 41.865506) (xy 63.519185 41.768815) (xy 63.459704 41.72) (xy 63.519185 41.671185) (xy 63.598537 41.574494) - (xy 63.657502 41.46418) (xy 63.693812 41.344482) (xy 63.706072 41.22) (xy 63.706072 40.22) (xy 63.693812 40.095518) - (xy 63.657502 39.97582) (xy 63.598537 39.865506) (xy 63.541 39.795397) (xy 63.541 38.247) (xy 62.69175 38.247) - (xy 62.533 38.40575) (xy 62.529928 39.37) (xy 62.542188 39.494482) (xy 62.568714 39.581928) (xy 61.268 39.581928) - (xy 61.143518 39.594188) (xy 61.02382 39.630498) (xy 60.913506 39.689463) (xy 60.816815 39.768815) (xy 60.737463 39.865506) - (xy 60.678498 39.97582) (xy 60.642188 40.095518) (xy 60.629928 40.22) (xy 60.629928 41.22) (xy 60.642188 41.344482) - (xy 60.678498 41.46418) (xy 60.737463 41.574494) (xy 60.816815 41.671185) (xy 60.876296 41.72) (xy 60.816815 41.768815) - (xy 60.737463 41.865506) (xy 60.678498 41.97582) (xy 60.642188 42.095518) (xy 60.629928 42.22) (xy 60.629928 43.22) - (xy 60.642188 43.344482) (xy 60.678498 43.46418) (xy 60.737463 43.574494) (xy 60.816815 43.671185) (xy 60.876296 43.72) - (xy 60.816815 43.768815) (xy 60.737463 43.865506) (xy 60.678498 43.97582) (xy 60.642188 44.095518) (xy 60.629928 44.22) - (xy 60.629928 44.442127) (xy 60.507803 44.320002) (xy 60.484001 44.290999) (xy 60.368276 44.196026) (xy 60.236247 44.125454) - (xy 60.092986 44.081997) (xy 59.981333 44.071) (xy 59.981322 44.071) (xy 59.958073 44.06871) (xy 59.963 44.043939) - (xy 59.963 43.840061) (xy 59.923226 43.640102) (xy 59.845205 43.451744) (xy 59.731937 43.282226) (xy 59.587774 43.138063) - (xy 59.418256 43.024795) (xy 59.229898 42.946774) (xy 59.029939 42.907) (xy 58.826061 42.907) (xy 58.626102 42.946774) - (xy 58.437744 43.024795) (xy 58.268226 43.138063) (xy 58.207344 43.198945) (xy 54.058417 43.198945) (xy 54.01448 43.155008) - (xy 53.844962 43.04174) (xy 53.656604 42.963719) (xy 53.456645 42.923945) (xy 53.252767 42.923945) (xy 53.052808 42.963719) - (xy 52.86445 43.04174) (xy 52.694932 43.155008) (xy 52.550769 43.299171) (xy 52.437501 43.468689) (xy 52.35948 43.657047) - (xy 52.319706 43.857006) (xy 52.319706 44.060884) (xy 52.321718 44.071) (xy 50.491632 44.071) (xy 50.525226 43.989898) - (xy 50.565 43.789939) (xy 50.565 43.586061) (xy 50.525226 43.386102) (xy 50.447205 43.197744) (xy 50.333937 43.028226) - (xy 50.29 42.984289) (xy 50.29 37.787703) (xy 50.333937 37.743766) (xy 50.447205 37.574248) (xy 50.525226 37.38589) - (xy 50.541316 37.304999) (xy 62.531314 37.304999) - ) - ) - (filled_polygon - (pts - (xy 76.716815 39.821185) (xy 76.813506 39.900537) (xy 76.92382 39.959502) (xy 77.043518 39.995812) (xy 77.168 40.008072) - (xy 78.168 40.008072) (xy 78.292482 39.995812) (xy 78.315001 39.988981) (xy 78.315 51.358224) (xy 78.302974 51.335724) - (xy 78.231799 51.248997) (xy 78.208001 51.219999) (xy 78.179003 51.196201) (xy 77.235 50.252199) (xy 77.235 50.190061) - (xy 77.195226 49.990102) (xy 77.117205 49.801744) (xy 77.003937 49.632226) (xy 76.859774 49.488063) (xy 76.690256 49.374795) - (xy 76.501898 49.296774) (xy 76.301939 49.257) (xy 76.098061 49.257) (xy 75.898102 49.296774) (xy 75.709744 49.374795) - (xy 75.540226 49.488063) (xy 75.396063 49.632226) (xy 75.282795 49.801744) (xy 75.204774 49.990102) (xy 75.165 50.190061) - (xy 75.165 50.393939) (xy 75.204774 50.593898) (xy 75.282795 50.782256) (xy 75.396063 50.951774) (xy 75.540226 51.095937) - (xy 75.709744 51.209205) (xy 75.898102 51.287226) (xy 76.098061 51.327) (xy 76.160199 51.327) (xy 76.275737 51.442539) - (xy 76.168 51.431928) (xy 75.168 51.431928) (xy 75.043518 51.444188) (xy 74.92382 51.480498) (xy 74.813506 51.539463) - (xy 74.716815 51.618815) (xy 74.668 51.678296) (xy 74.619185 51.618815) (xy 74.522494 51.539463) (xy 74.428 51.488954) - (xy 74.428 51.353325) (xy 74.431676 51.316) (xy 74.428 51.278675) (xy 74.428 51.278667) (xy 74.417003 51.167014) - (xy 74.373546 51.023753) (xy 74.302974 50.891724) (xy 74.208001 50.775999) (xy 74.179004 50.752202) (xy 73.207804 49.781002) - (xy 73.184001 49.751999) (xy 73.068276 49.657026) (xy 72.936247 49.586454) (xy 72.792986 49.542997) (xy 72.681333 49.532) - (xy 72.681322 49.532) (xy 72.644 49.528324) (xy 72.606678 49.532) (xy 72.331711 49.532) (xy 72.287774 49.488063) - (xy 72.118256 49.374795) (xy 71.929898 49.296774) (xy 71.729939 49.257) (xy 71.526061 49.257) (xy 71.326102 49.296774) - (xy 71.137744 49.374795) (xy 70.968226 49.488063) (xy 70.824063 49.632226) (xy 70.710795 49.801744) (xy 70.632774 49.990102) - (xy 70.593 50.190061) (xy 70.593 50.393939) (xy 70.632774 50.593898) (xy 70.710795 50.782256) (xy 70.824063 50.951774) - (xy 70.968226 51.095937) (xy 71.137744 51.209205) (xy 71.326102 51.287226) (xy 71.526061 51.327) (xy 71.729939 51.327) - (xy 71.929898 51.287226) (xy 72.118256 51.209205) (xy 72.287774 51.095937) (xy 72.330455 51.053256) (xy 72.815562 51.538364) - (xy 72.813506 51.539463) (xy 72.716815 51.618815) (xy 72.668 51.678296) (xy 72.619185 51.618815) (xy 72.522494 51.539463) - (xy 72.41218 51.480498) (xy 72.292482 51.444188) (xy 72.168 51.431928) (xy 71.168 51.431928) (xy 71.043518 51.444188) - (xy 70.92382 51.480498) (xy 70.813506 51.539463) (xy 70.716815 51.618815) (xy 70.668 51.678296) (xy 70.619185 51.618815) - (xy 70.522494 51.539463) (xy 70.41218 51.480498) (xy 70.335923 51.457366) (xy 70.302974 51.395724) (xy 70.208001 51.279999) - (xy 70.179003 51.256201) (xy 68.703804 49.781003) (xy 68.680001 49.751999) (xy 68.564276 49.657026) (xy 68.432247 49.586454) - (xy 68.288986 49.542997) (xy 68.177333 49.532) (xy 68.177322 49.532) (xy 68.14 49.528324) (xy 68.102678 49.532) - (xy 67.505711 49.532) (xy 67.461774 49.488063) (xy 67.292256 49.374795) (xy 67.187574 49.331434) (xy 67.207774 49.317937) - (xy 67.351937 49.173774) (xy 67.465205 49.004256) (xy 67.543226 48.815898) (xy 67.583 48.615939) (xy 67.583 48.556671) - (xy 67.596001 48.546001) (xy 67.690974 48.430276) (xy 67.761546 48.298247) (xy 67.805003 48.154986) (xy 67.816 48.043333) - (xy 67.816 48.043324) (xy 67.819676 48.006001) (xy 67.816 47.968678) (xy 67.816 47.75) (xy 68.384289 47.75) - (xy 68.428226 47.793937) (xy 68.597744 47.907205) (xy 68.786102 47.985226) (xy 68.986061 48.025) (xy 69.189939 48.025) - (xy 69.389898 47.985226) (xy 69.578256 47.907205) (xy 69.747774 47.793937) (xy 69.891937 47.649774) (xy 70.005205 47.480256) - (xy 70.083226 47.291898) (xy 70.123 47.091939) (xy 70.123 46.888061) (xy 70.083226 46.688102) (xy 70.005205 46.499744) - (xy 69.891937 46.330226) (xy 69.747774 46.186063) (xy 69.578256 46.072795) (xy 69.389898 45.994774) (xy 69.189939 45.955) - (xy 69.043931 45.955) (xy 69.108327 45.935466) (xy 69.240356 45.864894) (xy 69.356081 45.769921) (xy 69.379883 45.740918) - (xy 70.179003 44.941799) (xy 70.208001 44.918001) (xy 70.302974 44.802276) (xy 70.373546 44.670247) (xy 70.417003 44.526986) - (xy 70.428 44.415333) (xy 70.428 44.415323) (xy 70.431676 44.378) (xy 70.428 44.340677) (xy 70.428 41.161711) - (xy 70.471937 41.117774) (xy 70.585205 40.948256) (xy 70.663226 40.759898) (xy 70.703 40.559939) (xy 70.703 40.356061) - (xy 70.663226 40.156102) (xy 70.585205 39.967744) (xy 70.533993 39.8911) (xy 70.619185 39.821185) (xy 70.668 39.761704) - (xy 70.716815 39.821185) (xy 70.813506 39.900537) (xy 70.92382 39.959502) (xy 71.043518 39.995812) (xy 71.168 40.008072) - (xy 72.168 40.008072) (xy 72.292482 39.995812) (xy 72.41218 39.959502) (xy 72.522494 39.900537) (xy 72.619185 39.821185) - (xy 72.668 39.761704) (xy 72.716815 39.821185) (xy 72.813506 39.900537) (xy 72.92382 39.959502) (xy 73.043518 39.995812) - (xy 73.168 40.008072) (xy 74.168 40.008072) (xy 74.292482 39.995812) (xy 74.41218 39.959502) (xy 74.522494 39.900537) - (xy 74.619185 39.821185) (xy 74.668 39.761704) (xy 74.716815 39.821185) (xy 74.813506 39.900537) (xy 74.92382 39.959502) - (xy 75.043518 39.995812) (xy 75.168 40.008072) (xy 76.168 40.008072) (xy 76.292482 39.995812) (xy 76.41218 39.959502) - (xy 76.522494 39.900537) (xy 76.619185 39.821185) (xy 76.668 39.761704) - ) - ) - (filled_polygon - (pts - (xy 42.438774 35.861898) (xy 42.516795 36.050256) (xy 42.630063 36.219774) (xy 42.774226 36.363937) (xy 42.943744 36.477205) - (xy 43.132102 36.555226) (xy 43.332061 36.595) (xy 43.535939 36.595) (xy 43.735898 36.555226) (xy 43.924256 36.477205) - (xy 44.093774 36.363937) (xy 44.237937 36.219774) (xy 44.340692 36.06599) (xy 48.44789 36.06599) (xy 47.748998 36.764883) - (xy 47.72 36.788681) (xy 47.696202 36.817679) (xy 47.696201 36.81768) (xy 47.625026 36.904406) (xy 47.554454 37.036436) - (xy 47.524514 37.13514) (xy 47.510998 37.179696) (xy 47.501425 37.276887) (xy 47.496324 37.328682) (xy 47.500001 37.366014) - (xy 47.5 42.984289) (xy 47.456063 43.028226) (xy 47.342795 43.197744) (xy 47.264774 43.386102) (xy 47.225 43.586061) - (xy 47.225 43.610197) (xy 42.081209 38.466408) (xy 42.125 38.24626) (xy 42.125 37.95374) (xy 42.067932 37.666842) - (xy 41.95599 37.396589) (xy 41.793475 37.153368) (xy 41.586632 36.946525) (xy 41.554192 36.924849) (xy 41.801714 36.721714) - (xy 42.006031 36.472752) (xy 42.157852 36.188715) (xy 42.251343 35.880516) (xy 42.261773 35.774614) (xy 42.421412 35.774614) + (xy 78.74 74.93) + (xy 31.115 74.93) + (xy 31.115 27.305) + (xy 78.74 27.305) ) ) ) diff --git a/pcb/fiatlux.kicad_pro b/pcb/fiatlux.kicad_pro new file mode 100644 index 0000000..ce0692c --- /dev/null +++ b/pcb/fiatlux.kicad_pro @@ -0,0 +1,453 @@ +{ + "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": true, + "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": true, + "pads": { + "drill": 0.0, + "height": 0.225, + "width": 0.225 + }, + "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": true, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "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" + }, + "rule_severitieslegacy_courtyards_overlap": true, + "rule_severitieslegacy_no_courtyard_defined": false, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.127, + "min_copper_edge_clearance": 0.01, + "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, + "solder_paste_clearance": 0.0, + "solder_paste_margin_ratio": -0.0, + "use_height_for_length_calcs": true + }, + "track_widths": [ + 0.0, + 0.25, + 0.5, + 1.0, + 2.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": "fiatlux.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": "fiatlux.net", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "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.25, + "pin_symbol_size": 0.0, + "text_offset_ratio": 0.08 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "Pcbnew", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "814763c2-92e5-4a2c-941c-9bbd073f6e87", + "" + ], + [ + "00000000-0000-0000-0000-00006078273a", + "Power" + ], + [ + "704d02d9-6cb6-48ad-b961-61eafd0de7c6", + "Ext-IO" + ], + [ + "599586a3-9dc2-4d0b-adc6-1c8befb3d77e", + "Frontseat_stm32g031g" + ] + ], + "text_variables": {} +} diff --git a/pcb/fiatlux.kicad_sch b/pcb/fiatlux.kicad_sch new file mode 100644 index 0000000..979a504 --- /dev/null +++ b/pcb/fiatlux.kicad_sch @@ -0,0 +1,3858 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 814763c2-92e5-4a2c-941c-9bbd073f6e87) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Female" (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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Female_1_1" + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x04_Male_1_1" + (polyline + (pts + (xy 1.27 -5.08) + (xy 0.8636 -5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 2.54) + (xy 0.8636 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 2.54 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -5.08 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x06_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 0 -10.16 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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x06_Male_1_1" + (polyline + (pts + (xy 1.27 -7.62) + (xy 0.8636 -7.62) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -5.08) + (xy 0.8636 -5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 2.54) + (xy 0.8636 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 5.08) + (xy 0.8636 5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 5.08 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 2.54 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -5.08 180) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -7.62 180) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -5.08 11.43 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USB_B_Micro" (id 1) (at -5.08 8.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector USB micro" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "USB Micro Type B connector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "USB*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "USB_B_Micro_0_1" + (rectangle (start -5.08 -7.62) (end 5.08 7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (circle (center -3.81 2.159) (radius 0.635) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center -0.635 3.429) (radius 0.381) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.127 -7.62) (end 0.127 -6.858) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 2.159) + (xy 0.635 2.159) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.175 2.159) + (xy -2.54 2.159) + (xy -1.27 3.429) + (xy -0.635 3.429) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 2.159) + (xy -1.905 2.159) + (xy -1.27 0.889) + (xy 0 0.889) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 2.794) + (xy 0.635 1.524) + (xy 1.905 2.159) + (xy 0.635 2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.318 5.588) + (xy -1.778 5.588) + (xy -2.032 4.826) + (xy -4.064 4.826) + (xy -4.318 5.588) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.699 5.842) + (xy -4.699 5.588) + (xy -4.445 4.826) + (xy -4.445 4.572) + (xy -1.651 4.572) + (xy -1.651 4.826) + (xy -1.397 5.588) + (xy -1.397 5.842) + (xy -4.699 5.842) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.254 1.27) (end -0.508 0.508) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.08 -5.207) (end 4.318 -4.953) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -2.667) (end 4.318 -2.413) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -0.127) (end 4.318 0.127) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 4.953) (end 4.318 5.207) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "USB_B_Micro_1_1" + (pin power_out line (at 7.62 5.08 180) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 -2.54 180) (length 2.54) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 0 180) (length 2.54) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 2.54) + (name "ID" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -10.16 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -10.16 90) (length 2.54) + (name "Shield" (effects (font (size 1.27 1.27)))) + (number "6" (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:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at -1.27 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "LED_Small" (id 1) (at -4.445 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Light emitting diode, small symbol" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_Small_0_1" + (polyline + (pts + (xy -0.762 -1.016) + (xy -0.762 1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy -0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.016) + (xy -0.762 0) + (xy 0.762 1.016) + (xy 0.762 -1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0.762) + (xy -0.508 1.27) + (xy -0.254 1.27) + (xy -0.508 1.27) + (xy -0.508 1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.508 1.27) + (xy 0 1.778) + (xy 0.254 1.778) + (xy 0 1.778) + (xy 0 1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LED_Small_1_1" + (pin passive line (at -2.54 0 0) (length 1.778) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 0 180) (length 1.778) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Q_NPN_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Q_NPN_BEC" (id 1) (at 5.08 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 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" "transistor NPN" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "NPN transistor, base/emitter/collector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Q_NPN_BEC_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Q_NPN_BEC_1_1" + (pin input line (at -5.08 0 0) (length 5.715) + (name "B" (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 "E" (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 "C" (effects (font (size 1.27 1.27)))) + (number "3" (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 "Interface_USB:CP2102N-A01-GQFN28" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -7.62 31.75 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Interface_USB_CP2102N-A01-GQFN28" (id 1) (at 26.67 31.75 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (id 2) (at 11.43 -30.48 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "" (id 3) (at 1.27 -19.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "QFN*1EP*5x5mm*P0.5mm*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CP2102N-A01-GQFN28_0_1" + (rectangle (start -10.16 30.48) (end 10.16 -30.48) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "CP2102N-A01-GQFN28_1_1" + (pin input line (at 12.7 12.7 180) (length 2.54) + (name "~{DCD}" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin no_connect line (at -10.16 -10.16 0) (length 2.54) hide + (name "NC" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 5.08 180) (length 2.54) + (name "~{SUSPENDb}" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 2.54 180) (length 2.54) + (name "SUSPEND" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -2.54 180) (length 2.54) + (name "CHREN" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -7.62 180) (length 2.54) + (name "CHR1" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -5.08 180) (length 2.54) + (name "CHR0" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -20.32 180) (length 2.54) + (name "~{WAKEUP}/GPIO.3" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -17.78 180) (length 2.54) + (name "RS485/GPIO.2" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -15.24 180) (length 2.54) + (name "~{RXT}/GPIO.1" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -12.7 180) (length 2.54) + (name "~{TXT}/GPIO.0" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 10.16 180) (length 2.54) + (name "~{RI}/CLK" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -27.94 180) (length 2.54) + (name "GPIO.6" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -25.4 180) (length 2.54) + (name "GPIO.5" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -22.86 180) (length 2.54) + (name "GPIO.4" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 27.94 180) (length 2.54) + (name "~{CTS}" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 25.4 180) (length 2.54) + (name "~{RTS}" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 22.86 180) (length 2.54) + (name "RXD" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 20.32 180) (length 2.54) + (name "TXD" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 17.78 180) (length 2.54) + (name "~{DSR}" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 15.24 180) (length 2.54) + (name "~{DTR}" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -33.02 90) (length 2.54) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -33.02 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 15.24 0) (length 2.54) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 12.7 0) (length 2.54) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 33.02 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 33.02 270) (length 2.54) + (name "REGIN" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 17.78 0) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 22.86 0) (length 2.54) + (name "~{RSTb}" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "H" (id 0) (at 0 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 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" "mounting hole" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "MountingHole_Pad_0_1" + (circle (center 0 1.27) (radius 1.27) + (stroke (width 1.27) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "MountingHole_Pad_1_1" + (pin input line (at 0 -2.54 90) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "RF_Module:ESP-12E" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -12.7 19.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "ESP-12E" (id 1) (at 12.7 19.05 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "RF_Module:ESP-12E" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" (id 3) (at -8.89 2.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "802.11 Wi-Fi" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "802.11 b/g/n Wi-Fi Module" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "ESP?12*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "ESP-12E_0_1" + (rectangle (start -12.7 17.78) (end 12.7 -15.24) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "ESP-12E_1_1" + (pin input line (at -15.24 15.24 0) (length 2.54) + (name "~{RST}" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -2.54 0) (length 2.54) + (name "MISO" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -5.08 0) (length 2.54) + (name "GPIO9" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -7.62 0) (length 2.54) + (name "GPIO10" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -10.16 0) (length 2.54) + (name "MOSI" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -12.7 0) (length 2.54) + (name "SCLK" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -17.78 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) + (name "GPIO15" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 10.16 180) (length 2.54) + (name "GPIO2" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 15.24 180) (length 2.54) + (name "GPIO0" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 2.54) + (name "GPIO4" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 5.08 0) (length 2.54) + (name "ADC" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 2.54) + (name "GPIO5" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 2.54) + (name "GPIO3/RXD" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 12.7 180) (length 2.54) + (name "GPIO1/TXD" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 10.16 0) (length 2.54) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) + (name "GPIO16" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -5.08 180) (length 2.54) + (name "GPIO14" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 2.54) + (name "GPIO12" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) + (name "GPIO13" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 20.32 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 0 0) (length 2.54) + (name "CS0" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 1.27 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_Push_0_1" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (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 265.43 59.69) (diameter 0) (color 0 0 0 0) + (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3) + ) + (junction (at 86.36 171.45) (diameter 0) (color 0 0 0 0) + (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a) + ) + (junction (at 60.96 177.8) (diameter 0) (color 0 0 0 0) + (uuid 5edcefbe-9766-42c8-9529-28d0ec865573) + ) + (junction (at 64.77 116.84) (diameter 0) (color 0 0 0 0) + (uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329) + ) + (junction (at 33.02 59.69) (diameter 0) (color 0 0 0 0) + (uuid 6e1150e7-b2d6-42ef-b56e-483127942001) + ) + (junction (at 59.69 156.21) (diameter 0) (color 0 0 0 0) + (uuid 81a15393-727e-448b-a777-b18773023d89) + ) + (junction (at 187.96 154.94) (diameter 0) (color 0 0 0 0) + (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c) + ) + (junction (at 109.22 121.92) (diameter 0) (color 0 0 0 0) + (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313) + ) + (junction (at 247.65 25.4) (diameter 0) (color 0 0 0 0) + (uuid d1b0f13e-b806-464d-adb0-8bcd59eea1c3) + ) + (junction (at 125.73 58.42) (diameter 0) (color 0 0 0 0) + (uuid dfd1a42e-9604-4dfd-898c-b0e942a32189) + ) + (junction (at 86.36 176.53) (diameter 0) (color 0 0 0 0) + (uuid e0c7ddff-8c90-465f-be62-21fb49b059fa) + ) + (junction (at 30.48 116.84) (diameter 0) (color 0 0 0 0) + (uuid e5203297-b913-4288-a576-12a92185cb52) + ) + (junction (at 86.36 166.37) (diameter 0) (color 0 0 0 0) + (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6) + ) + + (no_connect (at 76.2 71.12) (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)) + (no_connect (at 160.02 137.16) (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)) + (no_connect (at 151.13 165.1) (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)) + (no_connect (at 125.73 119.38) (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)) + (no_connect (at 76.2 73.66) (uuid 2de1ffee-2174-41d2-8969-68b8d21e5a7d)) + (no_connect (at 76.2 63.5) (uuid 4344bc11-e822-474b-8d61-d12211e719b1)) + (no_connect (at 160.02 129.54) (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)) + (no_connect (at 127 73.66) (uuid 57276367-9ce4-4738-88d7-6e8cb94c966c)) + (no_connect (at 151.13 149.86) (uuid 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)) + (no_connect (at 160.02 124.46) (uuid 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)) + (no_connect (at 151.13 162.56) (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)) + (no_connect (at 151.13 144.78) (uuid 70fb572d-d5ec-41e7-9482-63d4578b4f47)) + (no_connect (at 151.13 147.32) (uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)) + (no_connect (at 76.2 68.58) (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)) + (no_connect (at 76.2 66.04) (uuid 9186fd02-f30d-4e17-aa38-378ab73e3908)) + (no_connect (at 151.13 170.18) (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)) + (no_connect (at 76.2 76.2) (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61)) + (no_connect (at 114.3 132.08) (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)) + (no_connect (at 160.02 114.3) (uuid aa130053-a451-4f12-97f7-3d4d891a5f83)) + (no_connect (at 160.02 132.08) (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)) + (no_connect (at 151.13 160.02) (uuid b7867831-ef82-4f33-a926-59e5c1c09b91)) + (no_connect (at 151.13 167.64) (uuid e54e5e19-1deb-49a9-8629-617db8e434c0)) + (no_connect (at 151.13 139.7) (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)) + (no_connect (at 222.25 48.26) (uuid f996a56a-0d99-4391-9078-9e8bed717960)) + + (wire (pts (xy 125.73 127) (xy 104.14 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583) + ) + (wire (pts (xy 151.13 137.16) (xy 160.02 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 009b5465-0a65-4237-93e7-eb65321eeb18) + ) + (wire (pts (xy 151.13 132.08) (xy 160.02 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c) + ) + (wire (pts (xy 33.02 59.69) (xy 33.02 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01ead015-302c-4c9a-bbd8-806c9ecba9d2) + ) + (wire (pts (xy 59.69 168.91) (xy 59.69 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0325ec43-0390-4ae2-b055-b1ec6ce17b1c) + ) + (wire (pts (xy 35.56 172.72) (xy 35.56 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47) + ) + (wire (pts (xy 262.89 59.69) (xy 265.43 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 076046ab-4b56-4060-b8d9-0d80806d0277) + ) + (wire (pts (xy 35.56 59.69) (xy 33.02 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db) + ) + (wire (pts (xy 60.96 166.37) (xy 60.96 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5) + ) + (wire (pts (xy 35.56 161.29) (xy 35.56 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459) + ) + (wire (pts (xy 106.68 58.42) (xy 125.73 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1259ee78-b9e4-4386-bc30-fc5f84b49927) + ) + (wire (pts (xy 265.43 25.4) (xy 265.43 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163c434f-ea48-45e5-88f3-28fc5ec60530) + ) + (wire (pts (xy 265.43 72.39) (xy 265.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b) + ) + (wire (pts (xy 88.9 176.53) (xy 86.36 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e) + ) + (wire (pts (xy 179.07 58.42) (xy 210.82 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e3b020d-7f1b-49ec-97c5-9d75bbd845c4) + ) + (wire (pts (xy 30.48 116.84) (xy 30.48 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f) + ) + (wire (pts (xy 43.18 86.36) (xy 50.8 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9) + ) + (wire (pts (xy 35.56 185.42) (xy 30.48 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 262f1ea9-0133-4b43-be36-456207ea857c) + ) + (wire (pts (xy 86.36 161.29) (xy 86.36 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42) + ) + (wire (pts (xy 125.73 60.96) (xy 125.73 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 322057a0-8fbe-4c07-9d82-07ee8230c7aa) + ) + (wire (pts (xy 187.96 154.94) (xy 187.96 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8) + ) + (wire (pts (xy 86.36 176.53) (xy 86.36 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 337e8520-cbd2-42c0-8d17-743bab17cbbd) + ) + (wire (pts (xy 165.1 154.94) (xy 170.18 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4) + ) + (wire (pts (xy 109.22 121.92) (xy 109.22 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37f31dec-63fc-4634-a141-5dc5d2b60fe4) + ) + (wire (pts (xy 88.9 161.29) (xy 86.36 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a) + ) + (wire (pts (xy 74.93 119.38) (xy 74.93 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e57b728-64e6-4470-8f27-a43c0dd85050) + ) + (wire (pts (xy 33.02 59.69) (xy 30.48 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40dee89d-700c-4057-87f9-0f6960635aea) + ) + (wire (pts (xy 265.43 49.53) (xy 265.43 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43707e99-bdd7-4b02-9974-540ed6c2b0aa) + ) + (wire (pts (xy 48.26 156.21) (xy 43.18 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4632212f-13ce-4392-bc68-ccb9ba333770) + ) + (wire (pts (xy 147.32 45.72) (xy 149.86 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 479ce6bb-5c99-476f-aff8-197ebc327bb2) + ) + (wire (pts (xy 30.48 114.3) (xy 30.48 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3) + ) + (wire (pts (xy 50.8 86.36) (xy 50.8 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e) + ) + (wire (pts (xy 35.56 151.13) (xy 35.56 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 576c6616-e95d-4f1e-8ead-dea30fcdc8c2) + ) + (wire (pts (xy 86.36 171.45) (xy 86.36 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 582622a2-fad4-4737-9a80-be9fffbba8ab) + ) + (wire (pts (xy 147.32 40.64) (xy 149.86 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a6716d3-794a-40c0-8caa-543adaecae20) + ) + (wire (pts (xy 247.65 25.4) (xy 245.11 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 611e836a-c837-4dbc-a8d4-f4fb061cb2d1) + ) + (wire (pts (xy 64.77 127) (xy 64.77 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f) + ) + (wire (pts (xy 64.77 114.3) (xy 64.77 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 637f12be-fa48-4ce4-96b2-04c21a8795c8) + ) + (wire (pts (xy 212.09 95.25) (xy 212.09 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66bc2bca-dab7-4947-a0ff-403cdaf9fb89) + ) + (wire (pts (xy 104.14 132.08) (xy 114.3 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e) + ) + (wire (pts (xy 30.48 104.14) (xy 30.48 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd) + ) + (wire (pts (xy 257.81 25.4) (xy 265.43 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c29531e-13f3-40d7-b9d5-799892aa8719) + ) + (wire (pts (xy 43.18 59.69) (xy 50.8 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f675e5f-8fe6-4148-baf1-da97afc770f8) + ) + (wire (pts (xy 30.48 127) (xy 30.48 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760) + ) + (wire (pts (xy 151.13 154.94) (xy 160.02 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e) + ) + (wire (pts (xy 185.42 157.48) (xy 187.96 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1) + ) + (wire (pts (xy 66.04 177.8) (xy 60.96 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 721d1be9-236e-470b-ba69-f1cc6c43faf9) + ) + (wire (pts (xy 59.69 156.21) (xy 55.88 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b044939-8c4d-444f-b9e0-a15fcdeb5a86) + ) + (wire (pts (xy 180.34 95.25) (xy 180.34 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae) + ) + (wire (pts (xy 40.64 116.84) (xy 30.48 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83021f70-e61e-4ad3-bae7-b9f02b28be4f) + ) + (wire (pts (xy 109.22 124.46) (xy 125.73 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88668202-3f0b-4d07-84d4-dcd790f57272) + ) + (wire (pts (xy 35.56 148.59) (xy 30.48 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89e83c2e-e90a-4a50-b278-880bac0cfb49) + ) + (wire (pts (xy 232.41 50.8) (xy 222.25 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e2a8b34-3258-473e-a5a4-30fd2f0e536a) + ) + (wire (pts (xy 50.8 45.72) (xy 50.8 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fc062a7-114d-48eb-a8f8-71128838f380) + ) + (wire (pts (xy 43.18 45.72) (xy 50.8 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 917920ab-0c6e-4927-974d-ef342cdd4f63) + ) + (wire (pts (xy 35.56 168.91) (xy 59.69 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 935f462d-8b1e-4005-9f1e-17f537ab1756) + ) + (wire (pts (xy 224.79 58.42) (xy 224.79 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9529c01f-e1cd-40be-b7f0-83780a544249) + ) + (wire (pts (xy 88.9 171.45) (xy 86.36 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48) + ) + (wire (pts (xy 214.63 95.25) (xy 212.09 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7) + ) + (wire (pts (xy 125.73 58.42) (xy 149.86 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dd4a136-22ab-439c-b97e-f29c8b16a6b3) + ) + (wire (pts (xy 187.96 157.48) (xy 187.96 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11) + ) + (wire (pts (xy 147.32 50.8) (xy 149.86 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2532034-8e55-4aee-a922-bda0989405de) + ) + (wire (pts (xy 59.69 116.84) (xy 64.77 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a599509f-fbb9-4db4-9adf-9e96bab1138d) + ) + (wire (pts (xy 35.56 182.88) (xy 35.56 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e521b9-814e-4853-a5ac-f158785c6269) + ) + (wire (pts (xy 147.32 48.26) (xy 149.86 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6b55906-8a3a-40ea-8de1-5b8cfc45f331) + ) + (wire (pts (xy 265.43 62.23) (xy 265.43 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec) + ) + (wire (pts (xy 35.56 166.37) (xy 60.96 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0906e10-2fbc-4309-a8b4-6fc4cd1a5490) + ) + (wire (pts (xy 25.4 116.84) (xy 30.48 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc) + ) + (wire (pts (xy 74.93 116.84) (xy 64.77 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e) + ) + (wire (pts (xy 151.13 129.54) (xy 160.02 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475) + ) + (wire (pts (xy 247.65 25.4) (xy 247.65 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc6ab9d9-ac4a-4284-9384-67c24eed327d) + ) + (wire (pts (xy 104.14 121.92) (xy 109.22 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c106154f-d948-43e5-abfa-e1b96055d91b) + ) + (wire (pts (xy 55.88 177.8) (xy 60.96 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1c799a0-3c93-493a-9ad7-8a0561bc69ee) + ) + (wire (pts (xy 109.22 121.92) (xy 109.22 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c24d6ac8-802d-4df3-a210-9cb1f693e865) + ) + (wire (pts (xy 151.13 124.46) (xy 160.02 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f) + ) + (wire (pts (xy 151.13 157.48) (xy 165.1 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a) + ) + (wire (pts (xy 43.18 177.8) (xy 48.26 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb16d05e-318b-4e51-867b-70d791d75bea) + ) + (wire (pts (xy 177.8 154.94) (xy 187.96 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbde200f-1075-469a-89f8-abbdcf30e36a) + ) + (wire (pts (xy 40.64 119.38) (xy 40.64 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc75e5ae-3348-4e7a-bd16-4df685ee47bd) + ) + (wire (pts (xy 125.73 129.54) (xy 104.14 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce) + ) + (wire (pts (xy 86.36 166.37) (xy 86.36 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56) + ) + (wire (pts (xy 265.43 59.69) (xy 265.43 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4c9471f-7503-4339-928c-d1abae1eede6) + ) + (wire (pts (xy 222.25 58.42) (xy 224.79 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d68e5ddb-039c-483f-88a3-1b0b7964b482) + ) + (wire (pts (xy 50.8 59.69) (xy 50.8 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa) + ) + (wire (pts (xy 250.19 25.4) (xy 247.65 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7329196-2ecc-4333-8895-c0728dd2e0b8) + ) + (wire (pts (xy 88.9 166.37) (xy 86.36 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da481376-0e49-44d3-91b8-aaa39b869dd1) + ) + (wire (pts (xy 214.63 143.51) (xy 212.09 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da6f4122-0ecc-496f-b0fd-e4abef534976) + ) + (wire (pts (xy 182.88 95.25) (xy 180.34 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df2a6036-7274-4398-9365-148b6ddab90d) + ) + (wire (pts (xy 35.56 86.36) (xy 31.75 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0f06b5c-de63-4833-a591-ca9e19217a35) + ) + (wire (pts (xy 265.43 46.99) (xy 262.89 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e17e6c0e-7e5b-43f0-ad48-0a2760b45b04) + ) + (wire (pts (xy 35.56 45.72) (xy 27.94 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e32ee344-1030-4498-9cac-bfbf7540faf4) + ) + (wire (pts (xy 147.32 43.18) (xy 149.86 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3976b6b-53c3-418b-a6b8-660be9bb924c) + ) + (wire (pts (xy 151.13 114.3) (xy 160.02 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7369115-d491-4ef3-be3d-f5298992c3e8) + ) + (wire (pts (xy 232.41 48.26) (xy 232.41 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e79b1eda-1f2f-41d0-86ab-7c5f4b955d2d) + ) + (wire (pts (xy 163.83 121.92) (xy 151.13 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7e08b48-3d04-49da-8349-6de530a20c67) + ) + (wire (pts (xy 127 73.66) (xy 106.68 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e87738fc-e372-4c48-9de9-398fd8b4874c) + ) + (wire (pts (xy 66.04 156.21) (xy 59.69 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec5c2062-3a41-4636-8803-069e60a1641a) + ) + (wire (pts (xy 128.27 60.96) (xy 125.73 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecd1f04c-7426-435b-b639-2eeda639636d) + ) + (wire (pts (xy 212.09 143.51) (xy 212.09 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1782535-55f4-4299-bd4f-6f51b0b7259c) + ) + (wire (pts (xy 170.18 157.48) (xy 177.8 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3) + ) + (wire (pts (xy 64.77 104.14) (xy 64.77 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7447e92-4293-41c4-be3f-69b30aad1f17) + ) + (wire (pts (xy 64.77 116.84) (xy 64.77 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f) + ) + (wire (pts (xy 177.8 121.92) (xy 171.45 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde) + ) + + (text "do not use" (at 115.57 73.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5) + ) + (text "used in flash qio" (at 74.93 77.47 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db) + ) + + (label "TXLED" (at 152.4 154.94 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1b023dd4-5185-4576-b544-68a05b9c360b) + ) + (label "RXLED" (at 152.4 157.48 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a64aeb89-c24a-493b-9aab-87a6be930bde) + ) + + (global_label "VOUT" (shape input) (at 262.89 46.99 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 04cf2f2c-74bf-400d-b4f6-201720df00ed) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 10.16 13.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 222.25 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 436.88 -60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "FLSH" (shape input) (at 27.94 16.51 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape input) (at 182.88 87.63 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 123968c6-74e7-4754-8c36-08ea08e42555) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "FLSH" (shape input) (at 106.68 48.26 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 27.94 24.13 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "ADC" (shape input) (at 27.94 31.75 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1e48966e-d29d-4521-8939-ec8ac570431d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 214.63 92.71 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2878a73c-5447-4cd9-8194-14f52ab9459c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 210.82 55.88 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2acd6709-8beb-408f-97bd-5d3e7c306c46) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 201.2387 55.8006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "FLSH" (shape input) (at 30.48 185.42 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SWIM" (shape output) (at 210.82 45.72 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2d6a70cf-70ed-42b3-9c61-24d130c45ffe) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 203.7787 45.6406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "EN" (shape input) (at 27.94 45.72 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 210.82 53.34 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 3d3430d4-366f-41e7-bf22-65d5a1cbd72a) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 205.5929 53.2606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "nRST" (shape input) (at 30.48 148.59 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 147.32 43.18 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 40e0098c-c7e2-46d8-ad75-4a0266928eef) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 254 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 106.68 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 411d4270-c66c-4318-b7fb-1470d34862b8) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "ADC" (shape input) (at 76.2 58.42 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4d586a18-26c5-441e-a9ff-8125ee516126) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 214.63 140.97 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5a222fb6-5159-4931-9015-19df65643140) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MISO" (shape output) (at 147.32 40.64 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5aca70b3-2422-4ace-9e0b-436744983348) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 140.3996 40.5606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "RXD0" (shape input) (at 182.88 92.71 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5f312b85-6822-40a3-b417-2df49696ca2d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 214.63 138.43 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 691af561-538d-4e8f-a916-26cad45eb7d6) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MISO" (shape input) (at 106.68 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6dafca69-d338-4f35-88f2-11b6ec98bc63) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 113.6004 63.5794 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "RTS" (shape input) (at 66.04 177.8 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6e68f0cd-800e-4167-9553-71fc59da1eeb) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "TXD0" (shape input) (at 106.68 50.8 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "DTR" (shape input) (at 151.13 127 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 71f92193-19b0-44ed-bc7f-77535083d769) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "FLSH" (shape input) (at 59.69 116.84 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 75b944f9-bf25-4dc7-8104-e9f80b4f359b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RTS" (shape input) (at 151.13 116.84 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 76.2 48.26 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 79e31048-072a-4a40-a625-26bb0b5f046b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape input) (at 214.63 135.89 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "TXD0" (shape input) (at 182.88 90.17 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 946404ba-9297-43ec-9d67-30184041145f) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 245.11 25.4 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 968cc6de-29b5-412d-af3c-c8d2a7afc538) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 235.5287 25.3206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "VOUT" (shape bidirectional) (at 222.25 45.72 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 229.2913 45.6406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "MOSI" (shape output) (at 106.68 66.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 113.6004 65.9606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "RXD0" (shape input) (at 177.8 121.92 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9bac9ad3-a7b9-47f0-87c7-d8630653df68) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 147.32 45.72 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid a4237a12-a993-4fb8-9cd9-9f79deb2b589) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 254 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "DTR" (shape input) (at 66.04 156.21 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 25.4 116.84 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid a6ccc556-da88-4006-ae1a-cc35733efef3) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{INT}" (shape input) (at 106.68 53.34 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid abcf5258-2c15-43c9-a0cc-ec38941421db) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 111.9071 53.2606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "TXD0" (shape input) (at 214.63 90.17 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid ae0e6b31-27d7-4383-a4fc-7557b0a19382) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "ADC" (shape input) (at 262.89 59.69 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b09666f9-12f1-4ee9-8877-2292c94258ca) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 10.16 13.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 106.68 60.96 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bb89d859-538f-48a8-8409-0863981f29fc) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 116.2613 61.0394 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "TXD0" (shape input) (at 151.13 119.38 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape input) (at 214.63 87.63 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid c8a44971-63c1-4a19-879d-b6647b2dc08d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape output) (at 106.68 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cc15f583-a41b-43af-ba94-a75455506a96) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 113.7818 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 147.32 48.26 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d098bf50-c4cd-45ad-9ed4-a7c41be3905d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 142.0929 48.1806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SCLK" (shape input) (at 222.25 53.34 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 436.88 -60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "CS0" (shape input) (at 106.68 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d72c89a6-7578-4468-964e-2a845431195f) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 147.32 50.8 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d833e6da-325d-4bcc-8d57-1ac1c058a94c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 137.7387 50.7206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 30.48 59.69 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid db1c7d4b-e2b7-411a-830e-04ebcd015186) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 25.2529 59.6106 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "MISO" (shape output) (at 210.82 50.8 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid de035fea-c875-45cd-b378-9e1c5010ab65) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 203.8996 50.7206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "CS0" (shape input) (at 210.82 48.26 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 170.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "CS0" (shape input) (at 31.75 86.36 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 15.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "EN" (shape input) (at 76.2 53.34 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f7667b23-296e-4362-a7e3-949632c8954b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Interface_USB:CP2102N-A01-GQFN28") (at 138.43 142.24 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607804b7) + (property "Reference" "U2" (id 0) (at 142.24 173.99 0)) + (property "Value" "CP2102-GMR" (id 1) (at 149.86 110.49 0)) + (property "Footprint" "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (id 2) (at 149.86 172.72 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf" (id 3) (at 139.7 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C6568" (id 4) (at 138.43 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1307a9f0-9451-448f-8e7c-68be58565a07)) + (pin "10" (uuid b2584a21-aa11-4d0b-b4f3-8584c3bc3b5f)) + (pin "11" (uuid 19095dcc-d9b4-4976-8998-eebe2bf20586)) + (pin "12" (uuid da589524-0ddc-4ebd-95bc-489fe6799163)) + (pin "13" (uuid 79716dfe-516f-45d6-a63d-82338fd4e3d1)) + (pin "14" (uuid bcee0ca4-ce1f-4f4f-a6e9-907aed2560a3)) + (pin "15" (uuid ca4b615d-7341-4ece-a171-965c379184fb)) + (pin "16" (uuid 2975945a-c321-484d-8cae-3bb87bb15ed7)) + (pin "17" (uuid 9a193ab2-64e5-47a1-9a9a-cfc43a6d21e9)) + (pin "18" (uuid 97e28761-f48b-403a-bfe9-00fd675ad395)) + (pin "19" (uuid 826c12c0-ca21-4ca1-a839-13ed896c5d81)) + (pin "2" (uuid 8c0b0dae-ae94-43ff-8528-ca34614e53b6)) + (pin "20" (uuid 0a54a81e-ad16-491c-919f-05d766725777)) + (pin "21" (uuid 4e6e2eda-a347-42a8-aa75-813436b1590a)) + (pin "22" (uuid 2eedfc94-ff38-4f32-8e11-b9da55850b1c)) + (pin "23" (uuid 64e9a16a-cacd-448e-a259-89207c8435e4)) + (pin "24" (uuid 76c92079-7964-45a1-b273-f99c9809103e)) + (pin "25" (uuid 90ae909c-4650-4462-ac73-4570d7f01e78)) + (pin "26" (uuid a9636160-9620-4b80-a410-401cc490c808)) + (pin "27" (uuid 1f968e84-16d2-4441-abe6-4ee21876713c)) + (pin "28" (uuid 86080812-9104-4239-8ac9-eebef4e4ca5f)) + (pin "29" (uuid f19924fb-4b8c-4391-bdd5-2f680c141000)) + (pin "3" (uuid b3f80e19-6b80-4cdf-a84a-3dd0214223a3)) + (pin "4" (uuid 27221c76-18fb-4284-a06e-629d61d7fc29)) + (pin "5" (uuid f921b4a8-3d66-4012-86a4-64b811ee458c)) + (pin "6" (uuid 3a650da1-78d5-497e-bb17-0ce57ad9d220)) + (pin "7" (uuid 5f36d812-56ca-423f-a8e6-ba03ff7d2f7d)) + (pin "8" (uuid 2d821658-3c26-4665-a22c-d692be4a1a47)) + (pin "9" (uuid 88edfcb3-27f6-463d-bcce-68aadf14e6c5)) + ) + + (symbol (lib_id "Device:R") (at 52.07 177.8 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006079ea60) + (property "Reference" "R7" (id 0) (at 52.07 172.5422 90)) + (property "Value" "12kOhm" (id 1) (at 52.07 174.8536 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 52.07 176.022 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 52.07 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 52.07 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a79226ed-ff5b-4b0b-8830-eab7b895b11a)) + (pin "2" (uuid 1f14fe5d-fbb3-4753-a27d-03054fcb5da4)) + ) + + (symbol (lib_id "Device:R") (at 52.07 156.21 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006079ffa8) + (property "Reference" "R6" (id 0) (at 52.07 150.9522 90)) + (property "Value" "12kOhm" (id 1) (at 52.07 153.2636 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 52.07 154.432 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 52.07 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 52.07 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 30c477ed-3930-4a54-9de8-7428a2bff7f7)) + (pin "2" (uuid 502357b3-3e6f-425e-90a7-7267ee144b6d)) + ) + + (symbol (lib_id "power:+3.3V") (at 138.43 109.22 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607abca1) + (property "Reference" "#PWR0110" (id 0) (at 138.43 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 139.7 105.41 0)) + (property "Footprint" "" (id 2) (at 138.43 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2ee2765f-948b-4c70-b617-4c8fddc1a28e)) + ) + + (symbol (lib_id "power:+3.3V") (at 135.89 109.22 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607ac230) + (property "Reference" "#PWR0111" (id 0) (at 135.89 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 133.35 105.41 0)) + (property "Footprint" "" (id 2) (at 135.89 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 135.89 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 645112f8-7c6a-413e-b56c-1a570c6751bb)) + ) + + (symbol (lib_id "power:GND") (at 138.43 175.26 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607ad365) + (property "Reference" "#PWR0112" (id 0) (at 138.43 181.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 138.557 179.6542 0)) + (property "Footprint" "" (id 2) (at 138.43 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d7e14f87-889d-4cc4-a810-86aef18e0af8)) + ) + + (symbol (lib_id "Connector:USB_B_Micro") (at 96.52 127 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607ae779) + (property "Reference" "J1" (id 0) (at 97.9678 115.1382 0)) + (property "Value" "USB_B_Micro" (id 1) (at 97.9678 117.4496 0)) + (property "Footprint" "stock:micro_usb" (id 2) (at 100.33 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 100.33 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C40943" (id 4) (at 96.52 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 23484944-d447-4ff7-9936-f1c567d98bb6)) + (pin "2" (uuid 3f118ce5-3701-4910-8bca-a5395ce2a449)) + (pin "3" (uuid ccfbabad-5a96-4fca-a0fc-b808e5f10a22)) + (pin "4" (uuid 1d2a62f2-25cd-45c9-854b-2e57df96344c)) + (pin "5" (uuid fc49b511-c388-4540-826a-ea5b6d6e23a3)) + (pin "6" (uuid cff42663-deef-4571-bca4-0e9d38b52f7e)) + ) + + (symbol (lib_id "power:GND") (at 96.52 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607ed641) + (property "Reference" "#PWR0113" (id 0) (at 96.52 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 96.647 141.5542 0)) + (property "Footprint" "" (id 2) (at 96.52 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 96.52 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9006a80b-4f84-4765-b2a3-be0036095257)) + ) + + (symbol (lib_id "power:GND") (at 93.98 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607edc45) + (property "Reference" "#PWR0114" (id 0) (at 93.98 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 94.107 141.5542 0)) + (property "Footprint" "" (id 2) (at 93.98 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 93.98 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c9e505c1-bbd2-4a86-8849-0cb3248b9811)) + ) + + (symbol (lib_id "power:GND") (at 30.48 129.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006081a73d) + (property "Reference" "#PWR0116" (id 0) (at 30.48 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 30.607 133.9342 0)) + (property "Footprint" "" (id 2) (at 30.48 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 30.48 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ca058c59-4dd4-46da-bb67-49f0719e5ad7)) + ) + + (symbol (lib_id "power:+3.3V") (at 30.48 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006081ac29) + (property "Reference" "#PWR0117" (id 0) (at 30.48 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 30.861 99.7458 0)) + (property "Footprint" "" (id 2) (at 30.48 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 30.48 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 13c9b3c2-eaa9-4b58-a4bf-5714cc684e85)) + ) + + (symbol (lib_id "Device:R") (at 30.48 110.49 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006081b1dc) + (property "Reference" "R1" (id 0) (at 32.258 109.3216 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "12kOhm" (id 1) (at 32.258 111.633 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 28.702 110.49 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 30.48 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 30.48 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5ed48804-94d6-4ff1-a170-13e61df7a0a8)) + (pin "2" (uuid 578d4695-f8d1-43b4-8324-0fc2a7c82e49)) + ) + + (symbol (lib_id "Device:C") (at 30.48 123.19 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060820053) + (property "Reference" "C4" (id 0) (at 33.401 122.0216 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 33.401 124.333 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 31.4452 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 30.48 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 30.48 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d241186e-2a0a-4308-b90c-19318561c5c1)) + (pin "2" (uuid 9a24355c-1340-4dcd-8b44-c526e8337111)) + ) + + (symbol (lib_id "Device:R") (at 39.37 86.36 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006085845d) + (property "Reference" "R5" (id 0) (at 39.37 81.1022 90)) + (property "Value" "12kOhm" (id 1) (at 39.37 83.4136 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 39.37 84.582 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 39.37 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 39.37 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6a2baeab-a3db-4ed7-8836-4e0dadc2960b)) + (pin "2" (uuid 89c162de-8374-4cb6-9c74-abac2a052a8d)) + ) + + (symbol (lib_id "Device:R") (at 39.37 59.69 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006085aaa5) + (property "Reference" "R4" (id 0) (at 39.37 54.4322 90)) + (property "Value" "12kOhm" (id 1) (at 39.37 56.7436 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 39.37 57.912 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 39.37 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 39.37 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e712e5ad-ef6c-406e-ad24-a7827c0c69d5)) + (pin "2" (uuid ab41595c-29e1-4d26-81da-5d0eac9f9fd7)) + ) + + (symbol (lib_id "Device:R") (at 64.77 110.49 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006085b97b) + (property "Reference" "R3" (id 0) (at 67.31 109.22 0)) + (property "Value" "12kOhm" (id 1) (at 69.85 111.76 0)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 62.992 110.49 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 64.77 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 64.77 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a543ff12-785b-4bf0-9ee5-c754a7653d8a)) + (pin "2" (uuid 4d44adde-5676-40f2-b9b7-f97586ceb39e)) + ) + + (symbol (lib_id "Device:R") (at 39.37 45.72 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006085beaf) + (property "Reference" "R2" (id 0) (at 39.37 40.4622 90)) + (property "Value" "12kOhm" (id 1) (at 39.37 42.7736 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 39.37 43.942 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 39.37 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 39.37 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c38b475b-2942-4f73-8d8d-050641aed435)) + (pin "2" (uuid ff06987e-21cb-419a-ab53-cb5e14b98f8c)) + ) + + (symbol (lib_id "power:+3.3V") (at 50.8 57.15 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060864f25) + (property "Reference" "#PWR0118" (id 0) (at 50.8 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 51.181 52.7558 0)) + (property "Footprint" "" (id 2) (at 50.8 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 50.8 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e5813018-bbee-4ec5-a627-14bacdb72678)) + ) + + (symbol (lib_id "power:+3.3V") (at 50.8 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060866b06) + (property "Reference" "#PWR0120" (id 0) (at 50.8 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 51.181 38.7858 0)) + (property "Footprint" "" (id 2) (at 50.8 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 50.8 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e0e2e8b9-8f81-4609-ace8-6c1a4406ee5e)) + ) + + (symbol (lib_id "power:GND") (at 50.8 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608670b9) + (property "Reference" "#PWR0121" (id 0) (at 50.8 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 50.927 93.2942 0)) + (property "Footprint" "" (id 2) (at 50.8 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 50.8 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 26ca2086-d8d7-4667-a8d4-3c89dfcbe9b8)) + ) + + (symbol (lib_id "Device:R") (at 167.64 121.92 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006088365f) + (property "Reference" "R9" (id 0) (at 167.64 116.6622 90)) + (property "Value" "470Ohm" (id 1) (at 167.64 118.9736 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 167.64 120.142 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.64 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23179" (id 4) (at 167.64 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8015abb1-2ba9-48e3-a74e-0359b2384b70)) + (pin "2" (uuid 7e4ec947-c868-4e85-a99b-d5f5af80e8f8)) + ) + + (symbol (lib_id "power:+5V") (at 109.22 119.38 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608b3c6c) + (property "Reference" "#PWR0106" (id 0) (at 109.22 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 109.601 114.9858 0)) + (property "Footprint" "" (id 2) (at 109.22 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3da15c78-9cb9-45a5-bfc7-3f6e3716092a)) + ) + + (symbol (lib_id "Connector:Conn_01x04_Male") (at 219.71 140.97 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608bfa99) + (property "Reference" "J4" (id 0) (at 220.4212 137.9728 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x04_Male" (id 1) (at 220.4212 140.2842 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" (id 2) (at 219.71 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 219.71 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 219.71 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d39c1747-819c-4bb7-98e4-f8964935c146)) + (pin "2" (uuid 31f0b8d6-3c6f-4371-8717-d3f50358f1f5)) + (pin "3" (uuid d3784b20-2814-4bb8-b23c-25b4ec1c0615)) + (pin "4" (uuid f9d52ea2-de3d-4b16-a251-d5e42189425d)) + ) + + (symbol (lib_id "power:GND") (at 212.09 146.05 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608c9312) + (property "Reference" "#PWR0122" (id 0) (at 212.09 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 212.217 150.4442 0)) + (property "Footprint" "" (id 2) (at 212.09 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 212.09 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e3d57a84-ed01-4d57-93a4-f56c1b7f393b)) + ) + + (symbol (lib_id "power:GND") (at 212.09 97.79 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608f6161) + (property "Reference" "#PWR0126" (id 0) (at 212.09 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 212.217 102.1842 0)) + (property "Footprint" "" (id 2) (at 212.09 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 212.09 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c238ec8a-4a24-4d33-b738-1e880d8de53e)) + ) + + (symbol (lib_id "RF_Module:ESP-12E") (at 91.44 63.5 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006091c48a) + (property "Reference" "U1" (id 0) (at 91.44 62.23 0)) + (property "Value" "ESP-12E" (id 1) (at 91.44 66.04 0)) + (property "Footprint" "RF_Module:ESP-12E" (id 2) (at 91.44 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" (id 3) (at 82.55 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 91.44 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 90830310-eb15-419e-8426-988f2a06ba9a)) + (pin "10" (uuid 84da255f-5044-4e70-812f-4f1b83d794ad)) + (pin "11" (uuid 6a13b8fb-9a38-43a9-8c7b-9f10d1f28379)) + (pin "12" (uuid d036e88e-6182-4feb-bd35-437843d9bbbb)) + (pin "13" (uuid 3332dc06-cb68-48b5-b329-999de6b08fa9)) + (pin "14" (uuid 976028d4-58e7-4bda-8ec5-ded88c997e78)) + (pin "15" (uuid 2879e410-aa81-45df-a58c-483e058b5ac3)) + (pin "16" (uuid b1ac755e-ed7f-4f77-83da-017ca5ed68d3)) + (pin "17" (uuid a32e347e-bdaa-4f8e-a7c3-614682acaf0a)) + (pin "18" (uuid 5cc5d7d3-f9c0-4436-a71d-e8a8c5574b3d)) + (pin "19" (uuid f4a642d8-9809-43ff-a13a-c8e4157e8eec)) + (pin "2" (uuid e545add5-af15-4678-aedb-5a69522ede6e)) + (pin "20" (uuid d67686a2-f371-4d0d-b09b-255d33ab2a4d)) + (pin "21" (uuid 9497aad1-c1fe-4710-928d-07cf784fac20)) + (pin "22" (uuid 6de08714-52ed-46e3-b443-b75d20de63c6)) + (pin "3" (uuid 4b65ddb4-fc85-4f44-a2d3-4bf7f2b27066)) + (pin "4" (uuid 7fbdbe82-74ab-4fa3-9307-1d21b8b3ce26)) + (pin "5" (uuid f07d1040-27f6-41f8-8cb0-5e32ef11b257)) + (pin "6" (uuid 307b4a3d-04e8-4382-9a06-80db5a273d78)) + (pin "7" (uuid 9b689622-2620-44de-a9b0-a38036670b68)) + (pin "8" (uuid 415d0941-c24b-4f7a-a3f5-9f4564009d94)) + (pin "9" (uuid e93c65e3-3034-47b7-b965-9eea9539df2f)) + ) + + (symbol (lib_id "power:GND") (at 224.79 60.96 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006091ec83) + (property "Reference" "#PWR0150" (id 0) (at 224.79 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 224.663 65.3542 0)) + (property "Footprint" "" (id 2) (at 224.79 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 224.79 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 844cc8dd-cc37-4ab8-8fbe-57c578cb8bff)) + ) + + (symbol (lib_id "Device:R") (at 265.43 53.34 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060920300) + (property "Reference" "R15" (id 0) (at 267.208 52.1716 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "12kOhm" (id 1) (at 267.208 54.483 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 267.208 53.34 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 265.43 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 265.43 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4b7a4a2f-bb1a-4b59-9846-536833eb5013)) + (pin "2" (uuid abd85f65-00be-4ffe-aba9-db38fa6633ad)) + ) + + (symbol (lib_id "Device:R") (at 265.43 66.04 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609222d7) + (property "Reference" "R16" (id 0) (at 267.208 64.8716 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1kOhm" (id 1) (at 267.208 67.183 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 267.208 66.04 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 265.43 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21190" (id 4) (at 265.43 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9885a113-20b1-4f36-af3f-293b912c9a68)) + (pin "2" (uuid 1af4526b-0294-4493-890b-f0bea20af795)) + ) + + (symbol (lib_id "power:GND") (at 265.43 72.39 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060951d2f) + (property "Reference" "#PWR0127" (id 0) (at 265.43 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 265.557 76.7842 0)) + (property "Footprint" "" (id 2) (at 265.43 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 265.43 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3a761c2b-07fd-433e-a62f-3878d7bc6ba9)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 33.02 24.13 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609717cf) + (property "Reference" "J6" (id 0) (at 33.7312 23.4696 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_RST" (id 1) (at 33.7312 25.781 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 33.02 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4353ef8c-eb12-4a5c-8885-201ee2e79327)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 33.02 31.75 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060971cc4) + (property "Reference" "J7" (id 0) (at 33.7312 31.0896 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_ADC" (id 1) (at 33.7312 33.401 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 33.02 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2fc07921-da6f-4f76-8ac7-fc7270700a51)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 91.44 161.29 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a2a45b) + (property "Reference" "H1" (id 0) (at 95.25 160.1216 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 95.25 162.433 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 91.44 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 91.44 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f0a6a5ae-ac06-4ef7-aaf2-f695fbb49766)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 91.44 166.37 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a2b21e) + (property "Reference" "H2" (id 0) (at 95.25 165.2016 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 95.25 167.513 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 91.44 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 91.44 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f2b1a436-6dbb-4aea-b6d2-3a01a5a1aadf)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 91.44 171.45 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a2bb4b) + (property "Reference" "H3" (id 0) (at 95.25 170.2816 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 95.25 172.593 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 91.44 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 91.44 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 643589b2-64d5-4900-b964-2ea0de4355f7)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 91.44 176.53 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a2c3e0) + (property "Reference" "H4" (id 0) (at 95.25 175.3616 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 95.25 177.673 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 91.44 176.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 176.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 91.44 176.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c3aa991f-dbfb-4213-89e8-1b7194d21059)) + ) + + (symbol (lib_id "power:GND") (at 86.36 179.07 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a2d214) + (property "Reference" "#PWR0148" (id 0) (at 86.36 185.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 86.487 183.4642 0)) + (property "Footprint" "" (id 2) (at 86.36 179.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 86.36 179.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a9a56920-095c-48b0-9870-cd6aed332d40)) + ) + + (symbol (lib_id "Device:Q_NPN_BEC") (at 38.1 177.8 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060aa4e39) + (property "Reference" "Q2" (id 0) (at 33.2486 176.6316 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "S8050" (id 1) (at 33.2486 178.943 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 33.02 180.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.unisonic.com.tw/datasheet/S8050.pdf" (id 3) (at 38.1 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2146" (id 4) (at 38.1 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e3f90a3b-c835-445d-bb21-2d126df870fb)) + (pin "2" (uuid 9fa92332-f3c7-4719-82f5-a337ed385bf0)) + (pin "3" (uuid 9a1fc702-bc5d-424e-aa18-98c5907deaa5)) + ) + + (symbol (lib_id "Device:Q_NPN_BEC") (at 38.1 156.21 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060aa76e5) + (property "Reference" "Q1" (id 0) (at 33.2486 155.0416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "S8050" (id 1) (at 33.2486 157.353 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 33.02 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.unisonic.com.tw/datasheet/S8050.pdf" (id 3) (at 38.1 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2146" (id 4) (at 38.1 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f8b0c741-05f7-4de5-a84b-19d132fa14aa)) + (pin "2" (uuid 93bc5364-b760-4012-917f-2157a556dd68)) + (pin "3" (uuid 63f81f3d-f8f5-444d-bce9-5de0b4d01544)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 40.64 124.46 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060aad571) + (property "Reference" "SW1" (id 0) (at 44.3992 123.2916 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 44.3992 125.603 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (id 2) (at 45.72 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 45.72 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 40.64 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2f1877fa-7ed3-428f-afd8-cf322978e296)) + (pin "2" (uuid d3495f1b-1e62-4671-9cbd-d03766b9e895)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 33.02 16.51 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060abdd61) + (property "Reference" "J14" (id 0) (at 33.7312 15.8496 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_RST" (id 1) (at 33.7312 18.161 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 33.02 16.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 16.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 16.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 47c4cf64-c273-48bc-bf4f-49b074ad33cc)) + ) + + (symbol (lib_id "power:+3.3V") (at 91.44 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060afa7ab) + (property "Reference" "#PWR0140" (id 0) (at 91.44 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 91.44 39.37 0)) + (property "Footprint" "" (id 2) (at 91.44 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 91.44 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 233a79b7-200b-42aa-8019-7c3abef56cf6)) + ) + + (symbol (lib_id "power:GND") (at 91.44 81.28 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060afadf5) + (property "Reference" "#PWR0141" (id 0) (at 91.44 87.63 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 91.567 85.6742 0)) + (property "Footprint" "" (id 2) (at 91.44 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 91.44 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d46603bf-e3c4-4674-be84-5308c441cbad)) + ) + + (symbol (lib_id "Connector:Conn_01x04_Male") (at 219.71 92.71 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b13d6d) + (property "Reference" "J2" (id 0) (at 220.4212 89.7128 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x04_Male" (id 1) (at 220.4212 92.0242 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" (id 2) (at 219.71 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 219.71 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 219.71 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5ff87081-c0a0-47ce-a04e-7b4396f38ef3)) + (pin "2" (uuid 10ef5c17-5272-4e7f-89a5-ecf737e33e26)) + (pin "3" (uuid ecb56094-6b3e-4511-801e-afbe298ca102)) + (pin "4" (uuid 28b3893d-db59-42a0-9c46-cef29fab5b3a)) + ) + + (symbol (lib_id "Connector:Conn_01x06_Male") (at 217.17 53.34 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b28a8c) + (property "Reference" "J13" (id 0) (at 220.98 38.1 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 233.68 41.91 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (id 2) (at 217.17 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 217.17 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 217.17 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6197b319-272c-4c95-84d1-ef5ed1afc823)) + (pin "2" (uuid c97b4061-26b7-40cc-9a5b-bee67d6f7d81)) + (pin "3" (uuid dd32f00e-5092-4d6c-a548-4e9e5b2334c1)) + (pin "4" (uuid 4c1ec492-57a6-4f91-aeff-24a84fd4cbc5)) + (pin "5" (uuid 9c065491-5368-4120-bddc-2e137cc6b5a5)) + (pin "6" (uuid d44addc1-ff3e-4125-acd4-327aac8d4822)) + ) + + (symbol (lib_id "power:GND") (at 40.64 129.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b37023) + (property "Reference" "#PWR0119" (id 0) (at 40.64 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 40.767 133.9342 0)) + (property "Footprint" "" (id 2) (at 40.64 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d46187f5-6649-45c2-a25f-1bcb61a46fcd)) + ) + + (symbol (lib_id "power:GND") (at 64.77 129.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b5bffc) + (property "Reference" "#PWR0151" (id 0) (at 64.77 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 64.897 133.9342 0)) + (property "Footprint" "" (id 2) (at 64.77 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 64.77 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ca20bcbe-ec65-4438-b962-c44102a8802d)) + ) + + (symbol (lib_id "power:+3.3V") (at 64.77 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b5c002) + (property "Reference" "#PWR0152" (id 0) (at 64.77 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 65.151 99.7458 0)) + (property "Footprint" "" (id 2) (at 64.77 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 64.77 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 92f199b0-0165-4734-8227-cbf1bc55ea92)) + ) + + (symbol (lib_id "Device:C") (at 64.77 123.19 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b5c010) + (property "Reference" "C9" (id 0) (at 67.691 122.0216 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 67.691 124.333 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 65.7352 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 64.77 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 64.77 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a5ad196f-2139-4b82-83d3-d368e64ab69a)) + (pin "2" (uuid d8c81834-35d4-42b6-bb2d-1028f3e275ff)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 74.93 124.46 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b5c01c) + (property "Reference" "SW2" (id 0) (at 78.6892 123.2916 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 78.6892 125.603 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (id 2) (at 80.01 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 80.01 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 74.93 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 46e9b278-33b6-418c-8648-6379e4cb51d2)) + (pin "2" (uuid 6aa26ca6-720d-41ef-99cf-000edf99f848)) + ) + + (symbol (lib_id "power:GND") (at 74.93 129.54 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060b5c022) + (property "Reference" "#PWR0153" (id 0) (at 74.93 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 75.057 133.9342 0)) + (property "Footprint" "" (id 2) (at 74.93 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 74.93 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8f46057e-9d7f-41ba-97fc-dda37a0d467c)) + ) + + (symbol (lib_id "Device:LED_Small") (at 162.56 154.94 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060be9e4b) + (property "Reference" "D9" (id 0) (at 163.7284 156.718 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 161.417 156.718 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 162.56 154.94 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 162.56 154.94 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 162.56 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 55260332-2cc1-4fbd-b77c-74ed743602da)) + (pin "2" (uuid 25ccea3e-391e-46e5-a109-828ceb01ac18)) + ) + + (symbol (lib_id "Device:LED_Small") (at 167.64 157.48 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060bee99b) + (property "Reference" "D10" (id 0) (at 168.8084 159.258 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 166.497 159.258 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 167.64 157.48 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.64 157.48 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 167.64 157.48 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2b161e53-b189-42b5-a466-07bfcc4e6608)) + (pin "2" (uuid 2ad9c6ce-821b-48c8-bf7c-d4f39ca079e3)) + ) + + (symbol (lib_id "Device:R") (at 173.99 154.94 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060bf97a0) + (property "Reference" "R17" (id 0) (at 175.1584 156.718 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "220Ohm" (id 1) (at 172.847 156.718 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 156.718 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 173.99 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21189" (id 4) (at 173.99 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3d9f135f-2936-4a6b-8c82-f563803060e8)) + (pin "2" (uuid b9fdfceb-d638-4806-9009-097bba55a4c2)) + ) + + (symbol (lib_id "Device:R") (at 181.61 157.48 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060bfe0f3) + (property "Reference" "R18" (id 0) (at 182.7784 159.258 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "220Ohm" (id 1) (at 180.467 159.258 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 181.61 159.258 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 181.61 157.48 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21189" (id 4) (at 181.61 157.48 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 24f3504f-a368-4ce9-8416-53ed9eb65cd9)) + (pin "2" (uuid 78f76d34-702f-4a24-990c-eb8ec8b39c24)) + ) + + (symbol (lib_id "power:+3.3V") (at 187.96 152.4 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060bfe99b) + (property "Reference" "#PWR0154" (id 0) (at 187.96 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 189.23 148.59 0)) + (property "Footprint" "" (id 2) (at 187.96 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 187.96 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e529644b-2c9e-4f8b-9c38-08ff67cc8ee7)) + ) + + (symbol (lib_id "Connector:Conn_01x04_Male") (at 187.96 92.71 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060c2cb6f) + (property "Reference" "J15" (id 0) (at 188.6712 89.7128 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x04_Male" (id 1) (at 188.6712 92.0242 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 187.96 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 187.96 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 187.96 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c49ff6d4-1a16-481a-828c-27822efbfbd1)) + (pin "2" (uuid 6a6fe0eb-27f8-4211-b3b1-67a931b2564a)) + (pin "3" (uuid 3a8a64b6-2931-4e58-ae99-3a8abd81a73e)) + (pin "4" (uuid ad419e50-4ce2-4e77-8f14-11e077d98334)) + ) + + (symbol (lib_id "power:GND") (at 180.34 97.79 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060c2cb77) + (property "Reference" "#PWR0155" (id 0) (at 180.34 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 180.467 102.1842 0)) + (property "Footprint" "" (id 2) (at 180.34 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 180.34 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9c7cc17c-0d2d-416e-9a95-439886d0ee09)) + ) + + (symbol (lib_id "power:GND") (at 33.02 71.12 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 075151a9-4009-4cf2-843c-9a555a90aca7) + (property "Reference" "#PWR0107" (id 0) (at 33.02 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 33.147 75.5142 0)) + (property "Footprint" "" (id 2) (at 33.02 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 33.02 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d263c80a-610d-4138-b707-a0ba67d13a61)) + ) + + (symbol (lib_id "power:+3.3V") (at 232.41 48.26 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2d95263b-3f86-46a9-8acf-e939f8e7e357) + (property "Reference" "#PWR0159" (id 0) (at 232.41 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 232.41 44.45 0)) + (property "Footprint" "" (id 2) (at 232.41 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 232.41 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d37d7f75-c7e7-41a1-a589-d169e21f4470)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 133.35 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3a12708a-1a06-45b4-8378-2ebf8388e2fd) + (property "Reference" "J16" (id 0) (at 134.0612 60.2996 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 134.62 62.23 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 133.35 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 133.35 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 133.35 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b917521f-4db1-47a4-8f69-ae4c0d3d873f)) + ) + + (symbol (lib_id "Device:R") (at 254 25.4 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3d1501ef-6383-4bd6-ba25-28b7899a6804) + (property "Reference" "R8" (id 0) (at 254 20.1422 90)) + (property "Value" "12kOhm" (id 1) (at 254 22.4536 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 254 23.622 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 254 25.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 254 25.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e00526ef-5b56-4f03-bb76-0659f377cc9e)) + (pin "2" (uuid 11463382-84ee-449b-9a32-b75af2d145c8)) + ) + + (symbol (lib_id "Connector:Conn_01x06_Male") (at 215.9 53.34 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4d4d48b1-34d1-4676-96e9-f485d3a05f58) + (property "Reference" "J21" (id 0) (at 212.09 38.1 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 205.74 60.96 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (id 2) (at 215.9 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 215.9 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 215.9 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 74c2812c-5407-435e-b0b5-4f97382ffbe7)) + (pin "2" (uuid bd0d279e-3e77-49c8-a225-f4e05bbacc28)) + (pin "3" (uuid f0450e00-8721-476e-95de-ec87eba2a9fc)) + (pin "4" (uuid 8dd15bed-cb6d-48c8-9c98-726503cba8ba)) + (pin "5" (uuid 42e8d102-7b8e-414c-a8b2-138e56191a56)) + (pin "6" (uuid be569daf-9cfc-4932-a082-584e7fd472e1)) + ) + + (symbol (lib_id "Device:C") (at 247.65 33.02 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5efc1587-fe2e-45ca-a2ca-2ce4f234ad9f) + (property "Reference" "C11" (id 0) (at 250.571 31.8516 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 250.571 34.163 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 248.6152 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 247.65 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 247.65 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 56b5f105-3837-4483-a863-4e9d942b1817)) + (pin "2" (uuid f7f77242-07c3-4aae-885b-8b285b1c0f16)) + ) + + (symbol (lib_id "Device:C") (at 33.02 67.31 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6439483e-4696-4f78-ab34-0abb62a3103c) + (property "Reference" "C10" (id 0) (at 35.941 66.1416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 35.941 68.453 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 33.9852 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 33.02 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e67a7d80-29be-4d01-a358-0e75cd0044cf)) + (pin "2" (uuid 88eaf0c2-e902-4996-a263-324a6a227c7d)) + ) + + (symbol (lib_id "power:GND") (at 247.65 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b6786af2-ddc3-440c-9e38-37e0a3772d86) + (property "Reference" "#PWR0115" (id 0) (at 247.65 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 247.777 41.2242 0)) + (property "Footprint" "" (id 2) (at 247.65 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 247.65 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6e08e7df-cfd4-4044-851b-3cb73ee73d09)) + ) + + (symbol (lib_id "power:+3.3V") (at 265.43 22.86 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f4439838-09f8-48e1-91a0-414c53a1ed0e) + (property "Reference" "#PWR0158" (id 0) (at 265.43 26.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 265.811 18.4658 0)) + (property "Footprint" "" (id 2) (at 265.43 22.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 265.43 22.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d75f3e1f-e2f5-47f6-9e92-95dd07e3b013)) + ) + + (sheet (at 245.11 82.55) (size 25.4 21.59) (fields_autoplaced) + (stroke (width 0) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 00000000-0000-0000-0000-00006078273a) + (property "Sheet name" "Power" (id 0) (at 245.11 81.8384 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "power.kicad_sch" (id 1) (at 245.11 104.7246 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + ) + + (sheet (at 254 121.92) (size 22.86 31.75) (fields_autoplaced) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 599586a3-9dc2-4d0b-adc6-1c8befb3d77e) + (property "Sheet name" "Frontseat_stm32g031g" (id 0) (at 254 121.2084 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "stm32g031g.kicad_sch" (id 1) (at 254 154.2546 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + ) + + (sheet (at 149.86 33.02) (size 29.21 27.94) (fields_autoplaced) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 704d02d9-6cb6-48ad-b961-61eafd0de7c6) + (property "Sheet name" "Ext-IO" (id 0) (at 149.86 32.3084 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "onboard_bus_node.kicad_sch" (id 1) (at 149.86 61.5446 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (pin "MOSI" input (at 149.86 45.72 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bb455b92-63cf-4671-9914-89fa0f7d2c19) + ) + (pin "SCLK" input (at 149.86 43.18 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 40237f6e-3628-4ba2-9969-74140e58b011) + ) + (pin "MISO" output (at 149.86 40.64 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 78832734-e5fe-43b9-8da5-1be730df2472) + ) + (pin "INIT_{IN}" input (at 149.86 58.42 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cdec1deb-fab7-4565-9473-0b7da0a79823) + ) + (pin "INIT_{OUT}" output (at 179.07 58.42 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f5c77be8-5764-4242-8c92-e2db584a49c4) + ) + (pin "~{RST}" input (at 149.86 50.8 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c2b8622c-c317-4b18-a120-fe697fbd76f7) + ) + (pin "~{INT}" output (at 149.86 48.26 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f498db20-4284-46a4-b91a-646e69022ecb) + ) + ) + + (sheet_instances + (path "/" (page "1")) + (path "/00000000-0000-0000-0000-00006078273a" (page "2")) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6" (page "3")) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e" (page "4")) + ) + + (symbol_instances + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060a9be5e" + (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/fb4a4929-028c-48be-b42d-0256eec11e8b" + (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c94a" + (reference "#PWR0101") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c950" + (reference "#PWR0102") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c956" + (reference "#PWR0103") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c95c" + (reference "#PWR0104") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929622" + (reference "#PWR0105") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000608b3c6c" + (reference "#PWR0106") (unit 1) (value "+5V") (footprint "") + ) + (path "/075151a9-4009-4cf2-843c-9a555a90aca7" + (reference "#PWR0107") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060793a86" + (reference "#PWR0108") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006079401e" + (reference "#PWR0109") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607abca1" + (reference "#PWR0110") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607ac230" + (reference "#PWR0111") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607ad365" + (reference "#PWR0112") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607ed641" + (reference "#PWR0113") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000607edc45" + (reference "#PWR0114") (unit 1) (value "GND") (footprint "") + ) + (path "/b6786af2-ddc3-440c-9e38-37e0a3772d86" + (reference "#PWR0115") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006081a73d" + (reference "#PWR0116") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006081ac29" + (reference "#PWR0117") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060864f25" + (reference "#PWR0118") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060b37023" + (reference "#PWR0119") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060866b06" + (reference "#PWR0120") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000608670b9" + (reference "#PWR0121") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000608c9312" + (reference "#PWR0122") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929635" + (reference "#PWR0123") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006092963b" + (reference "#PWR0124") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929641" + (reference "#PWR0125") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-0000608f6161" + (reference "#PWR0126") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060951d2f" + (reference "#PWR0127") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/a640d44f-17df-4a35-bb43-bbd33188bb32" + (reference "#PWR0128") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/b68b98a0-c8d7-42c1-a14c-26ea0757514d" + (reference "#PWR0129") (unit 1) (value "+5V") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/77f302ae-5c83-47df-bb03-185c0834f456" + (reference "#PWR0130") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/b1556799-97a3-4c88-ad51-05dfa68e0ab3" + (reference "#PWR0131") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608dd823" + (reference "#PWR0132") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608de102" + (reference "#PWR0133") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607b7fbf" + (reference "#PWR0134") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607b9620" + (reference "#PWR0135") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607c2a7c" + (reference "#PWR0136") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608e064a" + (reference "#PWR0137") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608ea16e" + (reference "#PWR0138") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608eb6fb" + (reference "#PWR0139") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060afa7ab" + (reference "#PWR0140") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060afadf5" + (reference "#PWR0141") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608ec96e" + (reference "#PWR0142") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608ed499" + (reference "#PWR0143") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060947821" + (reference "#PWR0144") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006094782d" + (reference "#PWR0145") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929649" + (reference "#PWR0146") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929655" + (reference "#PWR0147") (unit 1) (value "+5V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060a2d214" + (reference "#PWR0148") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060a9d3db" + (reference "#PWR0149") (unit 1) (value "+12V") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006091ec83" + (reference "#PWR0150") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060b5bffc" + (reference "#PWR0151") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060b5c002" + (reference "#PWR0152") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060b5c022" + (reference "#PWR0153") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060bfe99b" + (reference "#PWR0154") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/00000000-0000-0000-0000-000060c2cb77" + (reference "#PWR0155") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/e45c7a62-a839-46d3-b3f3-9d35ccfff119" + (reference "#PWR0156") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/9d533a3a-ce1e-4918-8066-d34ea02fcc62" + (reference "#PWR0157") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/f4439838-09f8-48e1-91a0-414c53a1ed0e" + (reference "#PWR0158") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/2d95263b-3f86-46a9-8acf-e939f8e7e357" + (reference "#PWR0159") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/49316310-c9a1-4506-b118-170bdd9bd029" + (reference "#PWR0160") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/73cb7925-fe5a-43fc-a643-1763ccb7b255" + (reference "#PWR0161") (unit 1) (value "GND") (footprint "") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/4e092c40-ecee-4aa0-81b8-d5230af22959" + (reference "#PWR0162") (unit 1) (value "GND") (footprint "") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/afedab57-ff9c-40ee-8aae-03af63886737" + (reference "#PWR0163") (unit 1) (value "GND") (footprint "") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/3303274a-cba7-4090-b7c9-6ad357198313" + (reference "#PWR0164") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/e431da71-e53a-4d43-9ffd-4e0057b90677" + (reference "#PWR0165") (unit 1) (value "GND") (footprint "") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/5d83d3d8-3dcb-43b4-b37d-0bbe1e88cfac" + (reference "#PWR0166") (unit 1) (value "GND") (footprint "") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/eff4aefb-bfa1-4abb-a50d-5d88bfa61f6a" + (reference "#PWR0167") (unit 1) (value "GND") (footprint "") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c989" + (reference "C1") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c54a2" + (reference "C2") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060794539" + (reference "C3") (unit 1) (value "TAJB107K006RNJ") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B") + ) + (path "/00000000-0000-0000-0000-000060820053" + (reference "C4") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c4cdd" + (reference "C5") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607b779d" + (reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609c5abb" + (reference "C7") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607c2a6a" + (reference "C8") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060b5c010" + (reference "C9") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/6439483e-4696-4f78-ab34-0abb62a3103c" + (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/5efc1587-fe2e-45ca-a2ca-2ce4f234ad9f" + (reference "C11") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c973" + (reference "D1") (unit 1) (value "SS14") (footprint "Diode_SMD:D_SMA") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/6801e525-3830-4664-bb60-00a8c7a1c082" + (reference "D2") (unit 1) (value "LED_RGB") (footprint "LED_SMD:LED_RGB_5050-6") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/3e7cdd91-118f-419e-8ce4-8e64c075f1f7" + (reference "D4") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/744ebebf-56f4-477b-86a6-457c3f5a23ee" + (reference "D5") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000607c7255" + (reference "D6") (unit 1) (value "SS14") (footprint "Diode_SMD:D_SMA") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608e2da3" + (reference "D7") (unit 1) (value "Z 5V") (footprint "Diode_SMD:D_MiniMELF") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000608e7242" + (reference "D8") (unit 1) (value "Z 12V") (footprint "Diode_SMD:D_MiniMELF") + ) + (path "/00000000-0000-0000-0000-000060be9e4b" + (reference "D9") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060bee99b" + (reference "D10") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/a4dbc587-0978-4b74-b626-ca0d670427eb" + (reference "D12") (unit 1) (value "LED_RGB") (footprint "LED_SMD:LED_RGB_5050-6") + ) + (path "/00000000-0000-0000-0000-000060a2a45b" + (reference "H1") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/00000000-0000-0000-0000-000060a2b21e" + (reference "H2") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/00000000-0000-0000-0000-000060a2bb4b" + (reference "H3") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/00000000-0000-0000-0000-000060a2c3e0" + (reference "H4") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/00000000-0000-0000-0000-0000607ae779" + (reference "J1") (unit 1) (value "USB_B_Micro") (footprint "stock:micro_usb") + ) + (path "/00000000-0000-0000-0000-000060b13d6d" + (reference "J2") (unit 1) (value "Conn_01x04_Male") (footprint "TerminalBlock:TerminalBlock_bornier-4_P5.08mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006092964f" + (reference "J3") (unit 1) (value "Conn_01x02_Male") (footprint "TerminalBlock:TerminalBlock_bornier-2_P5.08mm") + ) + (path "/00000000-0000-0000-0000-0000608bfa99" + (reference "J4") (unit 1) (value "Conn_01x04_Male") (footprint "TerminalBlock:TerminalBlock_bornier-4_P5.08mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060929628" + (reference "J5") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal") + ) + (path "/00000000-0000-0000-0000-0000609717cf" + (reference "J6") (unit 1) (value "Testpoint_RST") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/00000000-0000-0000-0000-000060971cc4" + (reference "J7") (unit 1) (value "Testpoint_ADC") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/ea494141-cd26-4493-9a48-d85bea2017dd" + (reference "J8") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006094781b" + (reference "J9") (unit 1) (value "Testpoint_3V3") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-000060947827" + (reference "J10") (unit 1) (value "Testpoint_GND") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-0000609480a1" + (reference "J11") (unit 1) (value "Testpoint_LDO_IN") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006092962e" + (reference "J12") (unit 1) (value "Conn_01x02_Male") (footprint "TerminalBlock:TerminalBlock_bornier-2_P5.08mm") + ) + (path "/00000000-0000-0000-0000-000060b28a8c" + (reference "J13") (unit 1) (value "Conn_01x06_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000060abdd61" + (reference "J14") (unit 1) (value "Testpoint_RST") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/00000000-0000-0000-0000-000060c2cb6f" + (reference "J15") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical") + ) + (path "/3a12708a-1a06-45b4-8378-2ebf8388e2fd" + (reference "J16") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/916b39a7-f0d0-4eef-ab1b-17c22bef3395" + (reference "J17") (unit 1) (value "Testpoint_SEN_12V") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/a0b55039-1d75-4207-a887-4b9b89cd6a4f" + (reference "J18") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/1ed3d387-f75a-40aa-a4df-e265bc13a670" + (reference "J19") (unit 1) (value "Testpoint_SEN_5V") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/761406f4-13fa-4c19-8252-e4370dda9ba0" + (reference "J20") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/4d4d48b1-34d1-4676-96e9-f485d3a05f58" + (reference "J21") (unit 1) (value "Conn_01x06_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical") + ) + (path "/00000000-0000-0000-0000-000060aa76e5" + (reference "Q1") (unit 1) (value "S8050") (footprint "Package_TO_SOT_SMD:SOT-23") + ) + (path "/00000000-0000-0000-0000-000060aa4e39" + (reference "Q2") (unit 1) (value "S8050") (footprint "Package_TO_SOT_SMD:SOT-23") + ) + (path "/00000000-0000-0000-0000-00006081b1dc" + (reference "R1") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006085beaf" + (reference "R2") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006085b97b" + (reference "R3") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006085aaa5" + (reference "R4") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006085845d" + (reference "R5") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006079ffa8" + (reference "R6") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006079ea60" + (reference "R7") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/3d1501ef-6383-4bd6-ba25-28b7899a6804" + (reference "R8") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-00006088365f" + (reference "R9") (unit 1) (value "470Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/9d74152e-7191-42ca-a6ac-12dbe4241544" + (reference "R10") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/874cfa3e-3ded-4339-a5d3-4843ce4aafd1" + (reference "R11") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/2265d06c-5de3-42c2-8f12-2e8783f51da0" + (reference "R12") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/c29c6096-874c-4fe7-ba65-6a6152e78ded" + (reference "R13") (unit 1) (value "470Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/61dc5206-9bd4-4b14-a458-235cedf18af0" + (reference "R14") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060920300" + (reference "R15") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-0000609222d7" + (reference "R16") (unit 1) (value "1kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060bf97a0" + (reference "R17") (unit 1) (value "220Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060bfe0f3" + (reference "R18") (unit 1) (value "220Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/fe272caa-7fb3-4892-9f5f-7977716926c8" + (reference "R19") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/eac9fa66-353d-4528-83ce-e76bc6e3701d" + (reference "R20") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/68aaa12a-561c-48eb-abb6-e47c91b28e7a" + (reference "R21") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/34eb6719-7713-41ef-b8d2-9cc36d38f374" + (reference "R22") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/21e76397-b06e-4e87-be57-622b34e6d8de" + (reference "R23") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00000000-0000-0000-0000-000060aad571" + (reference "SW1") (unit 1) (value "SW_Push") (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3") + ) + (path "/00000000-0000-0000-0000-000060b5c01c" + (reference "SW2") (unit 1) (value "SW_Push") (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3") + ) + (path "/00000000-0000-0000-0000-00006091c48a" + (reference "U1") (unit 1) (value "ESP-12E") (footprint "RF_Module:ESP-12E") + ) + (path "/00000000-0000-0000-0000-0000607804b7" + (reference "U2") (unit 1) (value "CP2102-GMR") (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm") + ) + (path "/00000000-0000-0000-0000-00006078273a/00000000-0000-0000-0000-00006078c93e" + (reference "U3") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2") + ) + (path "/704d02d9-6cb6-48ad-b961-61eafd0de7c6/95a378f0-32a4-4207-99cd-5728b8025aaf" + (reference "U4") (unit 1) (value "STM32L011F4Ux") (footprint "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm") + ) + (path "/599586a3-9dc2-4d0b-adc6-1c8befb3d77e/102280cb-52f1-4d00-a983-b7d0fff143e3" + (reference "U5") (unit 1) (value "STM32G031G8Ux") (footprint "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm") + ) + ) +) diff --git a/pcb/fiatlux.kicad_sym b/pcb/fiatlux.kicad_sym new file mode 100644 index 0000000..f28ef53 --- /dev/null +++ b/pcb/fiatlux.kicad_sym @@ -0,0 +1,136 @@ +(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) + (symbol "STM32G031G8Ux" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 2.54 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32G031G8Ux" (id 1) (at 2.54 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm" (id 2) (at 24.13 -26.67 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) + ) + (symbol "STM32G031G8Ux_0_1" + (rectangle (start -10.16 19.05) (end 10.16 -19.05) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "STM32G031G8Ux_1_1" + (pin bidirectional line (at -12.7 11.43 0) (length 2.54) + (name "PC14" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 6.35 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 3.81 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 1.27 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -1.27 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 1.27 0) (length 2.54) + (name "PB0" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -1.27 0) (length 2.54) + (name "PB1" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -3.81 180) (length 2.54) + (name "PA8" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 6.35 0) (length 2.54) + (name "PC6" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -6.35 180) (length 2.54) + (name "PA11" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -8.89 180) (length 2.54) + (name "PA12" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 8.89 0) (length 2.54) + (name "PC15" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -11.43 180) (length 2.54) + (name "PA13" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -13.97 180) (length 2.54) + (name "PA14" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -16.51 180) (length 2.54) + (name "PA15" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -3.81 0) (length 2.54) + (name "PB3" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -6.35 0) (length 2.54) + (name "PB4" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -8.89 0) (length 2.54) + (name "PB5" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -11.43 0) (length 2.54) + (name "PB6" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -13.97 0) (length 2.54) + (name "PB7" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -16.51 0) (length 2.54) + (name "PB8" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 21.59 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -21.59 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 16.51 0) (length 2.54) + (name "NRST" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 16.51 180) (length 2.54) + (name "PA0" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 13.97 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 11.43 180) (length 2.54) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 8.89 180) (length 2.54) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) +) diff --git a/pcb/fiatlux.kiplot.yaml b/pcb/fiatlux.kiplot.yaml index a035fc6..f952d3a 100644 --- a/pcb/fiatlux.kiplot.yaml +++ b/pcb/fiatlux.kiplot.yaml @@ -8,6 +8,23 @@ preflight: run_drc: true check_zone_fills: false ignore_unconnected: false + filters: + - error: 'courtyards_overlap' + regex: '((?s)J4(.*)J13)|((?s)J13(.*)J21)|((?s)J2(.*)J15)|((?s)J2(.*)J4)' + - error: 'courtyards_overlap' + regex: '(?s)J3(.*)J12' + - error: 'clearance' + regex: '(.*)no net(.*) of J1' + +global: + filters: + - error: 'courtyards_overlap' + regex: '((?s)J4(.*)J13)|((?s)J13(.*)J21)|((?s)J2(.*)J15)|((?s)J2(.*)J4)' + - error: 'courtyards_overlap' + regex: '(?s)J3(.*)J12' + - error: 'clearance' + regex: '(.*)no net(.*) of J1' + - error: 'silk_overlap' # global: # kiauto_wait_start: 60 diff --git a/pcb/fiatlux.pro b/pcb/fiatlux.pro deleted file mode 100644 index 471e606..0000000 --- a/pcb/fiatlux.pro +++ /dev/null @@ -1,252 +0,0 @@ -update=Mo 12 Jul 2021 16:48:53 CEST -version=1 -last_client=kicad -[general] -version=1 -RootSch= -BoardNm= -[cvpcb] -version=1 -NetIExt=net -[eeschema] -version=1 -LibDir= -[eeschema/libraries] -[schematic_editor] -version=1 -PageLayoutDescrFile= -PlotDirectoryName= -SubpartIdSeparator=0 -SubpartFirstId=65 -NetFmtName=Pcbnew -SpiceAjustPassiveValues=0 -LabSize=50 -ERC_TestSimilarLabels=1 -[pcbnew] -version=1 -PageLayoutDescrFile= -LastNetListRead=fiatlux.net -CopperLayerCount=2 -BoardThickness=1.6 -AllowMicroVias=0 -AllowBlindVias=0 -RequireCourtyardDefinitions=0 -ProhibitOverlappingCourtyards=1 -MinTrackWidth=0.2 -MinViaDiameter=0.4 -MinViaDrill=0.3 -MinMicroViaDiameter=0.2 -MinMicroViaDrill=0.09999999999999999 -MinHoleToHole=0.25 -TrackWidth1=0.25 -TrackWidth2=0.25 -TrackWidth3=0.5 -TrackWidth4=1 -TrackWidth5=2 -ViaDiameter1=0.8 -ViaDrill1=0.4 -dPairWidth1=0.2 -dPairGap1=0.25 -dPairViaGap1=0.25 -SilkLineWidth=0.15 -SilkTextSizeV=1 -SilkTextSizeH=1 -SilkTextSizeThickness=0.15 -SilkTextItalic=0 -SilkTextUpright=1 -CopperLineWidth=0.2 -CopperTextSizeV=1.5 -CopperTextSizeH=1.5 -CopperTextThickness=0.3 -CopperTextItalic=0 -CopperTextUpright=1 -EdgeCutLineWidth=0.09999999999999999 -CourtyardLineWidth=0.05 -OthersLineWidth=0.15 -OthersTextSizeV=1 -OthersTextSizeH=1 -OthersTextSizeThickness=0.15 -OthersTextItalic=0 -OthersTextUpright=1 -SolderMaskClearance=0 -SolderMaskMinWidth=0 -SolderPasteClearance=0 -SolderPasteRatio=-0 -[pcbnew/Layer.F.Cu] -Name=F.Cu -Type=0 -Enabled=1 -[pcbnew/Layer.In1.Cu] -Name=In1.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In2.Cu] -Name=In2.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In3.Cu] -Name=In3.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In4.Cu] -Name=In4.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In5.Cu] -Name=In5.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In6.Cu] -Name=In6.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In7.Cu] -Name=In7.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In8.Cu] -Name=In8.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In9.Cu] -Name=In9.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In10.Cu] -Name=In10.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In11.Cu] -Name=In11.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In12.Cu] -Name=In12.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In13.Cu] -Name=In13.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In14.Cu] -Name=In14.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In15.Cu] -Name=In15.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In16.Cu] -Name=In16.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In17.Cu] -Name=In17.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In18.Cu] -Name=In18.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In19.Cu] -Name=In19.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In20.Cu] -Name=In20.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In21.Cu] -Name=In21.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In22.Cu] -Name=In22.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In23.Cu] -Name=In23.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In24.Cu] -Name=In24.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In25.Cu] -Name=In25.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In26.Cu] -Name=In26.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In27.Cu] -Name=In27.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In28.Cu] -Name=In28.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In29.Cu] -Name=In29.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.In30.Cu] -Name=In30.Cu -Type=0 -Enabled=0 -[pcbnew/Layer.B.Cu] -Name=B.Cu -Type=0 -Enabled=1 -[pcbnew/Layer.B.Adhes] -Enabled=1 -[pcbnew/Layer.F.Adhes] -Enabled=1 -[pcbnew/Layer.B.Paste] -Enabled=1 -[pcbnew/Layer.F.Paste] -Enabled=1 -[pcbnew/Layer.B.SilkS] -Enabled=1 -[pcbnew/Layer.F.SilkS] -Enabled=1 -[pcbnew/Layer.B.Mask] -Enabled=1 -[pcbnew/Layer.F.Mask] -Enabled=1 -[pcbnew/Layer.Dwgs.User] -Enabled=1 -[pcbnew/Layer.Cmts.User] -Enabled=1 -[pcbnew/Layer.Eco1.User] -Enabled=1 -[pcbnew/Layer.Eco2.User] -Enabled=1 -[pcbnew/Layer.Edge.Cuts] -Enabled=1 -[pcbnew/Layer.Margin] -Enabled=1 -[pcbnew/Layer.B.CrtYd] -Enabled=1 -[pcbnew/Layer.F.CrtYd] -Enabled=1 -[pcbnew/Layer.B.Fab] -Enabled=1 -[pcbnew/Layer.F.Fab] -Enabled=1 -[pcbnew/Layer.Rescue] -Enabled=0 -[pcbnew/Netclasses] -[pcbnew/Netclasses/Default] -Name=Default -Clearance=0.127 -TrackWidth=0.25 -ViaDiameter=0.8 -ViaDrill=0.4 -uViaDiameter=0.3 -uViaDrill=0.1 -dPairWidth=0.2 -dPairGap=0.25 -dPairViaGap=0.25 diff --git a/pcb/fiatlux.sch b/pcb/fiatlux.sch deleted file mode 100644 index af49b84..0000000 --- a/pcb/fiatlux.sch +++ /dev/null @@ -1,1340 +0,0 @@ -EESchema Schematic File Version 4 -EELAYER 30 0 -EELAYER END -$Descr A4 11693 8268 -encoding utf-8 -Sheet 1 2 -Title "" -Date "" -Rev "" -Comp "" -Comment1 "" -Comment2 "" -Comment3 "" -Comment4 "" -$EndDescr -$Comp -L Interface_USB:CP2102N-A01-GQFN28 U2 -U 1 1 607804B7 -P 5450 5600 -F 0 "U2" H 5600 4350 50 0000 C CNN -F 1 "CP2102-GMR" H 5900 6850 50 0000 C CNN -F 2 "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" H 5900 4400 50 0001 L CNN -F 3 "https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf" H 5500 4850 50 0001 C CNN -F 4 "C6568" H 5450 5600 50 0001 C CNN "LCSC" - 1 5450 5600 - 1 0 0 -1 -$EndComp -$Sheet -S 9650 3250 1000 850 -U 6078273A -F0 "Power" 50 -F1 "power.sch" 50 -$EndSheet -Wire Wire Line - 1400 6350 1400 6550 -Wire Wire Line - 1400 6550 2400 6550 -Wire Wire Line - 2400 6550 2400 7000 -$Comp -L Device:R R7 -U 1 1 6079EA60 -P 2050 7000 -F 0 "R7" V 1843 7000 50 0000 C CNN -F 1 "12kOhm" V 1934 7000 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1980 7000 50 0001 C CNN -F 3 "~" H 2050 7000 50 0001 C CNN -F 4 "C22790" H 2050 7000 50 0001 C CNN "LCSC" - 1 2050 7000 - 0 1 1 0 -$EndComp -$Comp -L Device:R R6 -U 1 1 6079FFA8 -P 2050 6150 -F 0 "R6" V 1843 6150 50 0000 C CNN -F 1 "12kOhm" V 1934 6150 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1980 6150 50 0001 C CNN -F 3 "~" H 2050 6150 50 0001 C CNN -F 4 "C22790" H 2050 6150 50 0001 C CNN "LCSC" - 1 2050 6150 - 0 1 1 0 -$EndComp -Wire Wire Line - 1900 6150 1700 6150 -Wire Wire Line - 1700 7000 1900 7000 -Wire Wire Line - 1400 6800 1400 6650 -Wire Wire Line - 1400 6650 2350 6650 -Wire Wire Line - 2350 6650 2350 6150 -Wire Wire Line - 2350 6150 2200 6150 -Wire Wire Line - 1400 5950 1400 5850 -Wire Wire Line - 1400 5850 1200 5850 -Wire Wire Line - 1400 7200 1400 7300 -Wire Wire Line - 1400 7300 1200 7300 -Wire Wire Line - 2200 7000 2400 7000 -Wire Wire Line - 2600 7000 2400 7000 -Connection ~ 2400 7000 -Wire Wire Line - 2600 6150 2350 6150 -Connection ~ 2350 6150 -Text GLabel 2600 6150 2 50 Input ~ 0 -DTR -Text GLabel 2600 7000 2 50 Input ~ 0 -RTS -Text GLabel 1200 5850 0 50 Input ~ 0 -nRST -Text GLabel 1200 7300 0 50 Input ~ 0 -FLSH -$Comp -L power:+3.3V #PWR0110 -U 1 1 607ABCA1 -P 5450 4300 -F 0 "#PWR0110" H 5450 4150 50 0001 C CNN -F 1 "+3.3V" H 5500 4450 50 0000 C CNN -F 2 "" H 5450 4300 50 0001 C CNN -F 3 "" H 5450 4300 50 0001 C CNN - 1 5450 4300 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0111 -U 1 1 607AC230 -P 5350 4300 -F 0 "#PWR0111" H 5350 4150 50 0001 C CNN -F 1 "+3.3V" H 5250 4450 50 0000 C CNN -F 2 "" H 5350 4300 50 0001 C CNN -F 3 "" H 5350 4300 50 0001 C CNN - 1 5350 4300 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0112 -U 1 1 607AD365 -P 5450 6900 -F 0 "#PWR0112" H 5450 6650 50 0001 C CNN -F 1 "GND" H 5455 6727 50 0000 C CNN -F 2 "" H 5450 6900 50 0001 C CNN -F 3 "" H 5450 6900 50 0001 C CNN - 1 5450 6900 - 1 0 0 -1 -$EndComp -$Comp -L Connector:USB_B_Micro J1 -U 1 1 607AE779 -P 3800 5000 -F 0 "J1" H 3857 5467 50 0000 C CNN -F 1 "USB_B_Micro" H 3857 5376 50 0000 C CNN -F 2 "stock:micro_usb" H 3950 4950 50 0001 C CNN -F 3 "~" H 3950 4950 50 0001 C CNN -F 4 "C40943" H 3800 5000 50 0001 C CNN "LCSC" - 1 3800 5000 - 1 0 0 -1 -$EndComp -Wire Wire Line - 4100 4800 4300 4800 -Wire Wire Line - 4300 4800 4300 4900 -Wire Wire Line - 4300 4900 4950 4900 -Wire Wire Line - 4300 4800 4300 4700 -Connection ~ 4300 4800 -Wire Wire Line - 4950 5000 4100 5000 -Wire Wire Line - 4950 5100 4100 5100 -NoConn ~ 4950 4700 -NoConn ~ 5950 5500 -NoConn ~ 5950 5700 -NoConn ~ 5950 5800 -NoConn ~ 5950 5900 -NoConn ~ 5950 6600 -NoConn ~ 5950 6300 -NoConn ~ 5950 6400 -NoConn ~ 5950 6500 -NoConn ~ 5950 6700 -Text GLabel 1000 4600 0 50 Input ~ 0 -nRST -$Comp -L power:GND #PWR0116 -U 1 1 6081A73D -P 1200 5100 -F 0 "#PWR0116" H 1200 4850 50 0001 C CNN -F 1 "GND" H 1205 4927 50 0000 C CNN -F 2 "" H 1200 5100 50 0001 C CNN -F 3 "" H 1200 5100 50 0001 C CNN - 1 1200 5100 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0117 -U 1 1 6081AC29 -P 1200 4100 -F 0 "#PWR0117" H 1200 3950 50 0001 C CNN -F 1 "+3.3V" H 1215 4273 50 0000 C CNN -F 2 "" H 1200 4100 50 0001 C CNN -F 3 "" H 1200 4100 50 0001 C CNN - 1 1200 4100 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R1 -U 1 1 6081B1DC -P 1200 4350 -F 0 "R1" H 1270 4396 50 0000 L CNN -F 1 "12kOhm" H 1270 4305 50 0000 L CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1130 4350 50 0001 C CNN -F 3 "~" H 1200 4350 50 0001 C CNN -F 4 "C22790" H 1200 4350 50 0001 C CNN "LCSC" - 1 1200 4350 - 1 0 0 -1 -$EndComp -$Comp -L Device:C C4 -U 1 1 60820053 -P 1200 4850 -AR Path="/60820053" Ref="C4" Part="1" -AR Path="/6078273A/60820053" Ref="C?" Part="1" -F 0 "C4" H 1315 4896 50 0000 L CNN -F 1 "100nF" H 1315 4805 50 0000 L CNN -F 2 "Capacitor_SMD:C_0603_1608Metric" H 1238 4700 50 0001 C CNN -F 3 "~" H 1200 4850 50 0001 C CNN -F 4 "C14663" H 1200 4850 50 0001 C CNN "LCSC" - 1 1200 4850 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1200 4100 1200 4200 -Wire Wire Line - 1200 4500 1200 4600 -Connection ~ 1200 4600 -Wire Wire Line - 1200 4600 1200 4700 -Wire Wire Line - 1200 5000 1200 5100 -Wire Wire Line - 1000 4600 1200 4600 -Text GLabel 3000 1900 0 50 Input ~ 0 -nRST -Text GLabel 3000 2100 0 50 Input ~ 0 -EN -$Comp -L Device:R R5 -U 1 1 6085845D -P 1550 2800 -F 0 "R5" V 1343 2800 50 0000 C CNN -F 1 "12kOhm" V 1434 2800 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1480 2800 50 0001 C CNN -F 3 "~" H 1550 2800 50 0001 C CNN -F 4 "C22790" H 1550 2800 50 0001 C CNN "LCSC" - 1 1550 2800 - 0 1 1 0 -$EndComp -Wire Wire Line - 1400 2800 1250 2800 -$Comp -L Device:R R4 -U 1 1 6085AAA5 -P 1550 2350 -F 0 "R4" V 1343 2350 50 0000 C CNN -F 1 "12kOhm" V 1434 2350 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1480 2350 50 0001 C CNN -F 3 "~" H 1550 2350 50 0001 C CNN -F 4 "C22790" H 1550 2350 50 0001 C CNN "LCSC" - 1 1550 2350 - 0 1 1 0 -$EndComp -$Comp -L Device:R R3 -U 1 1 6085B97B -P 2550 4350 -F 0 "R3" H 2650 4400 50 0000 C CNN -F 1 "12kOhm" H 2750 4300 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 2480 4350 50 0001 C CNN -F 3 "~" H 2550 4350 50 0001 C CNN -F 4 "C22790" H 2550 4350 50 0001 C CNN "LCSC" - 1 2550 4350 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R2 -U 1 1 6085BEAF -P 1550 1800 -F 0 "R2" V 1343 1800 50 0000 C CNN -F 1 "12kOhm" V 1434 1800 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 1480 1800 50 0001 C CNN -F 3 "~" H 1550 1800 50 0001 C CNN -F 4 "C22790" H 1550 1800 50 0001 C CNN "LCSC" - 1 1550 1800 - 0 1 1 0 -$EndComp -Text GLabel 1200 2350 0 50 Input ~ 0 -CS1 -Text GLabel 1100 1800 0 50 Input ~ 0 -EN -Wire Wire Line - 1400 1800 1100 1800 -Wire Wire Line - 1400 2350 1200 2350 -$Comp -L power:+3.3V #PWR0118 -U 1 1 60864F25 -P 2000 2250 -F 0 "#PWR0118" H 2000 2100 50 0001 C CNN -F 1 "+3.3V" H 2015 2423 50 0000 C CNN -F 2 "" H 2000 2250 50 0001 C CNN -F 3 "" H 2000 2250 50 0001 C CNN - 1 2000 2250 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0120 -U 1 1 60866B06 -P 2000 1700 -F 0 "#PWR0120" H 2000 1550 50 0001 C CNN -F 1 "+3.3V" H 2015 1873 50 0000 C CNN -F 2 "" H 2000 1700 50 0001 C CNN -F 3 "" H 2000 1700 50 0001 C CNN - 1 2000 1700 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0121 -U 1 1 608670B9 -P 2000 2900 -F 0 "#PWR0121" H 2000 2650 50 0001 C CNN -F 1 "GND" H 2005 2727 50 0000 C CNN -F 2 "" H 2000 2900 50 0001 C CNN -F 3 "" H 2000 2900 50 0001 C CNN - 1 2000 2900 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1700 2350 2000 2350 -Wire Wire Line - 2000 2350 2000 2250 -Wire Wire Line - 1700 1800 2000 1800 -Wire Wire Line - 2000 1800 2000 1700 -Wire Wire Line - 2000 2800 2000 2900 -Wire Wire Line - 1700 2800 2000 2800 -Text GLabel 4200 1900 2 50 Input ~ 0 -FLSH -Text GLabel 4200 2100 2 50 Input ~ 0 -CS1 -Text GLabel 4200 2000 2 50 Input ~ 0 -TXD0 -Text GLabel 5950 4700 2 50 Input ~ 0 -TXD0 -$Comp -L Device:R R9 -U 1 1 6088365F -P 6600 4800 -F 0 "R9" V 6393 4800 50 0000 C CNN -F 1 "470Ohm" V 6484 4800 50 0000 C CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 6530 4800 50 0001 C CNN -F 3 "~" H 6600 4800 50 0001 C CNN -F 4 "C23179" H 6600 4800 50 0001 C CNN "LCSC" - 1 6600 4800 - 0 1 1 0 -$EndComp -Wire Wire Line - 6450 4800 5950 4800 -Text GLabel 7000 4800 2 50 Input ~ 0 -RXD0 -Wire Wire Line - 7000 4800 6750 4800 -Text GLabel 5950 5000 2 50 Input ~ 0 -DTR -Text GLabel 5950 4600 2 50 Input ~ 0 -RTS -Text GLabel 4200 2200 2 50 Input ~ 0 -RXD0 -Wire Wire Line - 5950 4900 6300 4900 -Wire Wire Line - 5950 5100 6300 5100 -Wire Wire Line - 5950 5200 6300 5200 -Wire Wire Line - 5950 5400 6300 5400 -NoConn ~ 6300 5400 -NoConn ~ 6300 5200 -NoConn ~ 6300 5100 -NoConn ~ 6300 4900 -Wire Wire Line - 5950 4500 6300 4500 -NoConn ~ 6300 4500 -NoConn ~ 3000 2600 -Text GLabel 3000 2300 0 50 Input ~ 0 -ADC -Text GLabel 9950 1800 0 50 Input ~ 0 -ADC -Text GLabel 4200 2700 2 50 Input ~ 0 -SCLK -Text GLabel 4200 2600 2 50 Input ~ 0 -MOSI -$Comp -L Device:LED_Small D5 -U 1 1 6091A73E -P 8500 1600 -F 0 "D5" V 8546 1530 50 0000 R CNN -F 1 "RED" V 8455 1530 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 8500 1600 50 0001 C CNN -F 3 "~" V 8500 1600 50 0001 C CNN -F 4 "C2286" H 8500 1600 50 0001 C CNN "LCSC" - 1 8500 1600 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R R15 -U 1 1 60920300 -P 10050 1550 -F 0 "R15" H 9980 1504 50 0000 R CNN -F 1 "12kOhm" H 9980 1595 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 9980 1550 50 0001 C CNN -F 3 "~" H 10050 1550 50 0001 C CNN -F 4 "C22790" H 10050 1550 50 0001 C CNN "LCSC" - 1 10050 1550 - -1 0 0 1 -$EndComp -$Comp -L Device:R R16 -U 1 1 609222D7 -P 10050 2050 -F 0 "R16" H 9980 2004 50 0000 R CNN -F 1 "1kOhm" H 9980 2095 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 9980 2050 50 0001 C CNN -F 3 "~" H 10050 2050 50 0001 C CNN -F 4 "C21190" H 10050 2050 50 0001 C CNN "LCSC" - 1 10050 2050 - -1 0 0 1 -$EndComp -$Comp -L power:GND #PWR0127 -U 1 1 60951D2F -P 10050 2300 -F 0 "#PWR0127" H 10050 2050 50 0001 C CNN -F 1 "GND" H 10055 2127 50 0000 C CNN -F 2 "" H 10050 2300 50 0001 C CNN -F 3 "" H 10050 2300 50 0001 C CNN - 1 10050 2300 - 1 0 0 -1 -$EndComp -Wire Wire Line - 10050 2300 10050 2200 -Wire Wire Line - 10050 1900 10050 1800 -Wire Wire Line - 9950 1800 10050 1800 -Connection ~ 10050 1800 -Wire Wire Line - 10050 1800 10050 1700 -Wire Wire Line - 10050 1400 10050 1300 -Wire Wire Line - 10050 1300 9950 1300 -$Comp -L Device:R R13 -U 1 1 6097C99D -P 8500 2050 -F 0 "R13" H 8430 2004 50 0000 R CNN -F 1 "51Ohm" H 8430 2095 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 8430 2050 50 0001 C CNN -F 3 "~" H 8500 2050 50 0001 C CNN -F 4 "C23197" H 8500 2050 50 0001 C CNN "LCSC" - 1 8500 2050 - -1 0 0 1 -$EndComp -Wire Wire Line - 8500 1400 8500 1500 -$Comp -L power:GND #PWR0128 -U 1 1 60982E39 -P 8500 2700 -F 0 "#PWR0128" H 8500 2450 50 0001 C CNN -F 1 "GND" H 8505 2527 50 0000 C CNN -F 2 "" H 8500 2700 50 0001 C CNN -F 3 "" H 8500 2700 50 0001 C CNN - 1 8500 2700 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0129 -U 1 1 6098329B -P 7350 2700 -F 0 "#PWR0129" H 7350 2450 50 0001 C CNN -F 1 "GND" H 7355 2527 50 0000 C CNN -F 2 "" H 7350 2700 50 0001 C CNN -F 3 "" H 7350 2700 50 0001 C CNN - 1 7350 2700 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R14 -U 1 1 609BD20C -P 8500 2450 -F 0 "R14" H 8430 2404 50 0000 R CNN -F 1 "51Ohm" H 8430 2495 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 8430 2450 50 0001 C CNN -F 3 "~" H 8500 2450 50 0001 C CNN -F 4 "C23197" H 8500 2450 50 0001 C CNN "LCSC" - 1 8500 2450 - -1 0 0 1 -$EndComp -Text GLabel 8600 1800 2 50 Input ~ 0 -SEN_5V -Wire Wire Line - 8500 1700 8500 1800 -Wire Wire Line - 8600 1800 8500 1800 -Connection ~ 8500 1800 -Wire Wire Line - 8500 1800 8500 1900 -Wire Wire Line - 8500 2200 8500 2300 -Wire Wire Line - 8500 2600 8500 2700 -$Comp -L Device:R R11 -U 1 1 609F31E2 -P 7350 1600 -F 0 "R11" H 7280 1554 50 0000 R CNN -F 1 "470Ohm" H 7280 1645 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 7280 1600 50 0001 C CNN -F 3 "~" H 7350 1600 50 0001 C CNN -F 4 "C23179" H 7350 1600 50 0001 C CNN "LCSC" - 1 7350 1600 - -1 0 0 1 -$EndComp -$Comp -L Device:R R12 -U 1 1 609FC807 -P 7350 2050 -F 0 "R12" H 7280 2004 50 0000 R CNN -F 1 "51Ohm" H 7280 2095 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 7280 2050 50 0001 C CNN -F 3 "~" H 7350 2050 50 0001 C CNN -F 4 "C23197" H 7350 2050 50 0001 C CNN "LCSC" - 1 7350 2050 - -1 0 0 1 -$EndComp -Text GLabel 7450 1800 2 50 Input ~ 0 -SEN_12V -$Comp -L Device:LED_Small D4 -U 1 1 60A1BE9D -P 7350 2450 -F 0 "D4" V 7396 2380 50 0000 R CNN -F 1 "RED" V 7305 2380 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 7350 2450 50 0001 C CNN -F 3 "~" V 7350 2450 50 0001 C CNN -F 4 "C2286" H 7350 2450 50 0001 C CNN "LCSC" - 1 7350 2450 - 0 -1 -1 0 -$EndComp -Wire Wire Line - 7350 1750 7350 1800 -Wire Wire Line - 7450 1800 7350 1800 -Connection ~ 7350 1800 -Wire Wire Line - 7350 1800 7350 1900 -Wire Wire Line - 7350 1400 7350 1450 -Wire Wire Line - 7350 2200 7350 2350 -Wire Wire Line - 7350 2550 7350 2700 -NoConn ~ 5000 2900 -$Comp -L power:+3.3V #PWR0140 -U 1 1 60AFA7AB -P 3600 1700 -F 0 "#PWR0140" H 3600 1550 50 0001 C CNN -F 1 "+3.3V" H 3615 1873 50 0000 C CNN -F 2 "" H 3600 1700 50 0001 C CNN -F 3 "" H 3600 1700 50 0001 C CNN - 1 3600 1700 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0141 -U 1 1 60AFADF5 -P 3600 3200 -F 0 "#PWR0141" H 3600 2950 50 0001 C CNN -F 1 "GND" H 3605 3027 50 0000 C CNN -F 2 "" H 3600 3200 50 0001 C CNN -F 3 "" H 3600 3200 50 0001 C CNN - 1 3600 3200 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5700 2550 5700 2700 -$Comp -L power:GND #PWR0131 -U 1 1 6098FB62 -P 5700 2700 -F 0 "#PWR0131" H 5700 2450 50 0001 C CNN -F 1 "GND" H 5705 2527 50 0000 C CNN -F 2 "" H 5700 2700 50 0001 C CNN -F 3 "" H 5700 2700 50 0001 C CNN - 1 5700 2700 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5700 2100 5700 2350 -Wire Wire Line - 5700 1700 5700 1800 -Wire Wire Line - 5600 1700 5700 1700 -$Comp -L Device:R R8 -U 1 1 6098FB4A -P 5700 1950 -F 0 "R8" H 5630 1904 50 0000 R CNN -F 1 "51Ohm" H 5630 1995 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 5630 1950 50 0001 C CNN -F 3 "~" H 5700 1950 50 0001 C CNN -F 4 "C23197" H 5700 1950 50 0001 C CNN "LCSC" - 1 5700 1950 - -1 0 0 1 -$EndComp -$Comp -L Device:LED_Small D2 -U 1 1 6098FB3C -P 5700 2450 -F 0 "D2" V 5746 2380 50 0000 R CNN -F 1 "RED" V 5655 2380 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 5700 2450 50 0001 C CNN -F 3 "~" V 5700 2450 50 0001 C CNN -F 4 "C2286" H 5700 2450 50 0001 C CNN "LCSC" - 1 5700 2450 - 0 -1 -1 0 -$EndComp -Text GLabel 8450 3550 0 50 Input ~ 0 -TXD0 -$Comp -L Connector:Conn_01x04_Male J2 -U 1 1 60B13D6D -P 8650 3650 -F 0 "J2" H 8622 3532 50 0000 R CNN -F 1 "Conn_01x04_Male" H 8622 3623 50 0000 R CNN -F 2 "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" H 8650 3650 50 0001 C CNN -F 3 "~" H 8650 3650 50 0001 C CNN - 1 8650 3650 - -1 0 0 1 -$EndComp -Wire Wire Line - 8350 3750 8350 3850 -Wire Wire Line - 8450 3750 8350 3750 -$Comp -L power:GND #PWR0126 -U 1 1 608F6161 -P 8350 3850 -F 0 "#PWR0126" H 8350 3600 50 0001 C CNN -F 1 "GND" H 8355 3677 50 0000 C CNN -F 2 "" H 8350 3850 50 0001 C CNN -F 3 "" H 8350 3850 50 0001 C CNN - 1 8350 3850 - 1 0 0 -1 -$EndComp -Text GLabel 8450 3650 0 50 Input ~ 0 -RXD0 -Text GLabel 9950 1300 0 50 Input ~ 0 -VOUT -Wire Wire Line - 6500 2550 6500 2700 -$Comp -L power:GND #PWR0130 -U 1 1 6098FB5C -P 6500 2700 -F 0 "#PWR0130" H 6500 2450 50 0001 C CNN -F 1 "GND" H 6505 2527 50 0000 C CNN -F 2 "" H 6500 2700 50 0001 C CNN -F 3 "" H 6500 2700 50 0001 C CNN - 1 6500 2700 - 1 0 0 -1 -$EndComp -Wire Wire Line - 6500 2100 6500 2350 -Wire Wire Line - 6500 1700 6500 1800 -Wire Wire Line - 6400 1700 6500 1700 -$Comp -L Device:R R10 -U 1 1 6098FB50 -P 6500 1950 -F 0 "R10" H 6430 1904 50 0000 R CNN -F 1 "51Ohm" H 6430 1995 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 6430 1950 50 0001 C CNN -F 3 "~" H 6500 1950 50 0001 C CNN -F 4 "C23197" H 6500 1950 50 0001 C CNN "LCSC" - 1 6500 1950 - -1 0 0 1 -$EndComp -$Comp -L Device:LED_Small D3 -U 1 1 6098FB42 -P 6500 2450 -F 0 "D3" V 6546 2380 50 0000 R CNN -F 1 "RED" V 6455 2380 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 6500 2450 50 0001 C CNN -F 3 "~" V 6500 2450 50 0001 C CNN -F 4 "C2286" H 6500 2450 50 0001 C CNN "LCSC" - 1 6500 2450 - 0 -1 -1 0 -$EndComp -Text GLabel 8450 3450 0 50 Input ~ 0 -VOUT -Wire Wire Line - 8350 5650 8350 5750 -Wire Wire Line - 8450 5650 8350 5650 -$Comp -L power:GND #PWR0122 -U 1 1 608C9312 -P 8350 5750 -F 0 "#PWR0122" H 8350 5500 50 0001 C CNN -F 1 "GND" H 8355 5577 50 0000 C CNN -F 2 "" H 8350 5750 50 0001 C CNN -F 3 "" H 8350 5750 50 0001 C CNN - 1 8350 5750 - 1 0 0 -1 -$EndComp -Text GLabel 8450 5450 0 50 Input ~ 0 -SCLK -Text GLabel 8450 5550 0 50 Input ~ 0 -MOSI -Text GLabel 8450 5350 0 50 Input ~ 0 -VOUT -$Comp -L Connector:Conn_01x04_Male J4 -U 1 1 608BFA99 -P 8650 5550 -F 0 "J4" H 8622 5432 50 0000 R CNN -F 1 "Conn_01x04_Male" H 8622 5523 50 0000 R CNN -F 2 "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" H 8650 5550 50 0001 C CNN -F 3 "~" H 8650 5550 50 0001 C CNN - 1 8650 5550 - -1 0 0 1 -$EndComp -$Comp -L power:+5V #PWR0106 -U 1 1 608B3C6C -P 4300 4700 -F 0 "#PWR0106" H 4300 4550 50 0001 C CNN -F 1 "+5V" H 4315 4873 50 0000 C CNN -F 2 "" H 4300 4700 50 0001 C CNN -F 3 "" H 4300 4700 50 0001 C CNN - 1 4300 4700 - 1 0 0 -1 -$EndComp -$Comp -L power:+5V #PWR0107 -U 1 1 608B502F -P 8500 1400 -F 0 "#PWR0107" H 8500 1250 50 0001 C CNN -F 1 "+5V" H 8515 1573 50 0000 C CNN -F 2 "" H 8500 1400 50 0001 C CNN -F 3 "" H 8500 1400 50 0001 C CNN - 1 8500 1400 - 1 0 0 -1 -$EndComp -$Comp -L power:+12V #PWR0115 -U 1 1 608BFB7C -P 7350 1400 -F 0 "#PWR0115" H 7350 1250 50 0001 C CNN -F 1 "+12V" H 7365 1573 50 0000 C CNN -F 2 "" H 7350 1400 50 0001 C CNN -F 3 "" H 7350 1400 50 0001 C CNN - 1 7350 1400 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x02_Male J8 -U 1 1 608FF8C5 -P 3600 1100 -F 0 "J8" H 3572 982 50 0000 R CNN -F 1 "Conn_01x02_Male" H 3572 1073 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 3600 1100 50 0001 C CNN -F 3 "~" H 3600 1100 50 0001 C CNN - 1 3600 1100 - -1 0 0 1 -$EndComp -Text GLabel 1100 1250 0 50 Input ~ 0 -ADC -$Comp -L Connector:Conn_01x01_Female J7 -U 1 1 60971CC4 -P 1300 1250 -F 0 "J7" H 1328 1276 50 0000 L CNN -F 1 "Testpoint_ADC" H 1328 1185 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 1300 1250 50 0001 C CNN -F 3 "~" H 1300 1250 50 0001 C CNN - 1 1300 1250 - 1 0 0 -1 -$EndComp -Wire Wire Line - 4100 5200 4500 5200 -NoConn ~ 4500 5200 -$Comp -L Mechanical:MountingHole_Pad H1 -U 1 1 60A2A45B -P 3600 6350 -F 0 "H1" V 3554 6500 50 0000 L CNN -F 1 "MountingHole_Pad" V 3645 6500 50 0000 L CNN -F 2 "MountingHole:MountingHole_2.2mm_M2_Pad_Via" H 3600 6350 50 0001 C CNN -F 3 "~" H 3600 6350 50 0001 C CNN - 1 3600 6350 - 0 1 1 0 -$EndComp -$Comp -L Mechanical:MountingHole_Pad H2 -U 1 1 60A2B21E -P 3600 6550 -F 0 "H2" V 3554 6700 50 0000 L CNN -F 1 "MountingHole_Pad" V 3645 6700 50 0000 L CNN -F 2 "MountingHole:MountingHole_2.2mm_M2_Pad_Via" H 3600 6550 50 0001 C CNN -F 3 "~" H 3600 6550 50 0001 C CNN - 1 3600 6550 - 0 1 1 0 -$EndComp -$Comp -L Mechanical:MountingHole_Pad H3 -U 1 1 60A2BB4B -P 3600 6750 -F 0 "H3" V 3554 6900 50 0000 L CNN -F 1 "MountingHole_Pad" V 3645 6900 50 0000 L CNN -F 2 "MountingHole:MountingHole_2.2mm_M2_Pad_Via" H 3600 6750 50 0001 C CNN -F 3 "~" H 3600 6750 50 0001 C CNN - 1 3600 6750 - 0 1 1 0 -$EndComp -$Comp -L Mechanical:MountingHole_Pad H4 -U 1 1 60A2C3E0 -P 3600 6950 -F 0 "H4" V 3554 7100 50 0000 L CNN -F 1 "MountingHole_Pad" V 3645 7100 50 0000 L CNN -F 2 "MountingHole:MountingHole_2.2mm_M2_Pad_Via" H 3600 6950 50 0001 C CNN -F 3 "~" H 3600 6950 50 0001 C CNN - 1 3600 6950 - 0 1 1 0 -$EndComp -$Comp -L power:GND #PWR0148 -U 1 1 60A2D214 -P 3400 7050 -F 0 "#PWR0148" H 3400 6800 50 0001 C CNN -F 1 "GND" H 3405 6877 50 0000 C CNN -F 2 "" H 3400 7050 50 0001 C CNN -F 3 "" H 3400 7050 50 0001 C CNN - 1 3400 7050 - 1 0 0 -1 -$EndComp -Wire Wire Line - 3500 6350 3400 6350 -Wire Wire Line - 3400 6350 3400 6550 -Wire Wire Line - 3500 6550 3400 6550 -Connection ~ 3400 6550 -Wire Wire Line - 3400 6550 3400 6750 -Wire Wire Line - 3500 6750 3400 6750 -Connection ~ 3400 6750 -Wire Wire Line - 3400 6750 3400 6950 -Wire Wire Line - 3500 6950 3400 6950 -Connection ~ 3400 6950 -Wire Wire Line - 3400 6950 3400 7050 -$Comp -L RF_Module:ESP-12E U1 -U 1 1 6091C48A -P 3600 2500 -F 0 "U1" H 3600 3481 50 0000 C CNN -F 1 "ESP-12E" H 3600 3390 50 0000 C CNN -F 2 "RF_Module:ESP-12E" H 3600 2500 50 0001 C CNN -F 3 "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" H 3250 2600 50 0001 C CNN - 1 3600 2500 - 1 0 0 -1 -$EndComp -Wire Wire Line - 8350 4900 8350 5000 -Wire Wire Line - 8450 4900 8350 4900 -$Comp -L power:GND #PWR0150 -U 1 1 6091EC83 -P 8350 5000 -F 0 "#PWR0150" H 8350 4750 50 0001 C CNN -F 1 "GND" H 8355 4827 50 0000 C CNN -F 2 "" H 8350 5000 50 0001 C CNN -F 3 "" H 8350 5000 50 0001 C CNN - 1 8350 5000 - 1 0 0 -1 -$EndComp -Text GLabel 8450 4500 0 50 Input ~ 0 -SCLK -Text GLabel 8450 4600 0 50 Input ~ 0 -MOSI -Text GLabel 8450 4400 0 50 Input ~ 0 -VOUT -Text GLabel 5600 1700 0 50 Input ~ 0 -GPIO4 -Text GLabel 3400 1100 0 50 Input ~ 0 -GPIO4 -Text GLabel 6400 1700 0 50 Input ~ 0 -GPIO5 -Text GLabel 3400 1000 0 50 Input ~ 0 -GPIO5 -$Comp -L Device:Q_NPN_BEC Q2 -U 1 1 60AA4E39 -P 1500 7000 -F 0 "Q2" H 1691 6954 50 0000 L CNN -F 1 "S8050" H 1691 7045 50 0000 L CNN -F 2 "Package_TO_SOT_SMD:SOT-23" H 1700 7100 50 0001 C CNN -F 3 "http://www.unisonic.com.tw/datasheet/S8050.pdf" H 1500 7000 50 0001 C CNN -F 4 "C2146" H 1500 7000 50 0001 C CNN "LCSC" - 1 1500 7000 - -1 0 0 1 -$EndComp -$Comp -L Device:Q_NPN_BEC Q1 -U 1 1 60AA76E5 -P 1500 6150 -F 0 "Q1" H 1691 6196 50 0000 L CNN -F 1 "S8050" H 1691 6105 50 0000 L CNN -F 2 "Package_TO_SOT_SMD:SOT-23" H 1700 6250 50 0001 C CNN -F 3 "http://www.unisonic.com.tw/datasheet/S8050.pdf" H 1500 6150 50 0001 C CNN -F 4 "C2146" H 1500 6150 50 0001 C CNN "LCSC" - 1 1500 6150 - -1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x01_Female J6 -U 1 1 609717CF -P 1300 950 -F 0 "J6" H 1328 976 50 0000 L CNN -F 1 "Testpoint_RST" H 1328 885 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 1300 950 50 0001 C CNN -F 3 "~" H 1300 950 50 0001 C CNN - 1 1300 950 - 1 0 0 -1 -$EndComp -Text GLabel 1100 950 0 50 Input ~ 0 -nRST -$Comp -L Connector:Conn_01x01_Female J14 -U 1 1 60ABDD61 -P 1300 650 -F 0 "J14" H 1328 676 50 0000 L CNN -F 1 "Testpoint_RST" H 1328 585 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 1300 650 50 0001 C CNN -F 3 "~" H 1300 650 50 0001 C CNN - 1 1300 650 - 1 0 0 -1 -$EndComp -Text GLabel 1100 650 0 50 Input ~ 0 -FLSH -$Comp -L Switch:SW_Push SW1 -U 1 1 60AAD571 -P 1600 4900 -F 0 "SW1" V 1554 5048 50 0000 L CNN -F 1 "SW_Push" V 1645 5048 50 0000 L CNN -F 2 "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" H 1600 5100 50 0001 C CNN -F 3 "~" H 1600 5100 50 0001 C CNN - 1 1600 4900 - 0 1 1 0 -$EndComp -$Comp -L power:GND #PWR0114 -U 1 1 607EDC45 -P 3700 5400 -F 0 "#PWR0114" H 3700 5150 50 0001 C CNN -F 1 "GND" H 3705 5227 50 0000 C CNN -F 2 "" H 3700 5400 50 0001 C CNN -F 3 "" H 3700 5400 50 0001 C CNN - 1 3700 5400 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0113 -U 1 1 607ED641 -P 3800 5400 -F 0 "#PWR0113" H 3800 5150 50 0001 C CNN -F 1 "GND" H 3805 5227 50 0000 C CNN -F 2 "" H 3800 5400 50 0001 C CNN -F 3 "" H 3800 5400 50 0001 C CNN - 1 3800 5400 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0119 -U 1 1 60B37023 -P 1600 5100 -F 0 "#PWR0119" H 1600 4850 50 0001 C CNN -F 1 "GND" H 1605 4927 50 0000 C CNN -F 2 "" H 1600 5100 50 0001 C CNN -F 3 "" H 1600 5100 50 0001 C CNN - 1 1600 5100 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1600 4700 1600 4600 -Wire Wire Line - 1600 4600 1200 4600 -$Comp -L power:GND #PWR0151 -U 1 1 60B5BFFC -P 2550 5100 -F 0 "#PWR0151" H 2550 4850 50 0001 C CNN -F 1 "GND" H 2555 4927 50 0000 C CNN -F 2 "" H 2550 5100 50 0001 C CNN -F 3 "" H 2550 5100 50 0001 C CNN - 1 2550 5100 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0152 -U 1 1 60B5C002 -P 2550 4100 -F 0 "#PWR0152" H 2550 3950 50 0001 C CNN -F 1 "+3.3V" H 2565 4273 50 0000 C CNN -F 2 "" H 2550 4100 50 0001 C CNN -F 3 "" H 2550 4100 50 0001 C CNN - 1 2550 4100 - 1 0 0 -1 -$EndComp -$Comp -L Device:C C9 -U 1 1 60B5C010 -P 2550 4850 -AR Path="/60B5C010" Ref="C9" Part="1" -AR Path="/6078273A/60B5C010" Ref="C?" Part="1" -F 0 "C9" H 2665 4896 50 0000 L CNN -F 1 "100nF" H 2665 4805 50 0000 L CNN -F 2 "Capacitor_SMD:C_0603_1608Metric" H 2588 4700 50 0001 C CNN -F 3 "~" H 2550 4850 50 0001 C CNN -F 4 "C14663" H 2550 4850 50 0001 C CNN "LCSC" - 1 2550 4850 - 1 0 0 -1 -$EndComp -Wire Wire Line - 2550 4100 2550 4200 -Wire Wire Line - 2550 4500 2550 4600 -Connection ~ 2550 4600 -Wire Wire Line - 2550 4600 2550 4700 -Wire Wire Line - 2550 5000 2550 5100 -Wire Wire Line - 2350 4600 2550 4600 -$Comp -L Switch:SW_Push SW2 -U 1 1 60B5C01C -P 2950 4900 -F 0 "SW2" V 2904 5048 50 0000 L CNN -F 1 "SW_Push" V 2995 5048 50 0000 L CNN -F 2 "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" H 2950 5100 50 0001 C CNN -F 3 "~" H 2950 5100 50 0001 C CNN - 1 2950 4900 - 0 1 1 0 -$EndComp -$Comp -L power:GND #PWR0153 -U 1 1 60B5C022 -P 2950 5100 -F 0 "#PWR0153" H 2950 4850 50 0001 C CNN -F 1 "GND" H 2955 4927 50 0000 C CNN -F 2 "" H 2950 5100 50 0001 C CNN -F 3 "" H 2950 5100 50 0001 C CNN - 1 2950 5100 - 1 0 0 -1 -$EndComp -Wire Wire Line - 2950 4700 2950 4600 -Wire Wire Line - 2950 4600 2550 4600 -Text GLabel 2350 4600 0 50 Input ~ 0 -FLSH -Text Notes 4550 2900 0 50 ~ 0 -do not use -Wire Wire Line - 5000 2900 4200 2900 -NoConn ~ 3000 2900 -NoConn ~ 3000 3000 -NoConn ~ 4200 2500 -$Comp -L Device:LED_Small D9 -U 1 1 60BE9E4B -P 6400 6100 -F 0 "D9" V 6446 6030 50 0000 R CNN -F 1 "RED" V 6355 6030 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 6400 6100 50 0001 C CNN -F 3 "~" V 6400 6100 50 0001 C CNN -F 4 "C2286" H 6400 6100 50 0001 C CNN "LCSC" - 1 6400 6100 - 1 0 0 -1 -$EndComp -$Comp -L Device:LED_Small D10 -U 1 1 60BEE99B -P 6600 6200 -F 0 "D10" V 6646 6130 50 0000 R CNN -F 1 "RED" V 6555 6130 50 0000 R CNN -F 2 "LED_SMD:LED_0603_1608Metric" V 6600 6200 50 0001 C CNN -F 3 "~" V 6600 6200 50 0001 C CNN -F 4 "C2286" H 6600 6200 50 0001 C CNN "LCSC" - 1 6600 6200 - 1 0 0 -1 -$EndComp -$Comp -L Device:R R17 -U 1 1 60BF97A0 -P 6850 6100 -F 0 "R17" H 6780 6054 50 0000 R CNN -F 1 "51Ohm" H 6780 6145 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 6780 6100 50 0001 C CNN -F 3 "~" H 6850 6100 50 0001 C CNN -F 4 "C23197" H 6850 6100 50 0001 C CNN "LCSC" - 1 6850 6100 - 0 -1 -1 0 -$EndComp -$Comp -L Device:R R18 -U 1 1 60BFE0F3 -P 7150 6200 -F 0 "R18" H 7080 6154 50 0000 R CNN -F 1 "51Ohm" H 7080 6245 50 0000 R CNN -F 2 "Resistor_SMD:R_0603_1608Metric" V 7080 6200 50 0001 C CNN -F 3 "~" H 7150 6200 50 0001 C CNN -F 4 "C23197" H 7150 6200 50 0001 C CNN "LCSC" - 1 7150 6200 - 0 -1 -1 0 -$EndComp -$Comp -L power:+3.3V #PWR0154 -U 1 1 60BFE99B -P 7400 6000 -F 0 "#PWR0154" H 7400 5850 50 0001 C CNN -F 1 "+3.3V" H 7450 6150 50 0000 C CNN -F 2 "" H 7400 6000 50 0001 C CNN -F 3 "" H 7400 6000 50 0001 C CNN - 1 7400 6000 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5950 6100 6300 6100 -Wire Wire Line - 5950 6200 6500 6200 -Wire Wire Line - 6500 6100 6700 6100 -Wire Wire Line - 6700 6200 7000 6200 -Wire Wire Line - 7000 6100 7400 6100 -Wire Wire Line - 7400 6100 7400 6000 -Wire Wire Line - 7300 6200 7400 6200 -Wire Wire Line - 7400 6200 7400 6100 -Connection ~ 7400 6100 -Text Label 6000 6100 0 50 ~ 0 -TXLED -Text Label 6000 6200 0 50 ~ 0 -RXLED -Text GLabel 7200 3550 0 50 Input ~ 0 -TXD0 -$Comp -L Connector:Conn_01x04_Male J15 -U 1 1 60C2CB6F -P 7400 3650 -F 0 "J15" H 7372 3532 50 0000 R CNN -F 1 "Conn_01x04_Male" H 7372 3623 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 7400 3650 50 0001 C CNN -F 3 "~" H 7400 3650 50 0001 C CNN - 1 7400 3650 - -1 0 0 1 -$EndComp -Wire Wire Line - 7100 3750 7100 3850 -Wire Wire Line - 7200 3750 7100 3750 -$Comp -L power:GND #PWR0155 -U 1 1 60C2CB77 -P 7100 3850 -F 0 "#PWR0155" H 7100 3600 50 0001 C CNN -F 1 "GND" H 7105 3677 50 0000 C CNN -F 2 "" H 7100 3850 50 0001 C CNN -F 3 "" H 7100 3850 50 0001 C CNN - 1 7100 3850 - 1 0 0 -1 -$EndComp -Text GLabel 7200 3650 0 50 Input ~ 0 -RXD0 -Text GLabel 7200 3450 0 50 Input ~ 0 -VOUT -$Comp -L Connector:Conn_01x01_Female J16 -U 1 1 60C8A000 -P 10150 4500 -F 0 "J16" H 10178 4526 50 0000 L CNN -F 1 "Testpoint_RST" H 10178 4435 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 10150 4500 50 0001 C CNN -F 3 "~" H 10150 4500 50 0001 C CNN - 1 10150 4500 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x01_Female J17 -U 1 1 60C915D4 -P 10150 4700 -F 0 "J17" H 10178 4726 50 0000 L CNN -F 1 "Testpoint_RST" H 10178 4635 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 10150 4700 50 0001 C CNN -F 3 "~" H 10150 4700 50 0001 C CNN - 1 10150 4700 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x01_Female J18 -U 1 1 60C91CA2 -P 10150 4900 -F 0 "J18" H 10178 4926 50 0000 L CNN -F 1 "Testpoint_RST" H 10178 4835 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 10150 4900 50 0001 C CNN -F 3 "~" H 10150 4900 50 0001 C CNN - 1 10150 4900 - 1 0 0 -1 -$EndComp -Text GLabel 9950 4500 0 50 Input ~ 0 -SCLK -Text GLabel 9950 4700 0 50 Input ~ 0 -MOSI -Text GLabel 9950 4900 0 50 Input ~ 0 -CS0 -$Comp -L Connector:Conn_01x01_Female J19 -U 1 1 60CD9446 -P 10150 5450 -F 0 "J19" H 10178 5476 50 0000 L CNN -F 1 "Testpoint_RST" H 10178 5385 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 10150 5450 50 0001 C CNN -F 3 "~" H 10150 5450 50 0001 C CNN - 1 10150 5450 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x01_Female J20 -U 1 1 60CD9BDE -P 10150 5650 -F 0 "J20" H 10178 5676 50 0000 L CNN -F 1 "Testpoint_RST" H 10178 5585 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 10150 5650 50 0001 C CNN -F 3 "~" H 10150 5650 50 0001 C CNN - 1 10150 5650 - 1 0 0 -1 -$EndComp -Text GLabel 9950 5450 0 50 Input ~ 0 -TXD0 -Text GLabel 9950 5650 0 50 Input ~ 0 -RXD0 -NoConn ~ 3000 2500 -Text GLabel 8450 4700 0 50 Input ~ 0 -CS1 -Text GLabel 1250 2800 0 50 Input ~ 0 -CS0 -Text GLabel 4200 2800 2 50 Input ~ 0 -CS0 -NoConn ~ 3000 2700 -NoConn ~ 3000 2800 -Text Notes 2950 3050 1 50 ~ 0 -used in flash qio -Text GLabel 4200 2300 2 50 Input ~ 0 -GPIO4 -Text GLabel 4200 2400 2 50 Input ~ 0 -GPIO5 -$Comp -L Connector:Conn_01x06_Male J13 -U 1 1 60B28A8C -P 8650 4700 -F 0 "J13" H 8622 4582 50 0000 R CNN -F 1 "Conn_01x06_Male" H 8622 4673 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 8650 4700 50 0001 C CNN -F 3 "~" H 8650 4700 50 0001 C CNN - 1 8650 4700 - -1 0 0 1 -$EndComp -Text GLabel 8450 4800 0 50 Input ~ 0 -CS0 -$Comp -L Device:R R19 -U 1 1 60B3ABAC -P 5700 1450 -F 0 "R19" H 5630 1404 50 0000 R CNN -F 1 "0Ohm" H 5630 1495 50 0000 R CNN -F 2 "Resistor_SMD:R_0805_2012Metric" V 5630 1450 50 0001 C CNN -F 3 "~" H 5700 1450 50 0001 C CNN -F 4 "C17477" H 5700 1450 50 0001 C CNN "LCSC" - 1 5700 1450 - -1 0 0 1 -$EndComp -Text GLabel 5650 1200 0 50 Input ~ 0 -SEN_5V -$Comp -L Device:R R20 -U 1 1 60B3C5A7 -P 6500 1450 -F 0 "R20" H 6430 1404 50 0000 R CNN -F 1 "0Ohm" H 6430 1495 50 0000 R CNN -F 2 "Resistor_SMD:R_0805_2012Metric" V 6430 1450 50 0001 C CNN -F 3 "~" H 6500 1450 50 0001 C CNN -F 4 "C17477" H 6500 1450 50 0001 C CNN "LCSC" - 1 6500 1450 - -1 0 0 1 -$EndComp -Text GLabel 6450 1200 0 50 Input ~ 0 -SEN_12V -Wire Wire Line - 6500 1300 6500 1200 -Wire Wire Line - 6500 1200 6450 1200 -Wire Wire Line - 6500 1700 6500 1600 -Connection ~ 6500 1700 -Wire Wire Line - 5700 1700 5700 1600 -Connection ~ 5700 1700 -Wire Wire Line - 5700 1300 5700 1200 -Wire Wire Line - 5700 1200 5650 1200 -$EndSCHEMATC diff --git a/pcb/hw_test/hw_test.kicad_pcb b/pcb/hw_test/hw_test.kicad_pcb new file mode 100644 index 0000000..0ac69ad --- /dev/null +++ b/pcb/hw_test/hw_test.kicad_pcb @@ -0,0 +1,3680 @@ +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "GND") + (net 2 "SWDIO") + (net 3 "SWCLK") + (net 4 "SIG_R") + (net 5 "SIG_G") + (net 6 "SIG_B") + (net 7 "+3V3") + (net 8 "nRST") + (net 9 "~{INT}") + (net 10 "FLSH") + (net 11 "~{BUSRST}") + (net 12 "/Power/LDO_IN") + (net 13 "+5V") + (net 14 "Net-(D1-Pad2)") + (net 15 "+12V") + (net 16 "ADC") + (net 17 "RXD0") + (net 18 "TXD0") + (net 19 "VOUT") + (net 20 "MOSI") + (net 21 "SCLK") + (net 22 "MISO") + (net 23 "CS0") + (net 24 "SWIM") + (net 25 "Net-(Q1-Pad1)") + (net 26 "RTS") + (net 27 "Net-(Q2-Pad1)") + (net 28 "DTR") + (net 29 "EN") + (net 30 "unconnected-(U1-Pad4)") + (net 31 "unconnected-(U1-Pad9)") + (net 32 "unconnected-(U1-Pad10)") + (net 33 "unconnected-(U1-Pad11)") + (net 34 "unconnected-(U1-Pad12)") + (net 35 "unconnected-(U1-Pad13)") + (net 36 "unconnected-(U1-Pad14)") + (net 37 "unconnected-(U3-Pad1)") + (net 38 "unconnected-(U3-Pad2)") + (net 39 "unconnected-(U3-Pad16)") + (net 40 "unconnected-(U3-Pad18)") + (net 41 "unconnected-(U3-Pad19)") + (net 42 "unconnected-(U3-Pad28)") + (net 43 "unconnected-(U4-Pad1)") + (net 44 "unconnected-(U4-Pad2)") + (net 45 "/Frontseat_stm32g031g1/LED_CLOCK") + (net 46 "/Frontseat_stm32g031g1/PWM_2") + (net 47 "/Frontseat_stm32g031g1/PWM_3") + (net 48 "/Frontseat_stm32g031g1/PWM_4") + (net 49 "/Frontseat_stm32g031g1/LED_DATA") + (net 50 "/Frontseat_stm32g031g1/PWM_1") + (net 51 "/Frontseat_stm32g031g1/ADC_6") + (net 52 "/Frontseat_stm32g031g1/ADC_7") + (net 53 "/Frontseat_stm32g031g1/INIT_{IN}") + (net 54 "SEN_5V") + (net 55 "SEN_12V") + (net 56 "unconnected-(U6-Pad1)") + (net 57 "unconnected-(U6-Pad2)") + (net 58 "unconnected-(U6-Pad16)") + (net 59 "Net-(D4-Pad4)") + (net 60 "Net-(D4-Pad5)") + (net 61 "Net-(D4-Pad6)") + (net 62 "/USB Programmer/TXLED") + (net 63 "Net-(D10-Pad2)") + (net 64 "/USB Programmer/RXLED") + (net 65 "Net-(D11-Pad2)") + (net 66 "Net-(R24-Pad2)") + (net 67 "unconnected-(U4-Pad14)") + (net 68 "unconnected-(U4-Pad20)") + (net 69 "unconnected-(U6-Pad9)") + (net 70 "unconnected-(U6-Pad10)") + (net 71 "unconnected-(U6-Pad11)") + (net 72 "unconnected-(U6-Pad12)") + (net 73 "unconnected-(U6-Pad13)") + (net 74 "unconnected-(U6-Pad14)") + (net 75 "unconnected-(U6-Pad15)") + (net 76 "unconnected-(U6-Pad17)") + (net 77 "unconnected-(U6-Pad20)") + (net 78 "unconnected-(U6-Pad21)") + (net 79 "unconnected-(U6-Pad22)") + (net 80 "unconnected-(U6-Pad23)") + (net 81 "unconnected-(U6-Pad27)") + (net 82 "unconnected-(J8-Pad1)") + (net 83 "unconnected-(J9-Pad5)") + (net 84 "Net-(R9-Pad1)") + (net 85 "Net-(J22-Pad3)") + (net 86 "Net-(J22-Pad2)") + (net 87 "unconnected-(J7-Pad1)") + (net 88 "unconnected-(J7-Pad2)") + (net 89 "unconnected-(J7-Pad3)") + (net 90 "unconnected-(J7-Pad4)") + (net 91 "unconnected-(J7-Pad5)") + (net 92 "unconnected-(J7-Pad6)") + (net 93 "unconnected-(J7-Pad7)") + (net 94 "unconnected-(J7-Pad8)") + (net 95 "unconnected-(J7-Pad9)") + (net 96 "unconnected-(J7-Pad10)") + (net 97 "unconnected-(J7-Pad11)") + (net 98 "unconnected-(J7-Pad12)") + (net 99 "unconnected-(J7-Pad13)") + (net 100 "unconnected-(J7-Pad14)") + (net 101 "unconnected-(J7-Pad15)") + (net 102 "unconnected-(J7-Pad16)") + (net 103 "unconnected-(J7-Pad17)") + (net 104 "unconnected-(J7-Pad18)") + (net 105 "unconnected-(J7-Pad19)") + (net 106 "unconnected-(J7-Pad20)") + (net 107 "unconnected-(J7-Pad21)") + (net 108 "unconnected-(J7-Pad22)") + (net 109 "unconnected-(J7-Pad23)") + (net 110 "unconnected-(J7-Pad24)") + (net 111 "unconnected-(J7-Pad25)") + (net 112 "unconnected-(J7-Pad26)") + (net 113 "unconnected-(J7-Pad27)") + (net 114 "unconnected-(J7-Pad28)") + (net 115 "unconnected-(J7-Pad29)") + (net 116 "unconnected-(J7-Pad30)") + (net 117 "/Frontseat_stm32l011f/PWM_1") + (net 118 "/Frontseat_stm32l011f/PWM_2") + (net 119 "/Frontseat_stm32l011f/PWM_4") + (net 120 "/Frontseat_stm32l011f/PWM_3") + (net 121 "/Frontseat_stm32l011f/INIT_{OUT}") + (net 122 "/Frontseat_stm32g031g1/INIT_{OUT}") + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 00b50cc0-6313-4424-93b7-acd22f1ea9bd) + (at 107.422 37.57) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/9d74152e-7191-42ca-a6ac-12dbe4241544") + (attr smd) + (fp_text reference "R16" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b457064f-6be8-4474-a1ed-0e56e272493f) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0d009f53-2f87-4e6b-976d-dad9a7210413) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp ae430d10-dffa-4caf-9cc5-d168a01a9111) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 86d3b0b0-1728-48fa-93c3-780d5e3fcda2)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c289f0ed-040c-4db4-913b-53e61bae1c78)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f23aaa1-2dbb-4c47-a6a8-b33af583f84c)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b93c2a1f-c6b2-4519-a41a-f1f36e567f8f)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c4b2087e-a1f2-4d6f-94c3-bff196cf11f7)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f0737eb1-a9bb-4428-bc21-c673bc61d33d)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 38c8780d-545d-4fd7-ac46-7adfc1b19578)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5223a19e-0dfb-456b-80e5-007d6e6663c7)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ab29a458-d406-4c82-8897-42b6b4f9446b)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ba7f6542-5ae2-46a2-97d1-31e23710fbd9)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 61 "Net-(D4-Pad6)") (pintype "passive") (tstamp 9a659f93-dbeb-40d7-84e3-24f5a5b68aad)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "SIG_R") (pintype "passive") (tstamp c97da585-ec88-4ef5-bf4b-dc767f78150a)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 01f3e28d-f5b2-4d65-818e-e733123b1f6d) + (at 133.414 80.82) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/33d58b3c-a22b-4112-8a2d-522cded5759d") + (attr smd) + (fp_text reference "R3" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6f3705fe-45e2-47df-aff9-27736a24c535) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4c613107-89d3-4193-af24-05c5ff1c26e8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 738c8620-dfc8-4dac-a3af-607c44331eef) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1d1e36a3-0be2-4c28-9be6-c564c52a836d)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp a5491c55-f508-4b28-a9b1-b850f42c6eb1)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0232bf0e-20bb-4ebd-927b-7f7087c36a06)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b1851697-a1d6-42f2-b7da-0a4c09c31e77)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ddc557ca-a46a-4fd1-bb97-1315ec3f2c3d)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f3301df8-1d89-412f-9280-0a964a16bc0c)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 25c3fc30-1f03-4d29-9acb-825fd4b0a3d1)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c3ca3fd0-4d75-4d86-9113-079ef1e9dab3)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cace0266-1712-45b7-a7c1-fe20d0eaa864)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e0a84097-9e3c-4df3-b1c5-f04e51e6ee46)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 1a37c7ad-cdea-4179-8df9-170fd01354a0)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "~{INT}") (pintype "passive") (tstamp de4af8cb-4aff-4f21-ab6d-eeb69b8a0c0e)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 0ea09393-b26d-4ff0-94fb-9921d48217f5) + (at 89.09 42.82 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/d1aabd28-4f24-4d71-a424-4453d83b1872") + (attr smd) + (fp_text reference "R23" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d90613fe-a057-4d7a-af7e-80a992f89996) + ) + (fp_text value "12kOhm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a26e1b2b-478f-4f18-a917-455fd42deb1e) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 476bdc62-b70b-4767-ba0d-5d5c7720254d) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 46cbaf70-2a9b-4b58-ba7c-15757a81371a)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c446a94a-2ea1-402e-9619-38053983820b)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0dc2b9a9-4fcb-45ce-a92b-d035e77606c3)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52ba2208-78aa-4c9f-9418-ddcf62b4ba38)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f3ea767-23d0-415a-a70b-5d2f82bb1844)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp de0b4a7b-27c1-429b-b076-8d08c51889e4)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 59700781-9fcd-41e0-83a4-96cdb9afce82)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5cc2b7d6-9c93-4b8e-b238-f48434542a18)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8da6a7ed-2d46-4d34-a3ea-3a5aacd2aa9f)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e05e96f3-042e-472d-8483-223aa6001086)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "RTS") (pintype "passive") (tstamp 07076f42-d619-4217-8d2f-020e7af33280)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 93accc1a-d042-4194-ac8d-3e7ebe0a3bfa)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 110ca9bd-a9cf-4579-8eba-2b9cb1dce6e7) + (at 129.61 33.54) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/21e76397-b06e-4e87-be57-622b34e6d8de") + (attr smd) + (fp_text reference "R18" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2323d17c-f923-402c-997a-bd3d18370c8e) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ec0f98b8-df65-46f2-b242-fab99ce79db9) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 2329bdd6-a8e0-42bc-abbe-3aed4ae4cbf4) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 91895f3f-8cd3-4692-b5df-d4ef66b8bf94)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ef3598ac-19be-45fb-bfb1-565bbdc8b625)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1784a8e0-3fa6-4483-b46e-54a6e27f2a74)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2a7588b1-23da-4822-8d94-ef413c9494e8)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b14167d9-5046-411c-bfa6-ba536300ba18)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e532c880-6bbc-4acd-9480-6d00013b5265)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0f85e12d-a6d0-4990-ab46-776740e4639f)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4a4c44fb-7eed-4103-83b5-c70d56281357)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6e025fab-e115-4bba-8635-ac8fcffee127)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 81980232-a3b1-4527-8ee1-0a520ff55962)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 59 "Net-(D4-Pad4)") (pintype "passive") (tstamp 39606274-7772-424f-9028-dd208a89ba3d)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "SIG_B") (pintype "passive") (tstamp 04a0fec1-681c-47b6-8f9a-1070ea37475a)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 153eb705-7e60-4c86-a2d2-89b44e74a148) + (at 168.226 74.18) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/d25790ae-aa3c-4510-97a4-ffb9d71d1b36") + (attr exclude_from_pos_files) + (fp_text reference "H4" (at 0 -3.2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7091fa0d-9a8a-474c-a7be-9baa05c884a3) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 208abdbb-4bae-4126-a42d-4679851214ef) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3bc16aaa-cdd2-41fd-8776-207b1641be6e) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp c8818a19-8577-441a-87ed-94e37dea343c)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0c61f116-4e7b-4c62-b54c-cb7710b5bffb)) + (pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 15af0dd4-a157-463a-8d3d-85c892cced0a)) + (pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 80acc2a1-f610-468f-9f1d-dc32d71c44a4)) + (pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 8ad2698c-d634-4fbd-be5e-d2834da39dbf)) + (pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 8c1983fa-e549-4324-831d-a5a4d5dcfd35)) + (pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 92f7bbc2-4a78-4ca4-a5d4-ea02d8eedde8)) + (pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp ae2c4d37-c67c-4a64-87e0-3776a28b480a)) + (pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c0d6800d-d8f9-40af-8a9e-3aa6266eac6b)) + (pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d081a64b-e985-483a-a9ea-c0ee5272615c)) + (pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f9b9501f-b0de-4896-b263-36423481f207)) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 16fa0acb-adf7-4e10-aa4b-9d0d83631ab3) + (at 161.306 88.41) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/86a69a45-6823-4088-85e8-e14aa1af9628") + (attr smd) + (fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a101bde2-3930-4663-a6b1-c82e47c8dbef) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dc2134c3-bfea-4f64-be75-c7efa06594a3) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 47bdca79-7d40-4d47-9c5f-135662fa8ae0) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 31f48846-f4cc-46d0-8b40-eeba273824af)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp acbaffef-696a-459f-8620-1b85998622bf)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 442db2d2-ffc9-49a0-a3da-7d21b5d09de8)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6a997aa7-412a-4186-ac1e-24af7d7f124d)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7e7adc17-e217-4a37-93f7-ad669e0a789f)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp be6c003d-217e-4ba4-8b32-9b98369950ba)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 562e1171-2012-4446-b3ab-54badae08fa2)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7b596939-85f0-4719-8f30-20642ef1669a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cdd0ad06-be31-4c16-900e-78a8874e934c)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e4c876b8-3ade-47d0-99d2-a30b1f01200b)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 14 "Net-(D1-Pad2)") (pintype "passive") (tstamp 42279c66-6fe5-4a3d-8627-2ed4950938b9)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 55 "SEN_12V") (pintype "passive") (tstamp e8cf41c2-9205-4c25-9bae-652aa898a98d)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (layer "F.Cu") + (tedit 5BA58892) (tstamp 1c76829f-3ac5-4c7c-ab6f-a2f4b5b0cebd) + (at 140.462 34.29) + (descr "UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf)") + (tags "UFQFPN 0.5") + (property "LCSC" "C329283") + (property "Sheetfile" "../stm32l011f.kicad_sch") + (property "Sheetname" "Frontseat_stm32l011f") + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/d407cf58-389b-4851-92ff-397556db00b8") + (attr smd) + (fp_text reference "U4" (at 0 -2.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dd54add5-f348-4911-b457-1a506ac9a9bc) + ) + (fp_text value "STM32L011F4Ux" (at 0 2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 02603645-d4a6-4f84-8698-4a76173e0750) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.7 0.7) (thickness 0.1))) + (tstamp 5abefc97-7b31-4b8d-a9f7-35479bdd70e9) + ) + (fp_line (start -1.62 -1.62) (end -1.32 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 05a0d80b-d07e-4336-ad8d-10bea5fede1a)) + (fp_line (start 1.62 1.62) (end 1.62 1.32) (layer "F.SilkS") (width 0.12) (tstamp 276813e4-18cf-4562-aa21-adc88de831bf)) + (fp_line (start 1.62 -1.62) (end 1.62 -1.32) (layer "F.SilkS") (width 0.12) (tstamp 675c784b-a0cf-4138-a177-6570ed0d0a5e)) + (fp_line (start 1.62 1.62) (end 1.32 1.62) (layer "F.SilkS") (width 0.12) (tstamp af25d6e3-bae8-4cca-84ec-0bc8dc33d4e7)) + (fp_line (start 1.62 -1.62) (end 1.32 -1.62) (layer "F.SilkS") (width 0.12) (tstamp c6e5b653-5d81-44c6-8823-130f9cef4cd8)) + (fp_line (start -1.62 1.62) (end -1.62 1.32) (layer "F.SilkS") (width 0.12) (tstamp dde92521-ce17-4e14-b781-000dda1202ad)) + (fp_line (start -1.62 1.62) (end -1.32 1.62) (layer "F.SilkS") (width 0.12) (tstamp ef3fa281-ed08-4a57-8ebb-955ac3f1572a)) + (fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 19a1b642-d62d-458c-898c-907eac69e665)) + (fp_line (start 1.75 1.75) (end -1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 75dc992a-c1a1-4caa-ac04-4557ff81c684)) + (fp_line (start -1.75 1.75) (end -1.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9257bfa3-59e5-4b4d-afa6-faeaac3c4b57)) + (fp_line (start 1.75 -1.75) (end 1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a1aa1dc4-6659-4157-b9aa-718f0ea7a236)) + (fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 44e07d81-5846-42c5-9494-bd6825e16cf9)) + (fp_line (start -0.5 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 4ce8e9dc-9c6d-49cf-a7a3-0eb16f223c7b)) + (fp_line (start -1.5 1.5) (end -1.5 -0.5) (layer "F.Fab") (width 0.1) (tstamp 6b6cb364-1ca3-452f-a509-45819217afb5)) + (fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp c09d8325-e575-40cf-977b-c31a95494cc6)) + (fp_line (start -1.5 -0.5) (end -0.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp c6d519c8-ebce-4548-8707-4cecfcebf32e)) + (pad "1" smd custom (at -1.475 -1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 43 "unconnected-(U4-Pad1)") (pinfunction "PC14") (pintype "bidirectional+no_connect") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.325 0) + (xy 0.325 0.15) + (xy 0.175 0.15) + (xy 0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp ebe94179-0c18-4467-aac2-bd40b8dc816c)) + (pad "2" smd rect (at -1.3 -0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 44 "unconnected-(U4-Pad2)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp 35ef5bd7-625a-405d-ba97-7746bad5d92b)) + (pad "3" smd rect (at -1.3 0) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "~{BUSRST}") (pinfunction "NRST") (pintype "input") (tstamp df4d363c-6bc1-43a2-9c61-5f4ff6216ea8)) + (pad "4" smd rect (at -1.3 0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp 6bfc99a5-733f-4167-aa39-77bff35bdec7)) + (pad "5" smd custom (at -1.475 1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 117 "/Frontseat_stm32l011f/PWM_1") (pinfunction "PA0") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.325 0) + (xy 0.175 0.15) + (xy 0.175 -0.15) + (xy 0.325 -0.15) + ) (width 0) (fill yes)) + ) (tstamp c5f84eef-bb34-403b-a84a-5c3f3b6e0947)) + (pad "6" smd custom (at -1 1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 118 "/Frontseat_stm32l011f/PWM_2") (pinfunction "PA1") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 -0.175) + (xy -0.15 -0.175) + (xy 0 -0.325) + (xy 0.15 -0.325) + ) (width 0) (fill yes)) + ) (tstamp de23ccb7-aadf-458e-9e00-8144d646c819)) + (pad "7" smd rect (at -0.5 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "~{INT}") (pinfunction "PA4") (pintype "bidirectional") (tstamp 006ada5e-5f09-4a02-9571-10108c492327)) + (pad "8" smd rect (at 0 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "SCLK") (pinfunction "PA5") (pintype "bidirectional") (tstamp 55f32ddf-0a08-4ebb-95d3-0db2c55266e9)) + (pad "9" smd rect (at 0.5 1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "MISO") (pinfunction "PA6") (pintype "bidirectional") (tstamp 70a72215-5f83-4fc3-8549-f88fae9bf4d1)) + (pad "10" smd custom (at 1 1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "MOSI") (pinfunction "PA7") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 -0.175) + (xy -0.15 -0.175) + (xy -0.15 -0.325) + (xy 0 -0.325) + ) (width 0) (fill yes)) + ) (tstamp 423c77a4-01a8-43f8-95a9-1ef377f3d7a7)) + (pad "11" smd custom (at 1.475 1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 119 "/Frontseat_stm32l011f/PWM_4") (pinfunction "PB1") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy -0.175 0.15) + (xy -0.325 0) + (xy -0.325 -0.15) + (xy -0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp e385d408-cc99-49f0-914a-1872f58881af)) + (pad "12" smd rect (at 1.3 0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp be3b98cd-ff7c-4e58-9e82-e62743ccf87f)) + (pad "13" smd rect (at 1.3 0) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 341a39a6-27c0-4dad-af65-cac345cc4a37)) + (pad "14" smd rect (at 1.3 -0.5) (size 0.7 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 67 "unconnected-(U4-Pad14)") (pinfunction "PA9") (pintype "bidirectional+no_connect") (tstamp 1c95bf52-37b4-41fd-abe5-288f2ccea765)) + (pad "15" smd custom (at 1.475 -1) (size 0.35 0.3) (layers "F.Cu" "F.Paste" "F.Mask") + (net 120 "/Frontseat_stm32l011f/PWM_3") (pinfunction "PA10") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy -0.175 0.15) + (xy -0.325 0.15) + (xy -0.325 0) + (xy -0.175 -0.15) + ) (width 0) (fill yes)) + ) (tstamp 34da0f15-096a-49a9-93ea-e265b0a7247f)) + (pad "16" smd custom (at 1 -1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 2 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0 0.325) + (xy -0.15 0.325) + (xy -0.15 0.175) + (xy 0.15 0.175) + ) (width 0) (fill yes)) + ) (tstamp c0bae80a-70c1-4e9b-9a39-f39908dddaec)) + (pad "17" smd rect (at 0.5 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "SWCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp bc5f4928-280f-4726-a75b-06f9d7005099)) + (pad "18" smd rect (at 0 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 121 "/Frontseat_stm32l011f/INIT_{OUT}") (pinfunction "PB6") (pintype "bidirectional") (tstamp 393eee36-35b5-44e0-988f-2cfa8bd1ffa3)) + (pad "19" smd rect (at -0.5 -1.3) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 122 "/Frontseat_stm32g031g1/INIT_{OUT}") (pinfunction "PB7") (pintype "bidirectional") (tstamp ef3fc90e-a96e-405f-b766-db87d755c61b)) + (pad "20" smd custom (at -1 -1.475) (size 0.3 0.35) (layers "F.Cu" "F.Paste" "F.Mask") + (net 68 "unconnected-(U4-Pad20)") (pinfunction "PB9") (pintype "bidirectional+no_connect") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.15 0.325) + (xy 0 0.325) + (xy -0.15 0.175) + (xy 0.15 0.175) + ) (width 0) (fill yes)) + ) (tstamp 42f5fdd1-3b48-4a47-a3f2-e00a38c283ce)) + (model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/ST_UFQFPN-20_3x3mm_P0.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 1e8ee0b8-104d-44f6-8247-28cd750553ad) + (at 68.344 77.18) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006094781b") + (attr exclude_from_pos_files) + (fp_text reference "J19" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f3a53116-8e24-46a1-9226-b08ec95e4232) + ) + (fp_text value "Testpoint_3V3" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4202924c-a026-4294-8f16-eaa35ad6b90b) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 21e94cbb-0848-421c-9f48-f6c422735aad) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp db513804-183f-4753-81c5-1069bc79206a)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b0d94ed6-0bce-43db-b07b-5e7e39c2f5ed)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 7 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 5a5f740b-05ef-43e4-9b77-09d78d6a89e7)) + ) + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tedit 5FA16958) (tstamp 23ec9dd0-6420-4d3c-9f1f-5c2963d7994c) + (at 89.41 47.27 90) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "LCSC" "C2146") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/1803c314-b0ab-4b15-b1b3-612552fa299c") + (attr smd) + (fp_text reference "Q2" (at 0 -2.4 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a1ad909d-e706-4056-aabb-e4ddf142f633) + ) + (fp_text value "S8050" (at 0 2.4 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 80a895ba-421c-4799-a553-ed6486255ab1) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.32 0.32) (thickness 0.05))) + (tstamp 8c396fc6-cf12-4e8b-b2d5-37f472c8fc7b) + ) + (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 82dd254a-c68e-4f10-b2d7-e679e8ebab67)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 93a15b4e-4308-47ec-9113-d3ac5eee9c40)) + (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp dbdd6326-b5b4-4ac3-9099-62d82e946d51)) + (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp e7c6db48-ec36-4912-a72f-34f324c8f5f9)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 5c6df733-5c7c-4cde-b971-8d95b5a9c87f)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 730e8b3c-c1e2-47b7-9fc3-981faa781349)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7af2184f-939a-444c-a73d-bd833f602222)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c700caa2-c483-4efa-bd8b-4f85c8c80379)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 6cc3749f-ee74-4376-9f2b-c838405015bf)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 8fb017b4-e2e1-4c5c-aa36-90919fec0b80)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 9c60bd68-389b-4886-91bb-222e0b99ed6b)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp b042d4b1-e6d4-4e0a-a477-bd90b2a5e1fe)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp cd38a20d-1c39-4216-a86a-acc9dfaa442a)) + (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "Net-(Q2-Pad1)") (pinfunction "B") (pintype "input") (tstamp 9eb53ce3-ce9c-4f1a-b7b4-a55c34a09dda)) + (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "DTR") (pinfunction "E") (pintype "passive") (tstamp 3dbaff67-2538-4346-8190-84f3796fa1ce)) + (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "FLSH") (pinfunction "C") (pintype "passive") (tstamp 73700345-f08d-48d9-899d-dbd31c061912)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 296c95e1-93c3-43aa-85c0-812d31459e78) + (at 95.504 84.42) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/385bbb43-4a8c-473c-9555-557d89e713c8") + (attr smd) + (fp_text reference "R8" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c4392c79-1068-4a1d-8d2b-72b3cab79959) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5638e4c5-6c45-446c-9703-984abe2836a0) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp ee8d83c1-5445-456d-a48a-0c6362033b94) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2b48a1ac-f3be-4a27-a7a5-296e5a17173b)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d1928d0e-0b57-4e1a-ab60-226805de7fc8)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b684a39-e2f6-46ad-839d-4a9b77a97e0f)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp db106d4e-a825-488c-bc69-b161b52cf2db)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dc71f459-5ce5-412f-b71f-3fd645df56b5)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fe76f70f-f5fd-450b-83d9-a30a59d3a260)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 725a00ca-d09b-4ba6-813e-038fc6bbf4d7)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 802bf256-0b87-4349-a2b4-c5691f829d81)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bac34a47-3dfa-43c0-aa46-feae0bbfbac5)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c6b2579a-a4a3-4156-a97c-bdefabba7728)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 87aaf34a-41dd-43c9-be24-84bda75f750e)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 11 "~{BUSRST}") (pintype "passive") (tstamp c40a3ebe-e397-4303-b8be-487e4909a84f)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 2bfbcff5-6a6c-4538-96c9-78cd80816adb) + (at 107.442 34.29) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/a0b55039-1d75-4207-a887-4b9b89cd6a4f") + (attr exclude_from_pos_files) + (fp_text reference "J12" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 89dbb04b-5b78-49e0-897a-d982b8ff3a86) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 99218040-c14b-4d65-b326-0a1d8d78703e) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 61d150ff-239a-49ce-8da7-9fa0033e5b8a) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp e13b6731-17f3-4782-a167-36597d526c10)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 80f194d5-83f7-4207-a68d-ae65413e2fc5)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 2 "SWDIO") (pinfunction "Pin_1") (pintype "passive") (tstamp bed73531-8a76-4b8e-a34a-7ed795328100)) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 3147fce4-82e8-4974-b92f-e4a8e38fd370) + (at 173.206 77.56) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/b00d4ee4-fcdc-4ff6-bc7f-b91bd5efcb61") + (attr smd) + (fp_text reference "R10" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3d1a5a82-9af8-47eb-9983-6c531c555e9d) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 06d91058-0285-467b-90ed-3e8ed2fa09ba) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 7f1fbc0f-ee05-4da3-bee3-fe3af2bd774c) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0baf86c1-c123-4313-b5c9-62b6443d0714)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 83a9602d-55d8-4fac-be4d-5bfcf7d1be8a)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aa2de3ea-2feb-4563-8654-3ed9db9ea980)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab9e094f-9b06-4111-900f-d03757344140)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d488cd24-0652-4f0e-9558-a532bb311cf9)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp da5bdfd1-da3b-4bc9-b60e-c6ec43cfce41)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 42cfb1c3-6e69-42b5-992a-4be533fb0194)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 917dad9c-40f2-447e-bc81-0d6dafc15662)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b3f0ba85-0e34-4099-8a7f-1438f83ec3d9)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ea9bae3c-6d31-4fab-a0bf-f5af54ba8e2c)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 626415da-ce82-43d3-97a6-2d9dbda5cf7d)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 84 "Net-(R9-Pad1)") (pintype "passive") (tstamp 6080bb4c-1f98-4841-a2f9-a86ebb692704)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 32c73a57-763c-457c-abc2-868a7240a041) + (at 83.99 38.77 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21189") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/1d61f091-e74c-4ed6-9549-b886a70f8ed3") + (attr smd) + (fp_text reference "R26" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46f30366-431c-4163-8908-39e136f5dee5) + ) + (fp_text value "220Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5f3ee7d0-efcc-4f55-91b6-d41b8d92ccdd) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp d04fd0ba-3a07-4921-96b5-6a1bfc7f92d6) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5a8db4dc-c765-4a41-8ce2-511b8d907abf)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fb2e12ab-090a-49da-996b-31c80792bf1d)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 15b96f1d-242a-4cd7-a35e-e0b3fc8d1330)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 699cad5e-8949-4e24-a394-b3728119dbb7)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca2ea4b1-ac89-4172-8b9f-d071759961b0)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e63b377f-4978-45c3-ae14-d9b80517368a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3073f6a1-fc34-434b-89e5-924b73938d04)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 48e6752a-488c-4913-858a-408f31e2b4ce)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4fc775ce-843a-4183-bfce-dd889f213411)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c1177414-ca47-41c5-bb04-644ef2570d7b)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 65 "Net-(D11-Pad2)") (pintype "passive") (tstamp 9dded334-1ec1-44b7-88ac-ad3d5fc383ae)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp d95bde82-ae42-49fe-aa61-412d3b3a0309)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_MiniMELF" (layer "F.Cu") + (tedit 5905D8F5) (tstamp 36f952a2-95f1-4f3c-be88-22f4037d3106) + (at 53.294 85.83) + (descr "Diode Mini-MELF (SOD-80)") + (tags "Diode Mini-MELF (SOD-80)") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608e2da3") + (attr smd) + (fp_text reference "D8" (at 0 -2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 55a15167-55d8-4966-932b-1ae9a1ac6046) + ) + (fp_text value "Z 5V" (at 0 1.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 63131e66-63fc-4b05-a8c4-be497288e360) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 55321052-cf83-402d-bf31-1891a016be53) + ) + (fp_line (start -2.55 -1) (end -2.55 1) (layer "F.SilkS") (width 0.12) (tstamp 956daee5-3a62-4237-b241-7eeeca9f423a)) + (fp_line (start 1.75 -1) (end -2.55 -1) (layer "F.SilkS") (width 0.12) (tstamp e7383517-a51f-49fe-8144-301933baee93)) + (fp_line (start -2.55 1) (end 1.75 1) (layer "F.SilkS") (width 0.12) (tstamp f3bc8c76-77c5-42c0-9cee-dddcb26160bc)) + (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 14d08ae8-3765-42e5-9a4b-52c1a765250b)) + (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 4f350233-ea85-4253-9f08-aeead32fccd0)) + (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp a44816a9-9556-4765-b827-d58f306341b3)) + (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp eb5e7992-d7cd-460d-88aa-94ff62a3ea49)) + (fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 03dad3a1-87a9-4c1b-a3a2-6ecae98d03f2)) + (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 04e821ec-0da2-42c1-8908-b6fab888687c)) + (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1288b572-7d22-46bb-a8ce-2c6d981e2fd9)) + (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 256000a8-2071-4476-a4dd-40a762eac1e2)) + (fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 2689ce0a-8f08-491f-afa5-04d23db4c08b)) + (fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 2a904c01-1fd7-4d25-9622-22da750a3cd2)) + (fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 459e6903-feb0-4a9e-b9e4-ddbb4ce90f0a)) + (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 47d50e66-fd96-421b-b895-b7c271a70a6c)) + (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 4a7f83d0-144c-478f-b24f-60e785f5f6c1)) + (fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6cd24cf6-0db8-41cb-9847-b90a31e720a9)) + (fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp a0ab8897-113e-4090-aedb-8f286fa15e46)) + (pad "1" smd rect (at -1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "+5V") (pinfunction "K") (pintype "passive") (tstamp 76c9bb65-2700-40a5-8560-91b1bfa2cb1c)) + (pad "2" smd rect (at 1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp 8fa9c612-dd5e-4b99-949b-a7a1867cf7f0)) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 3a7ee759-1a0e-4532-8636-970b50f05685) + (at 144.78 34.31) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../stm32l011f.kicad_sch") + (property "Sheetname" "Frontseat_stm32l011f") + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/f37d1b33-7634-4681-9508-814ad5a6a51e") + (attr exclude_from_pos_files) + (fp_text reference "J14" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 32b793e0-ba61-42cc-8fdd-c1a3997ca854) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1f0c2f2a-cfb7-4776-83e0-0cd373769655) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eeccae4c-a594-435a-b6da-2cfff0aac1df) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 46a9e28a-3278-447f-9ee6-2a7a76bd04c8)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 31dab8a9-302d-4de2-9971-06103c65968e)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 2 "SWDIO") (pinfunction "Pin_1") (pintype "passive") (tstamp 1c42f349-ff63-4c66-bad3-53c1ee134239)) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 3e32b649-0624-401f-8a82-80d74cbd3b6d) + (at 53.294 88.96) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c54a2") + (attr smd) + (fp_text reference "C6" (at 0 -1.68) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 50a60d11-c802-4750-9c3f-331d8a7d483d) + ) + (fp_text value "10uF" (at 0 1.68) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d0bb34f5-f660-43a0-9333-a468919242ce) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 00c6c527-92c2-479b-a108-f439d1364624) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 49737f85-9dd0-42c7-a4e5-c28325cf74dd)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp f13765ae-2008-433d-872e-66f48e75d99c)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b515c826-418f-4b4e-b53a-ccaa026ece20)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b86a952c-9bcd-4c0c-aa67-7ac480b5b1f8)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp cfcab7e2-a131-4271-8853-402fd710a63c)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f20f28de-fffd-496b-9981-6684e5e99460)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 440fd8a1-1a44-41e3-b9d7-4204cca04e5e)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6b9e05fe-ca05-480e-9878-c81d032d07c7)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7eaaba8d-39bf-4943-907b-3a146b4274c4)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ff26ac76-0278-42c1-9e17-f1a8e66f65c7)) + (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 2b1e081e-3c72-4e2d-b286-f7d37f8955dd)) + (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp f72353cd-b449-4515-a5f7-1cb002b400b2)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 3ef7c8d6-6142-4247-a093-41612f23cf28) + (at 102.754 79.11) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/4ec60998-9910-46ff-9fb3-13a3cce3f1b1") + (attr smd) + (fp_text reference "C3" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ed340ec3-9083-4797-931e-86227c6235cf) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f70e8b4c-7d0f-4483-81b3-6a1ca7b6ffd8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 1edb035c-6330-45da-9746-45a8ecaf0ffa) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 37ff8000-f190-44ee-a69d-ac661adee76e)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a4364da4-e3cd-4fd5-8128-569038fa5121)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 059619b4-bdbe-459e-82aa-744fedba0ac0)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5133879b-9175-4b7d-ab14-c57fe62ef091)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b96e82f-494b-410a-a159-18885556d715)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d870571f-c31a-4271-a707-c84e23449697)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 02971985-615e-4e46-af0c-ddd1fe463453)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 11f1b111-9ae0-41e2-bbed-e9453b77cf0f)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp fc1e5f59-c548-454e-a652-bd327c582f0e)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp feca2a88-4381-4a31-9482-0133343d7fb2)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "FLSH") (pintype "passive") (tstamp 9124e75c-76b6-4118-9fff-7e5dea71fdbb)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp a3a205b4-589d-4709-81eb-c9b30ef40b79)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "LED_SMD:LED_RGB_5050-6" (layer "F.Cu") + (tedit 59155824) (tstamp 3f5f1049-285d-492c-8992-5d8609a67d6f) + (at 119.38 35.56) + (descr "http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf") + (tags "RGB LED 5050-6") + (property "LCSC" "-") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/6801e525-3830-4664-bb60-00a8c7a1c082") + (attr smd) + (fp_text reference "D4" (at 0 -3.5 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fdf31063-7b7b-4242-9b9f-be56562e9a4a) + ) + (fp_text value "LED_RGB" (at 0 3.3) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c1e9a8a0-a095-4004-8116-81386ba94314) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.6 0.6) (thickness 0.06))) + (tstamp ccc80668-ff74-4b82-920f-53a5c66339e3) + ) + (fp_line (start 2.5 2.7) (end -2.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp 08ebef36-dae9-4168-af9a-ec8d905ab2f5)) + (fp_line (start -3.6 -1.6) (end -3.6 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 4da95e71-826e-42dc-83e8-519b8ecb3b18)) + (fp_line (start -3.6 -2.7) (end 2.5 -2.7) (layer "F.SilkS") (width 0.12) (tstamp af1d9fde-65fc-4074-9105-21078a97dddb)) + (fp_line (start 3.65 -2.75) (end -3.65 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 9cf5b105-5fd2-45b1-99f5-0e4781294b58)) + (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer "F.CrtYd") (width 0.05) (tstamp b33dd4d0-1471-4c84-be22-3253373e2b0c)) + (fp_line (start 3.65 2.75) (end 3.65 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp cccfca35-e3cf-4aec-923b-8db2c798e77e)) + (fp_line (start -3.65 -2.75) (end -3.65 2.75) (layer "F.CrtYd") (width 0.05) (tstamp f854d834-bef7-4ebb-aeb2-8d07a60f6252)) + (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 375d544c-f309-4c97-a4b2-933fc7ea0cc9)) + (fp_line (start -2.5 -1.9) (end -1.9 -2.5) (layer "F.Fab") (width 0.1) (tstamp 63f05a1e-830c-478f-bbbf-ef47c4333f01)) + (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 83b62014-dadb-4fe2-8617-1987f5bcbc42)) + (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp c79bd10c-8fee-45f5-86ae-fa24ce7d428c)) + (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp f7a63165-6d36-42ba-99e1-4ae80e8635be)) + (fp_circle (center 0 0) (end 0 -1.9) (layer "F.Fab") (width 0.1) (fill none) (tstamp a4e2007c-ffee-44e8-9a92-f044392b4511)) + (pad "1" smd rect (at -2.4 -1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "RK") (pintype "passive") (tstamp 2599819a-156a-4b77-a410-2ad7271f25a9)) + (pad "2" smd rect (at -2.4 0 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "GK") (pintype "passive") (tstamp 37fcfb82-b7ef-41ef-a769-2317ba553c97)) + (pad "3" smd rect (at -2.4 1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "BK") (pintype "passive") (tstamp 5bf1b8a7-855b-4692-9e26-7e0765e8b037)) + (pad "4" smd rect (at 2.4 1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 59 "Net-(D4-Pad4)") (pinfunction "BA") (pintype "passive") (tstamp d1e338b5-f0fc-4f1f-be49-f94a3606eb03)) + (pad "5" smd rect (at 2.4 0 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 60 "Net-(D4-Pad5)") (pinfunction "GA") (pintype "passive") (tstamp 59371740-ed42-4c86-97cf-d330f80fe3b9)) + (pad "6" smd rect (at 2.4 -1.7 90) (size 1.1 2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 61 "Net-(D4-Pad6)") (pinfunction "RA") (pintype "passive") (tstamp c4091b73-73bf-43df-be6c-81860962a394)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_RGB_5050-6.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 3fbb3e83-0560-4009-a0dc-1bb2f7648774) + (at 103.594 74.66) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/1c5d86a8-4c2c-496e-90e1-97a322632465") + (attr smd) + (fp_text reference "R1" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cb17546b-2177-4b7d-a175-62a65592eb69) + ) + (fp_text value "12kOhm" (at 1.3 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb9f2783-2aef-44b3-aec0-dca07425e0bd) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp f1d72699-a90e-49f0-94dd-fe889c3440c5) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6076cc37-63ef-453c-ad64-bd02b8291d62)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp be766750-5b75-4f14-9d6b-afad36c0a75b)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1ab6a4a7-ef59-4f9d-b56f-671acab02a4d)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 71811e6e-e2ae-4baa-9bb9-72afb3695722)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8845cee5-511f-4fca-ad6e-0b01915c0ecc)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a043786a-8819-4a1b-8c99-28a3fa18cc54)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1675f3b2-1588-453f-9777-b56dacb20cb6)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 524167b5-8404-4bc2-be4e-80b4c84ff7c1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cc1e0eb3-0994-456c-a051-26bb0524d2d2)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e1e51cda-74df-4104-828a-e5aebede25dd)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 18b427d3-c4c6-4e1a-88ed-d1f09f00427b)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "nRST") (pintype "passive") (tstamp 72448d09-a4c6-47f1-96cf-41d84323ed22)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (layer "F.Cu") + (tedit 5DC5F6A4) (tstamp 40d757a7-d6d6-4136-a3d8-4e4c3896c46d) + (at 86.36 53.34 90) + (descr "QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py") + (tags "QFN NoLead") + (property "LCSC" "C6568") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/37b43181-8204-44f6-9b7f-fa5d4dc75e9b") + (attr smd) + (fp_text reference "U6" (at 0 -3.8 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8a81863a-8463-4f46-a8c4-87083cfb1741) + ) + (fp_text value "CP2102-GMR" (at 0 3.8 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3ac5f3a8-ead6-4a5e-a728-839c899a8db6) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b6fe4c28-92e7-4533-8fe7-a950879b6293) + ) + (fp_line (start 2.61 -2.61) (end 2.61 -1.885) (layer "F.SilkS") (width 0.12) (tstamp 055255f4-895f-45ce-9b70-8d5376850655)) + (fp_line (start 2.61 2.61) (end 2.61 1.885) (layer "F.SilkS") (width 0.12) (tstamp 16e486b3-c8f7-42c8-857a-920052898ef6)) + (fp_line (start 1.885 2.61) (end 2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp 304ca5e2-2d61-4418-8aec-ac774c2a91a3)) + (fp_line (start -1.885 2.61) (end -2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp bbf2e3ec-5935-4fa0-ad40-d4f81f1d948c)) + (fp_line (start -1.885 -2.61) (end -2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp c2285e45-761b-4f18-87b7-a351859f8803)) + (fp_line (start -2.61 2.61) (end -2.61 1.885) (layer "F.SilkS") (width 0.12) (tstamp c6f155a0-6930-4008-93b3-e6899d1a21e5)) + (fp_line (start 1.885 -2.61) (end 2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp fc138540-4beb-4628-acf1-256080586253)) + (fp_line (start -3.1 3.1) (end 3.1 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 1706b1a1-69ef-43f4-a04b-0b6bedb7d50d)) + (fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp 3e9d5c89-3b67-4c97-af10-7f91e81a7269)) + (fp_line (start 3.1 3.1) (end 3.1 -3.1) (layer "F.CrtYd") (width 0.05) (tstamp 414fd5a3-e105-4df8-94c7-56c45aaa6e56)) + (fp_line (start -3.1 -3.1) (end -3.1 3.1) (layer "F.CrtYd") (width 0.05) (tstamp f16d5849-6181-4b65-922d-2c31cecadd0f)) + (fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp 3dc87a46-3bf3-435e-9342-8707cb192830)) + (fp_line (start -2.5 -1.5) (end -1.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 4b006e72-c356-49b4-ac05-bbf682f0bf41)) + (fp_line (start -1.5 -2.5) (end 2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 5ba830b1-4d4f-4877-badf-ebe296ffede8)) + (fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp a72a9431-58ac-4d7c-a56c-d9d1f7cb9168)) + (fp_line (start -2.5 2.5) (end -2.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp e99d3238-9d20-41d7-81fd-43d9b483a678)) + (pad "" smd roundrect (at 0 1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 046ad2d5-522b-4de5-ac55-65fbda7f1d73)) + (pad "" smd roundrect (at 1.12 0 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 3735557f-ada2-4820-94f3-cdc2ac5347ae)) + (pad "" smd roundrect (at 0 0 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 8d1de5f8-653b-4d19-8ddc-dde4cc553f7e)) + (pad "" smd roundrect (at -1.12 -1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 9624c088-f50c-43bc-b06a-be7aeeecb27c)) + (pad "" smd roundrect (at 0 -1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a45b9b4f-35bd-4792-ad3e-e7d721b31682)) + (pad "" smd roundrect (at 1.12 -1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp c3a63298-3a21-4b9e-8ca0-f7778ca990bf)) + (pad "" smd roundrect (at -1.12 0 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp c9e88b07-f871-4ce2-a0b7-b83d68f698ea)) + (pad "" smd roundrect (at 1.12 1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp de153be1-1be6-44be-bceb-f8795cdaa727)) + (pad "" smd roundrect (at -1.12 1.12 90) (size 0.9 0.9) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp e25ba67a-f9db-4a46-9d36-4905261d189a)) + (pad "1" smd roundrect (at -2.45 -1.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 56 "unconnected-(U6-Pad1)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp 18a0dac8-c4c5-4d5a-9df8-248283097e0a)) + (pad "2" smd roundrect (at -2.45 -1 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 57 "unconnected-(U6-Pad2)") (pinfunction "~{RI}/CLK") (pintype "bidirectional+no_connect") (tstamp 464e236e-c78d-4e2b-a37e-35b14759f70d)) + (pad "3" smd roundrect (at -2.45 -0.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b224f28e-739f-49ea-85d7-85ff6e0425f4)) + (pad "4" smd roundrect (at -2.45 0 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 85 "Net-(J22-Pad3)") (pinfunction "D+") (pintype "bidirectional") (tstamp 7c7b77bb-8c2c-470b-a512-8821e87f51be)) + (pad "5" smd roundrect (at -2.45 0.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 86 "Net-(J22-Pad2)") (pinfunction "D-") (pintype "bidirectional") (tstamp 83568ac1-16c8-442c-bd94-6f110c8ff860)) + (pad "6" smd roundrect (at -2.45 1 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pinfunction "VDD") (pintype "passive") (tstamp 40cfa233-2c12-4753-af40-7c92805fd3ea)) + (pad "7" smd roundrect (at -2.45 1.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pinfunction "REGIN") (pintype "power_in") (tstamp 8eec385f-03c3-44e7-a08c-b57f0d5d3e26)) + (pad "8" smd roundrect (at -1.5 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "+5V") (pinfunction "VBUS") (pintype "input") (tstamp e131750e-6b44-4d08-911a-dd78965d3678)) + (pad "9" smd roundrect (at -1 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 69 "unconnected-(U6-Pad9)") (pinfunction "~{RSTb}") (pintype "input+no_connect") (tstamp 9b0556fb-2ff5-4c76-a228-3df89029ee65)) + (pad "10" smd roundrect (at -0.5 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 70 "unconnected-(U6-Pad10)") (pinfunction "NC") (pintype "no_connect") (tstamp cca75b84-c7df-4fa2-9b93-eb17ca6875ea)) + (pad "11" smd roundrect (at 0 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 71 "unconnected-(U6-Pad11)") (pinfunction "~{SUSPENDb}") (pintype "output+no_connect") (tstamp b83d234e-fd81-4332-bb47-798642311665)) + (pad "12" smd roundrect (at 0.5 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 72 "unconnected-(U6-Pad12)") (pinfunction "SUSPEND") (pintype "output+no_connect") (tstamp 5e95fa25-0d95-4dd4-b8c6-ed1a4bb0279d)) + (pad "13" smd roundrect (at 1 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 73 "unconnected-(U6-Pad13)") (pinfunction "CHREN") (pintype "output+no_connect") (tstamp cb55bf34-6128-4725-af29-9a19a69b7fb0)) + (pad "14" smd roundrect (at 1.5 2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 74 "unconnected-(U6-Pad14)") (pinfunction "CHR1") (pintype "output+no_connect") (tstamp 0f9e1509-73f5-4ad3-9d61-051dda8fef88)) + (pad "15" smd roundrect (at 2.45 1.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 75 "unconnected-(U6-Pad15)") (pinfunction "CHR0") (pintype "output+no_connect") (tstamp 7a70a2aa-b6a5-4cca-9d83-026aa97576d9)) + (pad "16" smd roundrect (at 2.45 1 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 58 "unconnected-(U6-Pad16)") (pinfunction "~{WAKEUP}/GPIO.3") (pintype "bidirectional+no_connect") (tstamp 5401dc13-37a2-4557-a635-c84a131f28da)) + (pad "17" smd roundrect (at 2.45 0.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 76 "unconnected-(U6-Pad17)") (pinfunction "RS485/GPIO.2") (pintype "bidirectional+no_connect") (tstamp 0b0e204f-5279-4dd6-ae8e-5e5a70304996)) + (pad "18" smd roundrect (at 2.45 0 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 64 "/USB Programmer/RXLED") (pinfunction "~{RXT}/GPIO.1") (pintype "bidirectional") (tstamp 6d8c52bb-0059-4bef-ad91-bff8c68166c3)) + (pad "19" smd roundrect (at 2.45 -0.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 62 "/USB Programmer/TXLED") (pinfunction "~{TXT}/GPIO.0") (pintype "bidirectional") (tstamp 17f28abd-50b9-4a8f-8f4e-2e08f2e38678)) + (pad "20" smd roundrect (at 2.45 -1 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 77 "unconnected-(U6-Pad20)") (pinfunction "GPIO.6") (pintype "bidirectional+no_connect") (tstamp 5a7e7e74-fcff-4d4a-bfc2-92f80722ff50)) + (pad "21" smd roundrect (at 2.45 -1.5 90) (size 0.8 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 78 "unconnected-(U6-Pad21)") (pinfunction "GPIO.5") (pintype "bidirectional+no_connect") (tstamp f03ef414-ad28-4c30-a249-a5e857d4e3e4)) + (pad "22" smd roundrect (at 1.5 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 79 "unconnected-(U6-Pad22)") (pinfunction "GPIO.4") (pintype "bidirectional+no_connect") (tstamp e912aa3a-70a3-4034-94e4-826910cf422b)) + (pad "23" smd roundrect (at 1 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 80 "unconnected-(U6-Pad23)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp 653fa149-3991-4dc5-a9de-74876619c02b)) + (pad "24" smd roundrect (at 0.5 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "RTS") (pinfunction "~{RTS}") (pintype "output") (tstamp 74c746e6-b78f-4865-a019-0460eb881161)) + (pad "25" smd roundrect (at 0 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "TXD0") (pinfunction "RXD") (pintype "input") (tstamp 2734dc25-ccd0-418a-8f59-0dd42e269ad8)) + (pad "26" smd roundrect (at -0.5 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 66 "Net-(R24-Pad2)") (pinfunction "TXD") (pintype "output") (tstamp 04cdae95-f231-4008-82f2-50a48a4b6ea3)) + (pad "27" smd roundrect (at -1 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 81 "unconnected-(U6-Pad27)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp 8dc7aa05-9d0a-445c-9e97-1d8f669d57c0)) + (pad "28" smd roundrect (at -1.5 -2.45 90) (size 0.25 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "DTR") (pinfunction "~{DTR}") (pintype "output") (tstamp ce4f19d2-8f43-40e7-9099-1e86ca69b36f)) + (pad "29" smd rect (at 0 0 90) (size 3.35 3.35) (layers "F.Cu" "F.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3f868f28-846c-4209-bda3-69145f17e82b)) + (model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 46f6a7e8-7426-4bc0-8129-c72e81cbdd4c) + (at 62.944 83.59) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609480a1") + (attr exclude_from_pos_files) + (fp_text reference "J21" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ea523284-5f66-45fc-9cac-3348579ca60f) + ) + (fp_text value "Testpoint_LDO_IN" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 03d53063-02b5-490a-9813-ef74f4a44abf) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 75f54638-e5ab-4e23-996f-c869e982bf09) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1c66f2d8-0620-415c-9ee0-fa9f71ebf0a4)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a52dc3cb-f3a1-41f4-8aee-889c6d590cdc)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 12 "/Power/LDO_IN") (pinfunction "Pin_1") (pintype "passive") (tstamp d45f9828-00ac-4821-9df0-0c929faad331)) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 471aa881-d8ab-46ef-a50c-b1f9e994f16f) + (at 125.354 88.31) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21190") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/26d5e4a7-de80-40c9-a781-aa14c0311408") + (attr smd) + (fp_text reference "R12" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3d8f0298-c019-4536-890c-aaf2afa9f139) + ) + (fp_text value "1kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5f7685f3-960f-48e9-bdc3-401cc49e155f) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp f6360d86-e177-43b4-9232-3b88bb9d1823) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 04b88d2e-656c-447c-9b5c-e906b5d31a46)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 48f3982d-6665-4802-ab25-0a3367e3d7ad)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 59aebb28-65e8-4b86-bec5-99336a3bdfc4)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b98e318-ae4f-482b-9f96-b460e9cfab87)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65033706-ff63-476b-bf7b-e40bb039e82f)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 96aa1659-6701-4f96-8c16-6753b1dbb376)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3093c4a5-353c-4dea-8786-880928ea4563)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5a4aae46-58bd-4d8e-9365-63b770696ccf)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cbd90d8a-8c3f-487b-a4dd-5ac229b2c653)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fa76fb92-dcf1-4102-95bc-7c6db4ce72a6)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 61c58ca9-836f-49f7-a39f-2e1eb33aee26)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "ADC") (pintype "passive") (tstamp f346322a-1e14-482e-8266-901613603e34)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" (layer "F.Cu") + (tedit 59FED5CB) (tstamp 48dc3d5e-faa4-44c5-a235-18062f4b0be4) + (at 40.894 68.58) + (descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row") + (tags "Through hole angled pin header THT 1x03 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929628") + (attr through_hole) + (fp_text reference "J17" (at 4.385 -2.27) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 922c3a89-340b-4485-9893-8be9ae2d0f7e) + ) + (fp_text value "Conn_01x03_Male" (at 4.385 7.35) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0cf2859e-b457-445e-95d2-ddf8b8c13979) + ) + (fp_text user "${REFERENCE}" (at 2.77 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 72f41188-6adf-44ca-8ce4-d4b873539ebf) + ) + (fp_line (start 4.1 4.7) (end 10.1 4.7) (layer "F.SilkS") (width 0.12) (tstamp 01f7b439-d202-4de2-a735-0698e2ef3549)) + (fp_line (start 1.44 -1.33) (end 1.44 6.41) (layer "F.SilkS") (width 0.12) (tstamp 1cf7b961-1259-4d45-9b65-6105661a605b)) + (fp_line (start 4.1 0.16) (end 10.1 0.16) (layer "F.SilkS") (width 0.12) (tstamp 2203e637-096b-4e84-ac4e-d6673a3f9f88)) + (fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 2930d96f-f8b2-45c0-8ccf-9d50e2da05be)) + (fp_line (start 10.1 5.46) (end 4.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 36403ca0-5706-40f9-80da-b5c1746c1da2)) + (fp_line (start 4.1 0.28) (end 10.1 0.28) (layer "F.SilkS") (width 0.12) (tstamp 48445864-5c0d-4fcb-943a-2d4fe3140ede)) + (fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 53527204-e92c-4d81-9158-6412f9de3993)) + (fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 55c93bfe-1431-47e0-a139-728515f3198c)) + (fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer "F.SilkS") (width 0.12) (tstamp 5601cd6c-b04c-46e8-a8b2-c98058034705)) + (fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 66df4cfc-8e9e-46c7-9c4f-d593bf7374b5)) + (fp_line (start 1.44 3.81) (end 4.1 3.81) (layer "F.SilkS") (width 0.12) (tstamp 712bec9a-3761-41df-887c-307290024534)) + (fp_line (start 1.44 6.41) (end 4.1 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7555a087-1bcd-4f82-9601-5a6c6e81dd60)) + (fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 7d0a2f08-25bc-4755-871c-4c455a6acd13)) + (fp_line (start 4.1 0.04) (end 10.1 0.04) (layer "F.SilkS") (width 0.12) (tstamp 7d27727e-1475-4d9f-8d4a-6a9a612bbcba)) + (fp_line (start 4.1 6.41) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7f813542-daab-4626-9071-9bf795af71fb)) + (fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 803ed8d3-7749-416d-b4ac-d05a9274bfc4)) + (fp_line (start 10.1 4.7) (end 10.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 81b021be-09ea-4fa0-9ab8-41009b967e80)) + (fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 848dcda3-1a6c-4ba5-a360-843d56bdad9d)) + (fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 8794bf63-9ba4-4c1b-934e-401762daa5ef)) + (fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 90b56c7b-3dcc-4720-a7e3-00a381721e86)) + (fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer "F.SilkS") (width 0.12) (tstamp 98f57516-68e4-44ee-ace1-a76f56ab40aa)) + (fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp a984205a-0d94-48ec-9018-6cb9eb1d78c9)) + (fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp b287c21f-4608-499c-be86-7896b0f002da)) + (fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp c44097f7-4709-402f-ba76-a8190ff16947)) + (fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c4afac00-d447-47dc-b3ed-788b4ae7e9c3)) + (fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer "F.SilkS") (width 0.12) (tstamp c883e12e-6d8d-4a1c-936a-de45b8c158e1)) + (fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer "F.SilkS") (width 0.12) (tstamp cc12da09-7f59-4811-9512-3d8973947496)) + (fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp f4a09438-6c70-4869-b18c-b24b18d68c53)) + (fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp f59b7a64-5860-4ff6-9f6e-d45908d1455b)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 3787d41f-6544-4ba5-8824-4bb5f2af9226)) + (fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 53e59c3c-7159-49ec-b7ba-47632bf0da9f)) + (fp_line (start -1.8 6.85) (end 10.55 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 58d66349-2e02-4037-bd06-eb530c47edcd)) + (fp_line (start 10.55 6.85) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a9ebefcf-9c05-4c78-8d09-712b04b64177)) + (fp_line (start -0.32 4.76) (end 1.5 4.76) (layer "F.Fab") (width 0.1) (tstamp 086505db-af51-4f7f-a853-1b5bfbb447ba)) + (fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 141e3ae6-99a4-4fd0-b805-a6fd8569e5d6)) + (fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 1e22d62b-8e61-455d-b702-423361b9ba8d)) + (fp_line (start 4.04 6.35) (end 1.5 6.35) (layer "F.Fab") (width 0.1) (tstamp 22dc1bdb-76c4-4860-ac91-6f54bbbace77)) + (fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 26524914-118d-4f23-bc74-926f1834da74)) + (fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 301442c4-aa61-41f2-92a0-945b91dbe77b)) + (fp_line (start -0.32 5.4) (end 1.5 5.4) (layer "F.Fab") (width 0.1) (tstamp 31103bc3-0c0d-4606-9ece-45da9e4e2e8a)) + (fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 36934b46-9306-4a57-93bc-f18c53a46a7d)) + (fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 44e21e9f-d6e7-4ede-9da0-ffa37beba617)) + (fp_line (start 4.04 5.4) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 4f859e76-8ece-4b5a-93fa-a3ede460b096)) + (fp_line (start 4.04 4.76) (end 10.04 4.76) (layer "F.Fab") (width 0.1) (tstamp 54199de5-5c57-40dc-932a-0483ca576fe3)) + (fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 8299b3e4-bad7-4548-9a56-ccb63322d1fb)) + (fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 8328d575-5411-4be8-b331-9fe034daa015)) + (fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 839f68eb-d5d6-476b-b06f-6dc258768e6a)) + (fp_line (start 1.5 6.35) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 9e8b2c99-0210-4686-84f1-f44f6be5d64f)) + (fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp a0b58e73-54a7-47c9-aef7-0584ebf25e6d)) + (fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp a8d01fdd-d339-482b-86f3-44f4b85b6a0a)) + (fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp c18a07e7-8ef2-4a7a-a16e-c6666de6a4f8)) + (fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp d9901bcd-cc70-48c4-968d-9ac416f30257)) + (fp_line (start -0.32 4.76) (end -0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp db98cbca-6387-4d8b-a826-c0710887d48a)) + (fp_line (start 4.04 -1.27) (end 4.04 6.35) (layer "F.Fab") (width 0.1) (tstamp e384db72-4c17-44c0-ba71-5a0205872e63)) + (fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp ea793904-fb92-444b-95e5-845e9e7723e3)) + (fp_line (start 10.04 4.76) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp f33ca608-66b6-401f-925a-76f810d5d410)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 13 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 8153fb21-04b7-44f9-bf1d-994e91733f35)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 19 "VOUT") (pinfunction "Pin_2") (pintype "passive") (tstamp ebe58721-ff54-4715-82d2-070e00898313)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 15 "+12V") (pinfunction "Pin_3") (pintype "passive") (tstamp b3fcc2f1-5603-4552-98e3-5bd5e5fbcbac)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu") + (tedit 56DDB9C7) (tstamp 5755a7c8-5181-4407-92f6-709c085e540f) + (at 162.276 80.13) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/e5506cf1-1ae8-417d-8ac9-ab1d784fb254") + (attr exclude_from_pos_files) + (fp_text reference "H2" (at 0 -3.2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1e4f10ff-99a1-4780-995f-07fae5efa555) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a8f9ddbf-0964-45c8-a08b-f4b829beae1f) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d90eec20-ea45-4195-abcc-de96e103b3b5) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 662c29e0-04fc-4c32-9a0e-a6c17488ea93)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 68b741c5-b1b5-458e-ab22-99dc7692c362)) + (pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 485acec3-dd55-49b8-b4b8-de24be6b83b7)) + (pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 568a0c82-7f34-484b-b4a5-36b58c55ab63)) + (pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5bd45787-5d23-42be-9d72-95d59060e1ce)) + (pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 6c9a08f8-e40e-481b-bbf8-4e83a81c0580)) + (pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 78cb0556-d440-4cc6-bba4-874012ef6eab)) + (pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 86d7755f-7239-467c-82ff-28d9f56e5b6c)) + (pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 884891c3-ec5f-497c-a5ec-1bed6e72f30b)) + (pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp b0b6ad84-e84b-4a1d-910c-3b723fc4cf0c)) + (pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d326509c-49c7-4d87-ad2b-99db4f6a9076)) + ) + + (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "F.Cu") + (tedit 5A7A67D2) (tstamp 58eae5eb-eb1b-4b38-a038-8732bfc4f5b7) + (at 84.024 79.93) + (descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf") + (tags "SPST button tactile switch") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/844e5bf1-64d0-475c-8e4c-a0ba4a01f2b1") + (attr smd) + (fp_text reference "SW2" (at 0 -2.6) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 63aedbd9-a5c1-4612-bbbf-94b92b51a593) + ) + (fp_text value "SW_Push" (at 0 3) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9eebc2bf-8095-4ba7-9ef6-359725f81253) + ) + (fp_text user "${REFERENCE}" (at 0 -2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp de25f2a9-9719-4bad-839d-ebe2561ea1dd) + ) + (fp_line (start 3.06 1.85) (end -3.06 1.85) (layer "F.SilkS") (width 0.12) (tstamp 0b3cb9b9-874b-4178-be31-4c038b313745)) + (fp_line (start -3.06 -1.85) (end 3.06 -1.85) (layer "F.SilkS") (width 0.12) (tstamp 0c36fe2a-e503-4428-abc8-f6ba4ee88066)) + (fp_line (start -3.06 1.85) (end -3.06 -1.85) (layer "F.SilkS") (width 0.12) (tstamp 215db1ee-47f1-4a55-adeb-5fa09cfcd8b1)) + (fp_line (start 3.06 -1.85) (end 3.06 1.85) (layer "F.SilkS") (width 0.12) (tstamp 77fdcab3-174b-4e6c-94f5-a17cf6a3b407)) + (fp_line (start 4.9 2.05) (end -4.9 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 41b92499-8eeb-4596-b34b-ac7932729b22)) + (fp_line (start -4.9 -2.05) (end 4.9 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 84144c00-a5b5-417e-a386-719c9a15c0ad)) + (fp_line (start 4.9 -2.05) (end 4.9 2.05) (layer "F.CrtYd") (width 0.05) (tstamp a3785a3f-dba0-46c0-86ee-2a118435b091)) + (fp_line (start -4.9 2.05) (end -4.9 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp e317e827-e53a-446a-a9ba-0e50162cf0ee)) + (fp_line (start 3 -1.8) (end 3 1.8) (layer "F.Fab") (width 0.1) (tstamp 39cb21ff-1dc2-4396-a605-06881b83497f)) + (fp_line (start -1.75 -1) (end 1.75 -1) (layer "F.Fab") (width 0.1) (tstamp 4a63a739-2da7-451b-9b1a-0a1b9638fb84)) + (fp_line (start 1.75 -1) (end 1.75 1) (layer "F.Fab") (width 0.1) (tstamp 6f86f733-78a5-493e-80fb-1f21eec41734)) + (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9a2f518d-c7ff-4b9e-9d72-1e78f344311f)) + (fp_line (start -3 1.8) (end 3 1.8) (layer "F.Fab") (width 0.1) (tstamp bbf91283-72d8-40a9-b7a8-ea305344e2e0)) + (fp_line (start -3 -1.8) (end 3 -1.8) (layer "F.Fab") (width 0.1) (tstamp bdcec101-6d8d-4a28-93ac-5512035d5fcb)) + (fp_line (start 1.75 1) (end -1.75 1) (layer "F.Fab") (width 0.1) (tstamp db0a1b41-527c-4beb-83f6-e5378d96ff35)) + (fp_line (start 1.5 -0.8) (end 1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp dc8ad6b3-9533-4460-a347-5b4b716d6b1e)) + (fp_line (start -1.75 1) (end -1.75 -1) (layer "F.Fab") (width 0.1) (tstamp e8977b9a-f9bc-45b3-9b38-f92fd097b8b5)) + (fp_line (start -3 -1.8) (end -3 1.8) (layer "F.Fab") (width 0.1) (tstamp e995dc75-0d2d-4c4b-96fc-4f37731d3c53)) + (fp_line (start -1.5 -0.8) (end -1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp f1e154e6-5251-48c6-8761-1d901bce38da)) + (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp fabd5a70-d505-4b6a-8fe2-13a1e9114c1c)) + (pad "1" smd rect (at -3.9 0) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "FLSH") (pinfunction "1") (pintype "passive") (tstamp 73b17c75-03e8-4a3a-94a5-2a356a0b5c83)) + (pad "2" smd rect (at 3.9 0) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp af655319-609a-4d2c-9ff5-82f35be18e16)) + (model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_CK_RS282G05A3.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 59831c39-6ebc-43bc-b9c3-5cdd2f5da901) + (at 84.654 89.71) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/130f2f3c-bc50-4952-804b-628d5c07d214") + (attr smd) + (fp_text reference "R4" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f6b761e5-6840-4b08-8e07-b9058972d831) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0fd04c7f-03ff-489d-9113-e200ca35200b) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 5d88b7ae-4d49-4882-ad5c-ea1d00804f2f) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 63eb17ed-bcbc-429d-af7e-0d38ce46ea71)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d3b5d4da-5ab2-4e43-a2fa-564660a2f8e0)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 028fb580-5fb4-4227-9bef-7ae9b6175772)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1cd61420-9052-423a-9da8-6847f6cfc49a)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76e47836-3f78-40c3-b205-eade5918e15c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c2c1a41a-e87d-4160-a203-f4dadf4c2668)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 146dd7d7-e5b0-44f0-8738-af96b6cba653)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2186ee6c-6da1-4ec5-a5af-cddba76f4414)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 77c49721-6079-4403-8121-d9758fe68ed1)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c436fa2d-2cd0-4d81-8a48-eda128076a0a)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 4175e321-325b-4df1-95dc-2f9f1871cce7)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 23 "CS0") (pintype "passive") (tstamp aa39517e-eb2a-4b33-9b41-981f411f92e5)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 5daeee13-4cdb-4baa-a46d-0b2e04761297) + (at 91.474 82.68) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/aa5e61c6-8a82-4297-b860-d795f7e4783b") + (attr exclude_from_pos_files) + (fp_text reference "J1" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2d43cfdd-fc96-4c49-9777-80e8f342f78b) + ) + (fp_text value "Testpoint_RST" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ed323ed2-64ee-4b52-b89d-69c26c510640) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 709bb5f2-3784-4125-9601-d49eea349c1c) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2c1b49bb-1b17-4544-a88f-a4b4fee3a6be)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 315098ea-2e7b-4beb-afc5-f41198e875b5)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 10 "FLSH") (pinfunction "Pin_1") (pintype "passive") (tstamp b2259c0b-a3a2-41d3-87f5-ec7ad170d023)) + ) + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tedit 5FA16958) (tstamp 62a87a55-0d50-4db9-b791-2a93eecdc4f9) + (at 84.96 47.27 90) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "LCSC" "C2146") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/0cf62c31-0ac3-4d05-bf89-62074fa17567") + (attr smd) + (fp_text reference "Q1" (at 0 -2.4 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 13d65da9-0684-4e25-9bb4-bdd291264d9c) + ) + (fp_text value "S8050" (at 0 2.4 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp db95cca2-b6a0-4634-85d8-cb993d51028e) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.32 0.32) (thickness 0.05))) + (tstamp 26cc74b4-a936-4239-8cb3-5ebfbc237086) + ) + (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 58000e67-b560-4729-890e-50fcf305880d)) + (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 58f17f76-b00d-4c28-bb95-bdec46488bca)) + (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp b2428a31-a583-4f07-ad8c-607e83e80f78)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp bb7c3d32-fb41-4866-aaf9-3ace03dcb905)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 0181f199-7d9e-4221-919d-726790c507a5)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 10e20d29-1025-4891-ad2f-52f8c8251e74)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp b081cf92-06fd-4f5d-b188-21bdfb6ca009)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp e32113e6-6af9-41dd-b517-b48f2e19a6ef)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 258dd043-9a1a-4a6d-94fd-993541888031)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 4aad8c2a-9d65-4d5e-bfdc-e5f7345abe97)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 537d3ed8-5c73-4674-a47a-679dc5753abe)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 7d0e672a-11f2-4a50-8464-1612ec0bf92b)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp cf679532-a8e1-4ab2-916b-aa9e49abc40a)) + (pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 6240b148-1603-4610-9602-a89961fa5e23)) + (pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "RTS") (pinfunction "E") (pintype "passive") (tstamp 8169332b-2f2e-4a21-b7cc-d7c81f536831)) + (pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "nRST") (pinfunction "C") (pintype "passive") (tstamp 75bc0064-9db2-4f66-b12b-7b3813a87e8f)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 6a48372c-28c5-4d81-ac00-6bf681a3aafd) + (at 92.89 46.9 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/80a59cad-3314-4ec4-9a84-35d9cfde0bbe") + (attr smd) + (fp_text reference "R22" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp db90b1f3-162d-4f18-a9d0-385a0c575b12) + ) + (fp_text value "12kOhm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 519e2904-1e3c-49d9-a5e2-57c7c9a444fd) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp dada4f10-ad4c-462a-97f2-278e69cbca66) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 57470b16-a35d-4859-875a-8dd132172104)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 917a9f49-e368-4152-a1bb-b6015a6d011d)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3d10ab83-0baf-4640-b687-80a439ff857c)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cbbbde74-54ed-487a-8621-7018057dad6c)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ce723ef2-155b-4b16-95cb-a0d15625d49c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb8b6b86-5e74-45a6-ab98-c94916767180)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 03f6ea6f-f3f4-453c-97f0-7de598e3821f)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3d1356ad-152f-40a0-bfab-a9051483f23f)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6c48b4e1-c0fc-4f2f-abd5-1bc30cf67e87)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a669cb7a-1a51-48ea-9b60-1f7b8fda83a8)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "DTR") (pintype "passive") (tstamp f9338f9a-17e8-450b-8758-06b1724855e3)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 1a9b638c-fb44-4376-bd45-4ec0294023dd)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 73ef53a6-07ed-4935-b988-5fdd703f4c98) + (at 86.58 42.82 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C21189") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/19c9ccc0-cb8f-450c-a626-03f7bcc00cde") + (attr smd) + (fp_text reference "R25" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fd23764f-c3f2-4bb7-920f-90029e1f3253) + ) + (fp_text value "220Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 60bd11e0-2a85-4ba6-8fe8-082d9d42f17b) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp cb8d7539-8554-4e58-a1bd-515334ac03f2) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 540dd9be-2925-49d9-8f9e-8007a8fc7a5a)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f0946a86-232a-4452-bc02-69ac9038a664)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38e6d0ed-a8fc-439c-8d97-af38dc872804)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 497e4f02-08f6-434b-98c0-a5ba486317e6)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp aa195c3c-b025-4241-8b8b-1e4715e13b95)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eddb127c-f686-43bc-a32f-06cb83910d42)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0d404356-e3aa-4bc7-a372-1ca57ca255ad)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1541cc49-de60-4f01-9878-6085e83468da)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a6d44e92-7bbc-42bc-bcbd-64bedc6bf2e9)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ceb7c39e-2ce8-41d9-8a6e-5e2cf12ec4c1)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 63 "Net-(D10-Pad2)") (pintype "passive") (tstamp 4286d43e-bbfc-4109-b40b-d24dfeda9d34)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp af835f96-4096-42ef-94a3-2d0488307c1b)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 829c80f0-932c-4325-9fa4-56c77cbcc3be) + (at 125.58 34.31) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/761406f4-13fa-4c19-8252-e4370dda9ba0") + (attr exclude_from_pos_files) + (fp_text reference "J13" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4f942642-6ebb-4545-8298-78926cba4348) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 63c4584e-4349-44d7-a92b-db3dcf3ce605) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2b581d34-acb7-4fe7-8282-e2a3ce93f159) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a2071209-84d4-441d-9e0d-5b54f339f140)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp df3f373e-fae0-4531-b906-33287cd9b346)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 3 "SWCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp 4fc9ec79-de5a-4810-ae62-ca2ae9a1dd6b)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp 8601d582-4a8e-4220-a436-01a9657c4a05) + (at 165.376 85.13) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/470563d8-5342-4723-8999-8444b4befa49") + (attr exclude_from_pos_files) + (fp_text reference "J4" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 95ad0a76-b049-4245-8fda-6222734cae7a) + ) + (fp_text value "Testpoint_SEN_12V" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 99b51b80-2e25-443d-b2d3-931c9c995558) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5e28c152-783b-450c-962b-eef560153a41) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 095aad9a-5286-495f-b6bf-01693b6232f1)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ecac725a-981e-4166-a882-943ec0232c88)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 55 "SEN_12V") (pinfunction "Pin_1") (pintype "passive") (tstamp fd51f6c0-bfa1-47bf-8bb5-3c4468c0916b)) + ) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp 90552e9c-10d2-4f62-ab79-b218a866d15d) + (at 177.296 72.5) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/951816df-35bc-4a0a-b028-4ebced42f7a1") + (attr smd) + (fp_text reference "D2" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6ebfd699-8ded-4e26-9992-c20e7f6469a8) + ) + (fp_text value "RED" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 641ce6ef-7a48-4c2f-ac15-13fc788919e8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp cf89b456-b534-4316-8b7f-9a772bcb2375) + ) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2e1a3758-869a-4130-aa6e-263bf5453e3b)) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 585a4525-da52-486f-89a5-60d1130b6052)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp b1812b67-054f-401f-af2b-933331d27c91)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4623cd77-5121-4cb9-9732-c282c9564947)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 53e5346e-f6d4-4703-bd26-f14da866134d)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1220c7b-0127-4adc-b3e5-f371cb33f792)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca68fe09-ed83-40dc-9a38-5b81c56d397e)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0b5c16c0-7c6c-4bbd-9217-d848e71a4982)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 2a8877e7-3399-4e52-80f6-bde8b03c5034)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4282e701-2956-4024-baf8-48441c926d6a)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7c59ed40-1b31-4c63-86d3-ffea029174dc)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 96d8c5e3-63d9-41f7-896d-585d499b69fc)) + (pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 54 "SEN_5V") (pinfunction "K") (pintype "passive") (tstamp 1fb8136a-51b8-4f3a-b312-9bac2aa13d44)) + (pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "+5V") (pinfunction "A") (pintype "passive") (tstamp 0898f766-9a8e-4306-8ae7-c53d2138841d)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm" (layer "F.Cu") + (tedit 5D9F792A) (tstamp 937c1359-7e5e-46a0-b359-fc41ca7d1a5c) + (at 112.268 35.56) + (descr "QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py") + (tags "QFN NoLead") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/102280cb-52f1-4d00-a983-b7d0fff143e3") + (attr smd) + (fp_text reference "U3" (at 0 -3.32) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6473b701-6509-4805-84f8-a3b28a2c3a21) + ) + (fp_text value "STM32G031G8Ux" (at 0 3.32) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 81281bd2-a1df-4835-a629-c9ce44ce18aa) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d2c6f176-2733-4ee0-bf76-e7d53f26fa54) + ) + (fp_line (start -2.11 2.11) (end -2.11 1.885) (layer "F.SilkS") (width 0.12) (tstamp 4666a2fc-6328-4e11-83ae-a28772f0c16a)) + (fp_line (start -1.885 -2.11) (end -2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 688907f3-69ed-497e-aef0-80da861f8cb6)) + (fp_line (start 2.11 -2.11) (end 2.11 -1.885) (layer "F.SilkS") (width 0.12) (tstamp a6877b12-9179-468a-bb6d-e507f9279698)) + (fp_line (start -1.885 2.11) (end -2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp aaa78bf1-9cb1-4d78-9cfa-596fdbef7843)) + (fp_line (start 1.885 -2.11) (end 2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp e173e48f-924a-4941-be51-36c36827c526)) + (fp_line (start 2.11 2.11) (end 2.11 1.885) (layer "F.SilkS") (width 0.12) (tstamp f1ef2f9f-1210-4b18-a5c4-664ec1b2260a)) + (fp_line (start 1.885 2.11) (end 2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp fe90543d-fbe7-4e41-9782-a75b664ea513)) + (fp_line (start 2.62 -2.62) (end -2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp 3248820f-df9f-4047-b7d4-5aa117233ecc)) + (fp_line (start -2.62 2.62) (end 2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp 33ae53bc-bb40-4140-acf8-a4224c84248c)) + (fp_line (start 2.62 2.62) (end 2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp 869d90d2-b5e7-480d-9e43-0928991bc778)) + (fp_line (start -2.62 -2.62) (end -2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp d650abac-003c-4f78-b201-51cbcc5e3816)) + (fp_line (start -1 -2) (end 2 -2) (layer "F.Fab") (width 0.1) (tstamp 21872805-042c-4690-9b7b-3e51cbace96d)) + (fp_line (start -2 2) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp cd844213-664d-4e6d-93d0-109759a0c104)) + (fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp d02c8564-0ded-4f77-b029-bfa68acc5b81)) + (fp_line (start 2 2) (end -2 2) (layer "F.Fab") (width 0.1) (tstamp e0559fee-8968-491e-8a0f-b2c12e3483d4)) + (fp_line (start 2 -2) (end 2 2) (layer "F.Fab") (width 0.1) (tstamp e52304dd-dfd2-434b-a672-8a968f74ac5f)) + (pad "1" smd custom (at -1.9975 -1.5) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "unconnected-(U3-Pad1)") (pinfunction "PC14") (pintype "bidirectional+no_connect") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.05364) + (xy 0.3325 0.08) + (xy -0.3325 0.08) + (xy -0.3325 -0.08) + (xy 0.19886 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp ec47ac9a-0618-4909-8e95-7e1ce4022be1)) + (pad "2" smd roundrect (at -1.9375 -1) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 38 "unconnected-(U3-Pad2)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp 3dbdd371-c0eb-4e60-b2d4-4a603daf1bc0)) + (pad "3" smd roundrect (at -1.9375 -0.5) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 51334ed1-1101-4bc2-bf6e-465f0921364b)) + (pad "4" smd roundrect (at -1.9375 0) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp f4f83675-a108-443d-8ab1-8b84bef76819)) + (pad "5" smd roundrect (at -1.9375 0.5) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 11 "~{BUSRST}") (pinfunction "NRST") (pintype "input") (tstamp 56a45f6f-5a51-4cbb-b9cd-389c965a08a1)) + (pad "6" smd roundrect (at -1.9375 1) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 45 "/Frontseat_stm32g031g1/LED_CLOCK") (pinfunction "PA0") (pintype "bidirectional") (tstamp 5f5ca2c6-1497-43d2-8630-acb69e0f5917)) + (pad "7" smd custom (at -1.9975 1.5) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 46 "/Frontseat_stm32g031g1/PWM_2") (pinfunction "PA1") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 -0.05364) + (xy 0.19886 0.08) + (xy -0.3325 0.08) + (xy -0.3325 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 7ea7b434-0b18-4f90-9885-9060dcc06bbd)) + (pad "8" smd custom (at -1.5 1.9975) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 47 "/Frontseat_stm32g031g1/PWM_3") (pinfunction "PA2") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.19886) + (xy 0.05364 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp a090da99-657f-4799-a8d8-b329ac34b5b3)) + (pad "9" smd roundrect (at -1 1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 48 "/Frontseat_stm32g031g1/PWM_4") (pinfunction "PA3") (pintype "bidirectional") (tstamp e93a2c1c-c103-4a2d-b064-fab05abd5846)) + (pad "10" smd roundrect (at -0.5 1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 49 "/Frontseat_stm32g031g1/LED_DATA") (pinfunction "PA4") (pintype "bidirectional") (tstamp b9334461-728a-4932-ade7-0116ff2628b6)) + (pad "11" smd roundrect (at 0 1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 50 "/Frontseat_stm32g031g1/PWM_1") (pinfunction "PA5") (pintype "bidirectional") (tstamp a5e331c8-c28d-4db2-a1a0-13d3e3ede56b)) + (pad "12" smd roundrect (at 0.5 1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 51 "/Frontseat_stm32g031g1/ADC_6") (pinfunction "PA6") (pintype "bidirectional") (tstamp 12535547-48a4-40f3-8eae-bf3d0cd34587)) + (pad "13" smd roundrect (at 1 1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 52 "/Frontseat_stm32g031g1/ADC_7") (pinfunction "PA7") (pintype "bidirectional") (tstamp 26e69a2f-c395-40aa-9dee-938fd24a8e88)) + (pad "14" smd custom (at 1.5 1.9975) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "SIG_B") (pinfunction "PB0") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 -0.19886) + (xy 0.08 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.3325) + (xy -0.05364 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp 09f66d8f-0317-411d-9c53-cff970aafb12)) + (pad "15" smd custom (at 1.9975 1.5) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 5 "SIG_G") (pinfunction "PB1") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.08) + (xy -0.19886 0.08) + (xy -0.3325 -0.05364) + (xy -0.3325 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 05980d44-1000-4f4f-95da-14411bdc2d24)) + (pad "16" smd roundrect (at 1.9375 1) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 39 "unconnected-(U3-Pad16)") (pinfunction "PA8") (pintype "bidirectional+no_connect") (tstamp 8efc0855-d7dd-4606-8681-62920726148b)) + (pad "17" smd roundrect (at 1.9375 0.5) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "SIG_R") (pinfunction "PC6") (pintype "bidirectional") (tstamp 5485c68c-3c43-46d0-a29b-34c7d4fa6160)) + (pad "18" smd roundrect (at 1.9375 0) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 40 "unconnected-(U3-Pad18)") (pinfunction "PA11") (pintype "bidirectional+no_connect") (tstamp 9d83a901-e0a0-4f47-8f38-c5099bb25458)) + (pad "19" smd roundrect (at 1.9375 -0.5) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 41 "unconnected-(U3-Pad19)") (pinfunction "PA12") (pintype "bidirectional+no_connect") (tstamp f0fd685d-1cb6-49bd-8f5d-676d821cd509)) + (pad "20" smd roundrect (at 1.9375 -1) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 8a5eced4-28b7-40ad-872d-e92233191cb3)) + (pad "21" smd custom (at 1.9975 -1.5) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "SWCLK") (pinfunction "PA14") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.3325 0.08) + (xy -0.3325 0.08) + (xy -0.3325 0.05364) + (xy -0.19886 -0.08) + (xy 0.3325 -0.08) + ) (width 0.09) (fill yes)) + ) (tstamp 456c6478-2330-4e91-ad27-5f4b2892a2a2)) + (pad "22" smd custom (at 1.5 -1.9975) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "~{INT}") (pinfunction "PA15") (pintype "bidirectional") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.19886) + (xy -0.05364 0.3325) + (xy -0.08 0.3325) + (xy -0.08 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp a70b3e61-eb6d-4a68-8dc1-5f95e0d1269c)) + (pad "23" smd roundrect (at 1 -1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "SCLK") (pinfunction "PB3") (pintype "bidirectional") (tstamp c6d69120-6975-4676-8402-54a31f6b483f)) + (pad "24" smd roundrect (at 0.5 -1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 22 "MISO") (pinfunction "PB4") (pintype "bidirectional") (tstamp 04c8eb70-f9e6-4023-bbb4-1364c2556008)) + (pad "25" smd roundrect (at 0 -1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "MOSI") (pinfunction "PB5") (pintype "bidirectional") (tstamp 82568fcb-9ab2-4708-a133-d7a42d42051e)) + (pad "26" smd roundrect (at -0.5 -1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 53 "/Frontseat_stm32g031g1/INIT_{IN}") (pinfunction "PB6") (pintype "bidirectional") (tstamp 6a4c5d71-2c02-41cf-bd23-6d1d7297d9ef)) + (pad "27" smd roundrect (at -1 -1.9375) (size 0.25 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 122 "/Frontseat_stm32g031g1/INIT_{OUT}") (pinfunction "PB7") (pintype "bidirectional") (tstamp 93327c4d-00e1-4fd2-8cc4-7c7e3945fe88)) + (pad "28" smd custom (at -1.5 -1.9975) (size 0.136863 0.136863) (layers "F.Cu" "F.Paste" "F.Mask") + (net 42 "unconnected-(U3-Pad28)") (pinfunction "PB8") (pintype "bidirectional+no_connect") + (options (clearance outline) (anchor circle)) + (primitives + (gr_poly (pts + (xy 0.08 0.3325) + (xy 0.05364 0.3325) + (xy -0.08 0.19886) + (xy -0.08 -0.3325) + (xy 0.08 -0.3325) + ) (width 0.09) (fill yes)) + ) (tstamp 3b40e984-c78f-4d11-956d-1b1b3c3d4fb4)) + (model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-28_4x4mm_P0.5mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_MiniMELF" (layer "F.Cu") + (tedit 5905D8F5) (tstamp 9637f5ba-9381-41d8-89e7-d77a6f575d0f) + (at 63.144 76.93) + (descr "Diode Mini-MELF (SOD-80)") + (tags "Diode Mini-MELF (SOD-80)") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608e7242") + (attr smd) + (fp_text reference "D9" (at 0 -2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fab6c4ff-dde1-4347-a659-370893bf29d5) + ) + (fp_text value "Z 12V" (at 0 1.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 19957a25-869b-4384-b7e4-2b782d4b16ba) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f21f0358-d500-4ee2-aab6-5864cdf535aa) + ) + (fp_line (start -2.55 1) (end 1.75 1) (layer "F.SilkS") (width 0.12) (tstamp 6df05b4c-99ba-4bba-8d54-58210a7b97da)) + (fp_line (start -2.55 -1) (end -2.55 1) (layer "F.SilkS") (width 0.12) (tstamp 857ffc0c-8fcf-4941-bd8e-6a9adc882f14)) + (fp_line (start 1.75 -1) (end -2.55 -1) (layer "F.SilkS") (width 0.12) (tstamp 8ad330c8-5297-4677-a36c-f0e5e10b7165)) + (fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 17efcaf1-3ddc-439e-a239-3a7a65ddc54a)) + (fp_line (start 2.65 1.1) (end -2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp d07423e8-94b8-43e6-8a02-d133ca00692c)) + (fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp d9b38c16-569f-458e-8cdd-06fd574c2af6)) + (fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp e996b763-78f4-4986-b704-1d6a714ed751)) + (fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 096687b8-618d-4d40-ba6a-1b63afb77e39)) + (fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 12e8c95e-b58a-48b8-a243-36f8c09e281a)) + (fp_line (start 1.65 0.8) (end -1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 24c6555b-45d3-408e-b4a0-eadb9268f59a)) + (fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 42b565cd-6400-4cb9-9fad-4a4261b5cc1b)) + (fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 566c682f-e44a-4fff-9cb3-5087bb7c8a52)) + (fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 671ffbc1-b866-4271-95bf-0f00c15f9a2c)) + (fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 6a6f744a-a8c8-4dec-ac59-aed12024c7a9)) + (fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 8f948d59-de63-417e-9843-4e87c8534b3f)) + (fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp bf8b7713-9834-4f16-ba66-af62871342f3)) + (fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp d41d695d-3b23-4e18-a194-ca8969501163)) + (fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp dc26b043-9c49-46ee-968a-eb31596433f2)) + (pad "1" smd rect (at -1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "+12V") (pinfunction "K") (pintype "passive") (tstamp d5d8f256-c9d9-4f1e-8c60-a736808b2edd)) + (pad "2" smd rect (at 1.75 0) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp b4357fcc-54b9-49cf-a2f0-13e7f4791dcc)) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 9b1dfd4e-eb60-4668-809d-72bd31b91208) + (at 95.504 81.91) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/114441bb-4199-4f5c-b215-3abd726556d5") + (attr smd) + (fp_text reference "R11" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp af78c044-f6b9-4d7d-88e3-981253b0a42e) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9073e3a4-5ec1-4e2b-8c9b-fdf75192fc08) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 24ada8e8-d602-41b2-9e6c-e46c5c753c71) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 29b70445-71ad-4d90-9cdf-92d8829cb985)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d0b6cf60-89d8-4372-b888-e8dbafc4554c)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80b02744-57ff-416f-a302-a9263bd0e4f4)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b90c37b1-7b28-40bc-a337-b181e6060fd9)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e951ad5b-4b38-480a-b8ba-d881b72017a4)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa21ada6-eac4-48ab-8130-fe8952348cb5)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 63c951d0-da77-42d1-a78e-250bb041ab69)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7dfe3ba2-19de-4fa7-b2b7-93004c180710)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8117991f-732f-4741-b1de-8cf2f322ca35)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp beb2c8a8-715b-4661-9a54-16aaea1a424f)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "ADC") (pintype "passive") (tstamp 68fdea63-4a86-4556-b65b-1f2bd300b02c)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 19 "VOUT") (pintype "passive") (tstamp 0afdced9-fcfb-4b5e-be57-46f071e4a76c)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 9df50f83-b9ce-4f47-ad7f-f443d1b07178) + (at 48.844 88.96) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c989") + (attr smd) + (fp_text reference "C5" (at 0 -1.68) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f545dc5f-d2b5-49fa-a0ce-68cf5d149af5) + ) + (fp_text value "10uF" (at 0 1.68) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4befe2ee-a4b5-4867-b7ce-cb35ad875f63) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp efae56ee-3d9e-4653-8bb6-58c30af40699) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3d11033f-6376-41e1-a2f4-e2e79a9c8fcc)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5a20a70c-004f-4dfd-a75c-a5198e8cc711)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 39251ad2-34ce-4f9f-8721-d44a042a533c)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 64546f45-a3d8-4703-97ab-141f27e1ef56)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7bf232e8-41e2-4474-b3d5-73dd6f185f6b)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp df6c611b-aeeb-4469-98b0-57c0a636e875)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 435527b7-3977-47b3-a700-42b71ae9d8fe)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4ecb170b-1b3d-422a-972c-62e779f332d4)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5e8c8aeb-f9ce-4154-9913-9781b66a5af6)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp b05ce372-018d-4cbb-aa75-0475845292f8)) + (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "/Power/LDO_IN") (pintype "passive") (tstamp 2dbb1b1e-407b-4bad-a1bc-ffe2e9b8b75b)) + (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 582c4999-ce96-4042-b3d6-873ff6469cd8)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp a285c449-cedb-46cc-8e9f-5ab627479691) + (at 125.56 37.59) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "../stm32g031g.kicad_sch") + (property "Sheetname" "Frontseat_stm32g031g1") + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/2265d06c-5de3-42c2-8f12-2e8783f51da0") + (attr smd) + (fp_text reference "R17" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 65c8decc-0221-4967-b193-63ef244844e5) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 64678f6f-f259-4355-b8e3-e5983b094653) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 4f24f6bc-38ae-4311-87d1-283d10e7a53d) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2ba537ad-78cd-4d47-b90c-bbfdd376ac80)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b73898ad-1159-4c35-b433-3772ec2420c6)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 147779a0-2762-4afd-86ac-d23d4f580eb8)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a4218e43-ceb9-4b46-8b8f-f53390b9b034)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp db0927e4-bd1e-4e44-9c0d-d6179f796692)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f1f31b2d-86bf-4459-874e-c173660543bc)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 84eaae13-8298-4ef8-b127-9ac1480fe05c)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 89aa6e2b-0cb7-443a-b9fd-e534ab036455)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 943e3651-e063-4d4e-8b88-95a833e20bc1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a6afc4c5-170e-4cbd-bb6f-043ac67432d9)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 60 "Net-(D4-Pad5)") (pintype "passive") (tstamp 8edf8620-4e74-40b9-9c77-043c1da71635)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "SIG_G") (pintype "passive") (tstamp ff35e073-8d4b-4def-bcbd-b68802c1ac03)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp a8da6854-6176-4d01-9a3a-5f2244e02af0) + (at 156.976 73.53) + (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x06 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/7321b9e3-b2c3-4370-8d92-5b360000c112") + (attr through_hole) + (fp_text reference "J9" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c38509e1-0918-4fb9-8f1a-0057dae014f6) + ) + (fp_text value "Conn_01x06_Male" (at 0 15.03) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 56d343fb-ec45-4417-95d6-5e580a945536) + ) + (fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5128c445-faa2-496e-a345-59d5ae4e2d6f) + ) + (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 5263ccda-40ae-4add-a388-e73c63eab87c)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 57d19c5a-c1fe-420d-acd0-d2d58b755af3)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 62c31525-8db9-4b09-8a5c-00876bdcc34a)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp d610218d-e0cb-4177-99eb-f39b48e48aea)) + (fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp d7ab6e77-b755-46fa-a784-b1fc5cf63ed2)) + (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp de873dfd-0d77-4edb-88fc-d56fe7557c82)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2dde9278-cd92-4b8d-aecb-9384062f8e7b)) + (fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5dee986c-7315-493c-8467-4b5f731d989d)) + (fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 855770b0-d83b-48db-8959-53a85068c23e)) + (fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 8fa1d27d-9531-4ace-b2a6-b970e23b7091)) + (fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 43659b4b-b744-4fb0-9d65-0acd7d76d2ee)) + (fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 4fef1dcb-3f0d-4553-9aed-1eda232ab094)) + (fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 7cae803e-3ec7-442c-870c-ed3ffa36463e)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b3f2a755-2e4b-4a77-835a-3af5471a3d07)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp d958a6d6-d26e-4e2c-bab8-40b7fd0955e3)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 0b0cd9fe-bec6-46a1-b74f-3ed7df9748f6)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 20 "MOSI") (pinfunction "Pin_2") (pintype "passive") (tstamp 1f400900-7074-4770-bfd8-f5060c168318)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 21 "SCLK") (pinfunction "Pin_3") (pintype "passive") (tstamp a369a837-cf81-426f-a2c4-ffbaa806613a)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 7 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 131e1abc-e3c8-4dab-a725-3885be432c70)) + (pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 83 "unconnected-(J9-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 7a967078-397a-4979-85e7-97269fc7a523)) + (pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 19 "VOUT") (pinfunction "Pin_6") (pintype "passive") (tstamp 0d9dcc10-d30f-4cff-8503-d59b6a362042)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu") + (tedit 56DDB9C7) (tstamp ada39d72-010b-452b-bd72-3c33b28d6a58) + (at 162.276 74.18) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/bf3ed105-f9de-416a-a781-912734c46f44") + (attr exclude_from_pos_files) + (fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46b0a019-7949-4e32-866e-d947e965af26) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7f3cca87-8326-4467-9b36-e07884517279) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1001a130-5e6f-4766-b888-7fa7efd37ccf) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 564375f9-fb89-44b9-930c-9e24e3bc4fa3)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 12964a42-665b-4b84-bb49-74cd9216b2e6)) + (pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0cca1724-6cf4-4e8d-ad0e-f7bbc73dc962)) + (pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0edfe51a-22e8-43ae-bf29-637008b09033)) + (pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 457141c0-aed0-4dc8-9018-7e33be37d4fe)) + (pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 546a0f36-68d8-436c-85f9-85ad08eeb376)) + (pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 573ca9b2-4c1e-4612-a1ea-ffdd5f45e9cd)) + (pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 594f6911-51e6-47e2-a52e-0e4ffe50e969)) + (pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp b089b539-0552-40f7-a46f-c5de2bf9902d)) + (pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f2d01df1-63e5-4d84-a51a-86c7f927cc37)) + (pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f87c1de5-9cce-4291-ba7e-1f7b606d2680)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp adf0b907-b296-48c2-89fe-143abb6de249) + (at 125.374 82.52) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/356e866c-f8ca-4490-bd06-b520b0a2bde5") + (attr exclude_from_pos_files) + (fp_text reference "J3" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eef276fe-5507-4cfb-aea6-e09e0d2bb1cf) + ) + (fp_text value "Testpoint_ADC" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c700cf4a-b8bb-4c2a-a716-240027e0cc77) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 463abcf8-5e51-4d28-8924-aa0b9a630fbf) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ae0f4036-34b0-4c37-bc64-e40d676322a2)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 513fbcc7-d4d3-4cf2-b2d5-fc10e765c618)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 16 "ADC") (pinfunction "Pin_1") (pintype "passive") (tstamp 7ed37559-df94-4a2e-bf18-790c828b2b6b)) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x30_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp ae548497-d98d-43ee-aaac-fcf756af178d) + (at 63.5 22.86 90) + (descr "Through hole straight pin header, 1x30, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x30 2.54mm single row") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/8f2f0038-aecd-417c-8ed7-41975f1ad638") + (attr through_hole) + (fp_text reference "J7" (at 0 -2.33 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp acc84745-8296-4969-acdf-9d8fccf24e47) + ) + (fp_text value "Conn_01x30_Female" (at 0 75.99 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 41e15942-9362-4b40-b74e-2bddba7a2bbd) + ) + (fp_text user "${REFERENCE}" (at 0 36.83) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f63c7354-cf27-4092-b85c-1160808d8e36) + ) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00327a3e-d936-4718-ab82-3e44bab0482c)) + (fp_line (start 1.33 1.27) (end 1.33 74.99) (layer "F.SilkS") (width 0.12) (tstamp 1a526f9e-5936-4497-a944-44bd12b465f6)) + (fp_line (start -1.33 74.99) (end 1.33 74.99) (layer "F.SilkS") (width 0.12) (tstamp 1f31ac38-8f46-4319-b638-21814f170f72)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 40d098e4-c22e-4e9a-8a6b-175d19a7fcc6)) + (fp_line (start -1.33 1.27) (end -1.33 74.99) (layer "F.SilkS") (width 0.12) (tstamp 46a36afa-c78e-4632-bd11-2290ac988cc1)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ed507d9a-b1ef-4bbe-9230-6f83b66085f2)) + (fp_line (start 1.8 75.45) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2e1c438f-5a50-4928-9ecb-9b6eeb9964c0)) + (fp_line (start -1.8 -1.8) (end -1.8 75.45) (layer "F.CrtYd") (width 0.05) (tstamp ad75ac1d-3b49-4015-a00c-68bdb69888b8)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d9052d62-317a-4cf6-992a-9afaa2f7056f)) + (fp_line (start -1.8 75.45) (end 1.8 75.45) (layer "F.CrtYd") (width 0.05) (tstamp eea33a7d-84c1-4bd2-98c7-480ec28cec2f)) + (fp_line (start -1.27 74.93) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 1811d85b-d97c-446f-975b-c7a842927a39)) + (fp_line (start 1.27 74.93) (end -1.27 74.93) (layer "F.Fab") (width 0.1) (tstamp 29414de5-3296-4b83-b239-84f5712268a6)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3eebaa30-57c2-4866-bbc5-e5f159154b87)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 56cab3ae-2358-4089-ba4a-6c0878c345a1)) + (fp_line (start 1.27 -1.27) (end 1.27 74.93) (layer "F.Fab") (width 0.1) (tstamp 9f76f6bc-5413-40eb-b64c-2ec7fe6e38b6)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 87 "unconnected-(J7-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 70e59372-c1df-4dfe-823b-972671d7ab7e)) + (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 88 "unconnected-(J7-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 541733cb-334e-46a0-9f91-2bd780d7a4d0)) + (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 89 "unconnected-(J7-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 1c0fdb15-40d0-458c-bff7-718bb024ee4f)) + (pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 90 "unconnected-(J7-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 29320a9a-a481-4bcf-bde2-a1e1028fc5ca)) + (pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 91 "unconnected-(J7-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 6b39b5e1-fa04-49c9-883f-2297e7e59ecd)) + (pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 92 "unconnected-(J7-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp e9a34969-859d-418d-a2e2-4c019d2b712e)) + (pad "7" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 93 "unconnected-(J7-Pad7)") (pinfunction "Pin_7") (pintype "passive") (tstamp f57fb958-5d6d-44ec-bdef-f529ad6672a4)) + (pad "8" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 94 "unconnected-(J7-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 32873434-08ec-490e-a288-383b077f6b75)) + (pad "9" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 95 "unconnected-(J7-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 8ce3d49a-a9f4-4ebf-a378-e540ccc5c5f5)) + (pad "10" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 96 "unconnected-(J7-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp ec2bce0f-2b1b-4c04-8e0f-532aeb585347)) + (pad "11" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 97 "unconnected-(J7-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp 6b70b25c-c2d4-4067-9181-cd4103c5e229)) + (pad "12" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 98 "unconnected-(J7-Pad12)") (pinfunction "Pin_12") (pintype "passive") (tstamp 62d0ce10-2e71-40a1-9316-918c4c9e0148)) + (pad "13" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 99 "unconnected-(J7-Pad13)") (pinfunction "Pin_13") (pintype "passive") (tstamp 07d1f9ad-be6f-4200-bd5e-7ad5ce8d5e65)) + (pad "14" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 100 "unconnected-(J7-Pad14)") (pinfunction "Pin_14") (pintype "passive") (tstamp b1527bf5-82f8-48f1-9fdb-58a21b2cc31a)) + (pad "15" thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 101 "unconnected-(J7-Pad15)") (pinfunction "Pin_15") (pintype "passive") (tstamp 2496a5aa-f996-4e6d-8288-790949192921)) + (pad "16" thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 102 "unconnected-(J7-Pad16)") (pinfunction "Pin_16") (pintype "passive") (tstamp e971f124-b3c2-4e4e-81d1-6704492d5a06)) + (pad "17" thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 103 "unconnected-(J7-Pad17)") (pinfunction "Pin_17") (pintype "passive") (tstamp 15b2cff0-c26a-4432-af33-ff2242a45944)) + (pad "18" thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 104 "unconnected-(J7-Pad18)") (pinfunction "Pin_18") (pintype "passive") (tstamp ac66d6ed-3ba8-4023-8fba-fb4c41fa311b)) + (pad "19" thru_hole oval (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 105 "unconnected-(J7-Pad19)") (pinfunction "Pin_19") (pintype "passive") (tstamp 8b58b9e3-2cbe-40a4-8f43-a38a37712317)) + (pad "20" thru_hole oval (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 106 "unconnected-(J7-Pad20)") (pinfunction "Pin_20") (pintype "passive") (tstamp 23a01414-3550-4c39-8c35-37e1de035604)) + (pad "21" thru_hole oval (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 107 "unconnected-(J7-Pad21)") (pinfunction "Pin_21") (pintype "passive") (tstamp 95c3fa4a-7eaf-463e-b440-a05ef6bf1427)) + (pad "22" thru_hole oval (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 108 "unconnected-(J7-Pad22)") (pinfunction "Pin_22") (pintype "passive") (tstamp bf9b252b-2841-4f3a-802a-50203c330b85)) + (pad "23" thru_hole oval (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 109 "unconnected-(J7-Pad23)") (pinfunction "Pin_23") (pintype "passive") (tstamp 2a81b033-8547-4c72-ad7b-28b4e9b99bac)) + (pad "24" thru_hole oval (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 110 "unconnected-(J7-Pad24)") (pinfunction "Pin_24") (pintype "passive") (tstamp 507418e9-41cc-4bf2-9bc7-7d5c99778b22)) + (pad "25" thru_hole oval (at 0 60.96 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 111 "unconnected-(J7-Pad25)") (pinfunction "Pin_25") (pintype "passive") (tstamp b65ee962-3a24-45db-9d19-0f2eaf3cb2f0)) + (pad "26" thru_hole oval (at 0 63.5 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 112 "unconnected-(J7-Pad26)") (pinfunction "Pin_26") (pintype "passive") (tstamp 35925130-8f84-4177-85fb-0ca899789549)) + (pad "27" thru_hole oval (at 0 66.04 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 113 "unconnected-(J7-Pad27)") (pinfunction "Pin_27") (pintype "passive") (tstamp 8d46e561-821c-4da7-aad2-e631b3660198)) + (pad "28" thru_hole oval (at 0 68.58 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 114 "unconnected-(J7-Pad28)") (pinfunction "Pin_28") (pintype "passive") (tstamp 8ba15374-4d9d-44ab-8697-37b2f317fa21)) + (pad "29" thru_hole oval (at 0 71.12 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 115 "unconnected-(J7-Pad29)") (pinfunction "Pin_29") (pintype "passive") (tstamp ce0449f3-744e-4092-8d06-6a029a0ec16c)) + (pad "30" thru_hole oval (at 0 73.66 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 116 "unconnected-(J7-Pad30)") (pinfunction "Pin_30") (pintype "passive") (tstamp 725783fc-7dd0-438a-8d4f-fbdfdacde6d7)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x30_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_SMA" (layer "F.Cu") + (tedit 586432E5) (tstamp b14becbb-b745-4908-8095-f60f8698f3b4) + (at 67.544 68.53) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "LCSC" "C2480") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607c7255") + (attr smd) + (fp_text reference "D6" (at 0 -2.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 382db060-0ecb-4e21-9e51-680e43a24f09) + ) + (fp_text value "SS14" (at 0 2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0e499650-7a63-4d12-8cd8-51f0d1f317bb) + ) + (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2e4178f2-9edc-4e37-9a0e-34a54334c7b1) + ) + (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 2f6f409e-c34a-4621-b656-5885e5cfb7e7)) + (fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 833c5967-f0ae-4ba6-80fd-90a123e14ada)) + (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp be994a75-90f5-44b0-ac9f-0cb590c6e730)) + (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 8a94aafa-83a7-4634-ac3a-c7d2dd7634a8)) + (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b8f6b2fd-0261-47c6-b530-3b7aa4115db7)) + (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d0bcc6f7-fb1d-44f5-9070-30527266f685)) + (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d252d8c8-54a2-4c91-993e-50518c2bac27)) + (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 174eed65-d607-4313-802c-63f2d399b518)) + (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 5976b04b-eb5e-4b40-8fac-e66abdd48026)) + (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 6656a0c1-c28f-42bd-9f10-cb8f68fff8bf)) + (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 770049d0-3fdf-4623-bd98-9d0520dd7005)) + (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 7ea10436-cebd-4643-b9fd-38ca35222a73)) + (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 84ccd10f-f852-4f10-8791-2789e367a54d)) + (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp d0ce42bd-5601-42f1-8647-ddde363452d8)) + (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp ef0d7372-558d-4925-ba45-4e4ff95bb678)) + (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp f259b310-0f91-42ba-8bfa-2203afd77c86)) + (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp ff598929-a6b1-4c0e-9b5b-a4cf2cdc2a64)) + (pad "1" smd rect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "/Power/LDO_IN") (pinfunction "K") (pintype "passive") (tstamp 90694ea7-5f9a-45ba-9302-9d6fea433930)) + (pad "2" smd rect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "+12V") (pinfunction "A") (pintype "passive") (tstamp 8e7c43b3-4442-458c-9ad1-7f154d9aad9a)) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp bd876a74-1af0-4a34-884c-c08cbe20dbce) + (at 148.44 34.544) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../stm32l011f.kicad_sch") + (property "Sheetname" "Frontseat_stm32l011f") + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/64e0ac62-fdcf-46b8-a20f-7dceda5c04e8") + (attr exclude_from_pos_files) + (fp_text reference "J15" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 671acd9e-6c9f-4f0c-91c0-8e468364966a) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 514035b5-d87f-4610-b66b-039fbf414597) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dcbe6252-abf1-45ff-a9ed-ce584d3c2d96) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 07c5e2ec-7eb4-4f53-b61e-1bacf324dc6d)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7a783112-cf3e-4646-af74-c902efc210a2)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 3 "SWCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp 1d00c552-39f7-4e08-886e-0ed2f6d9bae7)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp bf06b505-cecb-4860-b710-d9aaece330eb) + (at 161.326 85.13) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/204e0472-2192-4b9d-9464-d7a17a87d6c9") + (attr exclude_from_pos_files) + (fp_text reference "J6" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 054f0d30-25ec-46a3-bab6-f336409d1d80) + ) + (fp_text value "Testpoint_SEN_5V" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d2684a81-9983-49fa-a645-8ea0e2d36121) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a8c4d828-de79-4d60-ad5b-6cfbb8441de2) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 8b18d78c-a975-486e-8ff3-d7b4756f361c)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 95eea33c-96e0-4060-bf13-dc24dd3dc50f)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 54 "SEN_5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 24826be3-6688-43ff-9bbe-32a083aab75c)) + ) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp c6c0736a-cb86-42c5-adc4-8a971aca2534) + (at 173.246 72.5) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/39373570-7670-4cb7-a6a5-cc14f5369c13") + (attr smd) + (fp_text reference "D1" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d9785540-acd0-4c2c-941a-7395b537d5c7) + ) + (fp_text value "RED" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4de7872b-8f33-4c26-97a4-de6b934b585c) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 1ccd941b-865b-4991-b67b-e5c34d57464e) + ) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2a64d925-6deb-49a5-be96-d7ef4f0f666a)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6b82bf75-9365-4163-801e-14a828658e25)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 98c36a3d-9d16-40ed-ab28-67c011080f8c)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 16e9e7ff-137e-4bcf-b715-ac3fec2d1413)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a60e065-36eb-4ac0-8270-41cdd9164dd3)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 620ced16-7b80-42f9-b8b0-8a874afe4ff6)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6a04026c-8551-44e2-8047-ea35a212c652)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 15ebf30e-80d4-47d0-8e0a-676832c16386)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 247aa871-6284-4e14-ba1a-d48d4fed522d)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 45a792c9-486f-411a-80e9-3d7b8139ddb2)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4e6a93ea-3e20-4fca-a95a-54b1ac8182a2)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp fbd456f3-5100-4ec5-b48a-c28442888cdb)) + (pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 4bad849c-788d-4e02-8d5c-a74488c59aa0)) + (pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 14 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 449f81db-7771-4678-9416-dad86562ac34)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp cc7a7abf-a431-46e6-8ed5-1dcdc907245d) + (at 125.354 90.82) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/5a634fce-0d05-4f11-9f08-2bde44e5542e") + (attr smd) + (fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c2a9aaed-55d5-4d14-bb3e-e989d9251aed) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2a2efe44-bc68-402e-b729-edc30b283069) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp cf397af3-3458-4812-aa5b-697d9d0e664b) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 083b53df-4aa5-425f-9d06-61f5942f9d7c)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fa7eefa2-3146-4ea4-99de-186861d0d01a)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3d95eefc-4df5-4496-9869-39b79ac45985)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 565c8035-879d-47c8-bd96-22107b656ae3)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5f2cc3fb-395f-433b-9846-63f6d49e07f2)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f83efcfa-d7da-48a2-b573-5fff689d51f9)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 174d01ac-a957-41d8-a83d-fdae15881eb0)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3ce1f971-02b9-4533-b950-b01c9e656cb7)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 62d0ca5e-9f80-4f18-9ae9-650803f34ceb)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c1b1e7c3-34fa-4b02-a4b4-622187dd0f86)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 590862c1-1221-46b6-9781-354308eb67b7)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 29 "EN") (pintype "passive") (tstamp 50e9caed-a2a2-406c-a76d-0b3af5f4295a)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp cfc5160c-d362-4484-9ba5-f1c12b4acd85) + (at 66.974 80.46) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607c2a6a") + (attr smd) + (fp_text reference "C11" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1b8b4826-041b-4b3f-8050-92af6f03daad) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6361a2d1-4f5c-4227-b46f-86d57f899658) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 5203c7ea-46c0-42b9-927f-f5198f398221) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 88bdb0e8-9906-4b97-b7c6-30c66a48acb8)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp eb9abdff-6973-465e-a57b-f33250cb1837)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 13b27202-7014-49b8-9491-86a6a5ca59bf)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9f6150b8-74ae-410e-859a-e53626842163)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0cc26e7-54be-4406-b00c-f703edf717e8)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ed9a0651-17ae-43b3-99a5-05219e1483f0)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 13b6a561-1b70-40e3-ac4b-a97c634c9aa1)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 692e2e83-7825-4c5d-a653-a422b3a8e639)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 822c5f7f-ffbc-46c4-adc1-5b92c7eeb1cc)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8ec82c76-d889-4440-99c6-52ddb4ade4a4)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "+5V") (pintype "passive") (tstamp 636b25f1-eced-4a89-b104-6190b8a2530e)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 6511a04d-170e-495e-8f09-06eb9955c26b)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp d042fa9f-4cb2-40d9-ac7d-af8fdc72c70d) + (at 136.194 75.8) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/d6f4e801-1099-4e33-b014-8954dad3ec11") + (attr smd) + (fp_text reference "C2" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7293c5e1-991e-47ce-bf27-660053680378) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2b88a254-d712-4edf-af27-07dc27be16e8) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp dd458701-3e63-419a-8cab-1cf81f541569) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 01320a1e-ee3d-4902-a343-45af326219e6)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 165fc46c-5076-4699-b49a-db2d40ede203)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a0ba097-6aae-4acf-a198-c6220689c916)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9469258b-e8b0-4024-9bf2-31126923833b)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 99211b2a-1bb1-4099-9ec9-2c37375ed52c)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bdd46e68-f00d-4be0-8395-679d70a9045e)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1f9d3b06-9ef7-414d-b3cc-45d12fb7a26e)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5b6fcf1c-4a52-422a-8014-a49a0bf22aea)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6035e182-b3ea-46ae-9748-c3f3e2a8b040)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6b25b214-3675-4aba-9864-2387fb050ae6)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "~{INT}") (pintype "passive") (tstamp eadce905-0167-493f-a7f0-a27549928737)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp af7ca927-a01a-4fc5-ad61-81024799b135)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp d2205caf-3814-4f3b-b1d0-c5e23f64615e) + (at 129.364 85.8) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/b136bf36-dc5f-4712-bfda-edd8d2919fed") + (attr smd) + (fp_text reference "C4" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6436daa5-4291-4870-833e-714351de2728) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0d4e6aca-5cff-4761-badc-5000d512ae95) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 197d81bf-fb60-4a84-9fa7-5b4d50f1a07e) + ) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 24927faf-68cf-4395-9fde-5cbd3468b5ee)) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 345f91df-4907-4153-b84d-a36c57cf2370)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 69d5e2db-744e-4759-9a97-6b869e29a2bf)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7de5a76b-dd90-4e46-814e-1526943b96c9)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d952aeba-fe3d-42e3-8ac9-d16dbe9d258b)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e33ffcf9-acf5-4514-b0d7-b4cc20be2eed)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 32cb41aa-1bd0-4f0b-b47c-c7ddba663dc4)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8f5dfe32-9011-4345-87c9-0a42712fd474)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c6be4241-b379-470f-b411-14de557e4bed)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cba2398f-ed79-4ece-aacd-1f43f2cfc92c)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 11 "~{BUSRST}") (pintype "passive") (tstamp f691a5b7-6049-4ede-875b-c1e5b89b757a)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 5d34855f-fe1f-441e-b056-bacd8952166a)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp d817b470-62b9-410b-8223-a933a2683eae) + (at 58.494 89.24) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060947827") + (attr exclude_from_pos_files) + (fp_text reference "J20" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 86781b49-325a-4d66-b9cd-eb7f17fbbb3a) + ) + (fp_text value "Testpoint_GND" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 82e4421c-43e0-44c8-9946-ebd2d4864eb2) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bf49a06c-242d-4150-bbb9-5d236f9e2413) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp e92a2685-e687-4b15-a447-a99206cf58a1)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d83ee417-5be1-4171-961d-1570d5413c5c)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 92c4dfff-49a0-488c-b4f7-275ea0a54000)) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp d8503fb1-f540-4a8e-877b-e93801cb202a) + (at 80.624 90.48) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/9a53c107-7884-47e4-baa5-c7224342b670") + (attr exclude_from_pos_files) + (fp_text reference "J5" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 625088b0-731e-4183-b22e-152b172006c8) + ) + (fp_text value "Testpoint_INIT" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6e5def47-8b67-4c25-8605-62a6c3dc98c6) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b0ef23bf-b2c0-43c5-83c7-738e6f7fcf51) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 39efc99c-2439-42d8-8102-0f3699be9be0)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0d0b95c6-4492-4540-a2e7-85299f30ed1c)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 53 "/Frontseat_stm32g031g1/INIT_{IN}") (pinfunction "Pin_1") (pintype "passive") (tstamp b4bdbb57-61b9-422a-b459-30e66d36ae46)) + ) + + (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu") + (tedit 5EBA9318) (tstamp ddb27002-b78c-4b41-bd35-ebe203b71815) + (at 66.539 72.98) + (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") + (tags "capacitor tantalum") + (property "LCSC" "C16133") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060794539") + (attr smd) + (fp_text reference "C9" (at 0 -2.35) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 41b837c3-8dc1-4977-ac0b-f775ad6c9dc7) + ) + (fp_text value "TAJB107K006RNJ" (at 0 2.35) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 38061ea3-ac47-4659-8df1-afc32c347f74) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.88 0.88) (thickness 0.13))) + (tstamp 1f40b510-1c35-4f1f-a692-69dcc9ae8118) + ) + (fp_line (start 1.75 -1.51) (end -2.46 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 4d819fb8-03fd-4b5c-b938-93a8ec289883)) + (fp_line (start -2.46 -1.51) (end -2.46 1.51) (layer "F.SilkS") (width 0.12) (tstamp 99c9c183-b1b0-4617-a09c-1a929822976c)) + (fp_line (start -2.46 1.51) (end 1.75 1.51) (layer "F.SilkS") (width 0.12) (tstamp 9d927dce-f16d-4bad-b5d2-525715c67dae)) + (fp_line (start 2.45 1.65) (end -2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 2d6261d4-952c-4376-a304-432a7de54bd9)) + (fp_line (start -2.45 -1.65) (end 2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 30a32bc5-af31-4432-8d16-39ff6af754b3)) + (fp_line (start -2.45 1.65) (end -2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp b8c5cd2c-7765-4adf-8679-f1cdc1838522)) + (fp_line (start 2.45 -1.65) (end 2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp e2b66b3c-e1a2-469b-b663-fdce46ffa759)) + (fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 4e39e81c-bf3a-43f7-a85e-d31b294ca0bb)) + (fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp 59f8093d-162b-4ebe-aff5-87563c7dd2a5)) + (fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer "F.Fab") (width 0.1) (tstamp 62204961-c0fa-4f82-bb70-d6da23eed7a1)) + (fp_line (start -1.75 1.4) (end 1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 786d74bb-5af8-428a-99d9-15d39390255b)) + (fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer "F.Fab") (width 0.1) (tstamp d5d94db0-a9f1-4b5d-a52c-e5391ba27a45)) + (pad "1" smd roundrect (at -1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) + (net 7 "+3V3") (pintype "passive") (tstamp 2d85471b-6ff0-406b-b40f-0645d52f29ae)) + (pad "2" smd roundrect (at 1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) + (net 1 "GND") (pintype "passive") (tstamp c8c3b6c2-bbc4-4590-9e68-7c4d3ad4e892)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_SMD:D_SMA" (layer "F.Cu") + (tedit 586432E5) (tstamp dfe592e0-bab1-48e1-85f5-7321b391c362) + (at 42.594 87.28) + (descr "Diode SMA (DO-214AC)") + (tags "Diode SMA (DO-214AC)") + (property "LCSC" "C2480") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c973") + (attr smd) + (fp_text reference "D7" (at 0 -2.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 235bd53f-eb24-4910-abd2-bd72d823d2af) + ) + (fp_text value "SS14" (at 0 2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 12b66f0b-67ed-49ab-8e62-85489b1afeb9) + ) + (fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 72258964-acb7-455b-804c-c2fdcd02a3c7) + ) + (fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 5949a5a9-be7c-43da-b35c-edc9d5c06d3d)) + (fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 796afeab-9864-4fa7-b079-f7d5786f91fa)) + (fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp d4bd82a3-3c67-46dc-a4f8-b126ec27136d)) + (fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 32d9aadd-9fe4-490e-a4ed-a1a441b8b70c)) + (fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 4e4c6436-529d-4a39-92b4-792c78f21b7b)) + (fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 99b4b37e-2d20-4f92-8f34-e8f037df4c9e)) + (fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ad1c63d0-ae64-4d32-901c-96778fbbc444)) + (fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 0773fd1c-c7e0-4b20-b86f-bbd88617471d)) + (fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 09d7bdc9-72e1-477e-8a69-eaf9abcefc35)) + (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 2a530160-314f-46ec-8a1a-38db1d4954c8)) + (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 33478a9f-e67b-4ed8-ad6b-04a81b6fea87)) + (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 3811e5a2-56b8-4490-9c5b-bc8f83857850)) + (fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 38334ebf-21d3-4caf-af82-87de67282fd7)) + (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 425daf96-011e-4f9a-b890-6fa52595d2b4)) + (fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 4cc2766b-904c-4733-b715-6a6c28d32fe4)) + (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp e0ee024a-e89f-44ee-870a-36fdc83b5e3f)) + (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp e4b6abdf-f065-421f-b8c4-07f363435f7a)) + (pad "1" smd rect (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "/Power/LDO_IN") (pinfunction "K") (pintype "passive") (tstamp 4ce48ef0-eb05-475e-9b23-fc3a2ef1a962)) + (pad "2" smd rect (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "+5V") (pinfunction "A") (pintype "passive") (tstamp d4a78677-3532-4a4c-b4d5-c39ebc95fc50)) + (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp e5c1af14-3909-43ee-a2de-0f7a8f0e1d4d) + (at 84.03 42.78 90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/a82d064e-0436-457a-800f-f2af2ec55ea1") + (attr smd) + (fp_text reference "D11" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e72e5167-67b9-497d-82a9-81336f9c2b98) + ) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 79a3cd12-e0ef-4677-89ce-9b262dc02051) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 08068606-8e35-4b59-9149-9d9a28eb2301) + ) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5a6a27b1-4b2c-4ffa-a36d-efef30308eab)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 764cb0b4-baa9-478e-8f15-ab93823ae38e)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp d625eb97-6761-43be-b866-769161cc34aa)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 445013ee-5309-4f8c-a563-ed1647cb88d9)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d275af9-3685-40a6-978b-1cf4e18e21f7)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9b484b6c-04df-4509-bf46-34adf4c03b40)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fae03618-8d03-43b3-8286-b4d78fa5f35e)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 1d64cb00-4923-4d75-8583-0ccc40a84f32)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2e667969-436c-4751-b374-ce5185855c08)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 74b761fb-0888-4e81-b739-d7f708726c24)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp be9bdbb3-bae3-4417-b615-8123e4119aa6)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c1dc62a5-c1fd-4af4-ba18-01c6f8465aab)) + (pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 64 "/USB Programmer/RXLED") (pinfunction "K") (pintype "passive") (tstamp 90e0c559-b906-40b2-9dd7-66e11b9a16f5)) + (pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 65 "Net-(D11-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 7188f516-35ba-4b93-a58a-c0a1413b380a)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "RF_Module:ESP-12E" (layer "F.Cu") + (tedit 61FED6E0) (tstamp e61d3617-b043-4637-a3bc-9b27ba0a8229) + (at 65 40 90) + (descr "Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf") + (tags "Wi-Fi Module") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/a1b1e820-83e8-4b7d-a7f6-f9ea3f656f1c") + (attr smd) + (fp_text reference "U1" (at -10.56 -5.26 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 998f08f0-ee49-4aeb-aad7-8db1e6dc0db5) + ) + (fp_text value "ESP-12E" (at -0.06 -12.78 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5c721c0e-0a29-47bd-87f8-c8190f43e32c) + ) + (fp_text user "Antenna" (at -0.06 -7 90) (layer "Cmts.User") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp af191f2f-967e-4da3-afb7-c7008a3009f5) + ) + (fp_text user "KEEP-OUT ZONE" (at 0.03 -9.55 90) (layer "Cmts.User") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bd923029-c258-4f5c-8691-2f34fc390280) + ) + (fp_text user "${REFERENCE}" (at 0.49 -0.8 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 57884516-575c-4556-9058-d8721a9a1f8c) + ) + (fp_line (start -6 12.12) (end -8.12 12.12) (layer "F.SilkS") (width 0.12) (tstamp 3e868dd2-c73b-4aa6-9932-833f1a8b5cba)) + (fp_line (start -8.12 12.12) (end -8.12 11.5) (layer "F.SilkS") (width 0.12) (tstamp 5da6b2e5-3e05-4723-b169-7dac60ff09c3)) + (fp_line (start 8.12 11.5) (end 8.12 12.12) (layer "F.SilkS") (width 0.12) (tstamp 638ff3d0-f807-4640-afec-acde7b8285aa)) + (fp_line (start 8.12 12.12) (end 6 12.12) (layer "F.SilkS") (width 0.12) (tstamp b774c69d-b209-4da8-a7ab-97b1f7c6449f)) + (fp_line (start 8.12 -12.12) (end 8.12 -4.5) (layer "F.SilkS") (width 0.12) (tstamp d169c798-71bf-4ad4-b5e4-99010cc858d6)) + (fp_line (start -8.12 -4.5) (end -8.73 -4.5) (layer "F.SilkS") (width 0.12) (tstamp f2a0ddd8-3e90-4c4a-97ec-41750a4126d5)) + (fp_line (start -8.12 -4.5) (end -8.12 -12.12) (layer "F.SilkS") (width 0.12) (tstamp f3711b21-1420-4a40-8dfd-f49955a1ea69)) + (fp_line (start -8.12 -12.12) (end 8.12 -12.12) (layer "F.SilkS") (width 0.12) (tstamp fd19bfff-0265-42fa-a017-4361a1b91c76)) + (fp_line (start 9.05 13.1) (end -9.05 13.1) (layer "F.CrtYd") (width 0.05) (tstamp 33b31d8f-810a-4279-a7a7-2eaa04908afd)) + (fp_line (start 9.05 -12.2) (end 9.05 13.1) (layer "F.CrtYd") (width 0.05) (tstamp 587a62fd-70fc-49ed-beb2-c7cf43861475)) + (fp_line (start -9.05 -12.2) (end 9.05 -12.2) (layer "F.CrtYd") (width 0.05) (tstamp a8c6df46-8bb4-4c3f-85bc-c6c6b7c5b966)) + (fp_line (start -9.05 13.1) (end -9.05 -12.2) (layer "F.CrtYd") (width 0.05) (tstamp b40aefb8-634d-4c26-9b1c-219d164f37e7)) + (fp_line (start -7.5 -3.5) (end -8 -4) (layer "F.Fab") (width 0.1) (tstamp 39eef482-f237-4e4b-a504-aaf84e4cb566)) + (fp_line (start -8 -12) (end 8 -12) (layer "F.Fab") (width 0.1) (tstamp 68a9d7a3-bfcc-42d3-9367-1e77472efda7)) + (fp_line (start 8 -12) (end 8 12) (layer "F.Fab") (width 0.1) (tstamp 7c84d005-41fd-4063-8402-d85705ce7aa1)) + (fp_line (start 8 12) (end -8 12) (layer "F.Fab") (width 0.1) (tstamp 8ff7a274-7296-45d4-8d65-36c243af6311)) + (fp_line (start -8 12) (end -8 -3) (layer "F.Fab") (width 0.1) (tstamp 9587f651-d73a-4900-873b-6a60990b5e93)) + (fp_line (start -8 -4) (end -8 -12) (layer "F.Fab") (width 0.1) (tstamp a8e72134-11c2-49f9-9213-53e8fe771b26)) + (fp_line (start -8 -3) (end -7.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp feb23424-df2e-48c9-b4a9-85f1c5fc2795)) + (pad "1" smd rect (at -7.6 -3.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "nRST") (pinfunction "~{RST}") (pintype "input") (tstamp 0b5c8f19-89d2-472f-857d-c3c3f10caaf1)) + (pad "2" smd rect (at -7.6 -1.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "ADC") (pinfunction "ADC") (pintype "input") (tstamp f94bc5c4-d51e-4d9b-9e5e-ff4b36d8d5cd)) + (pad "3" smd rect (at -7.6 0.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 29 "EN") (pinfunction "EN") (pintype "input") (tstamp 8f3b4127-0e5a-4eb8-8979-bde75f056871)) + (pad "4" smd rect (at -7.6 2.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 30 "unconnected-(U1-Pad4)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (tstamp f8af40f7-0a69-4b1b-967a-d706daa47acf)) + (pad "5" smd rect (at -7.6 4.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "SCLK") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 9d6e25e2-149e-4497-8012-fad204912407)) + (pad "6" smd rect (at -7.6 6.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "MISO") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 46eb110b-09d9-4249-a1cc-b0faf0f24c11)) + (pad "7" smd rect (at -7.6 8.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "MOSI") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp b2972289-8ca4-473f-a0c2-6bcbebc2675a)) + (pad "8" smd rect (at -7.6 10.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 2474ff37-65d4-4723-a8c1-747cccaad9ea)) + (pad "9" smd rect (at -5 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 31 "unconnected-(U1-Pad9)") (pinfunction "CS0") (pintype "input+no_connect") (tstamp df30f2de-3edc-4521-b98c-9b43b82dbe86)) + (pad "10" smd rect (at -3 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 32 "unconnected-(U1-Pad10)") (pinfunction "MISO") (pintype "bidirectional+no_connect") (tstamp 3a1e6f9f-b290-4cd4-ba58-51c5d76d3bca)) + (pad "11" smd rect (at -1 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 33 "unconnected-(U1-Pad11)") (pinfunction "GPIO9") (pintype "bidirectional+no_connect") (tstamp b27b4aea-512a-4dc2-bf48-da7169fe89d3)) + (pad "12" smd rect (at 1 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 34 "unconnected-(U1-Pad12)") (pinfunction "GPIO10") (pintype "bidirectional+no_connect") (tstamp 24917f3e-f671-463d-b835-ba6a40da01a8)) + (pad "13" smd rect (at 3 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 35 "unconnected-(U1-Pad13)") (pinfunction "MOSI") (pintype "bidirectional+no_connect") (tstamp f2143df7-3622-49a6-88ed-38e0ab56676b)) + (pad "14" smd rect (at 5 12 90) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 36 "unconnected-(U1-Pad14)") (pinfunction "SCLK") (pintype "bidirectional+no_connect") (tstamp 6b110e6a-d9e6-4027-a3f0-abac22221e26)) + (pad "15" smd rect (at 7.6 10.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b17d3431-bf90-416d-a30b-eb83aff4662f)) + (pad "16" smd rect (at 7.6 8.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 23 "CS0") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp b7b9b504-03b7-4567-bb02-e31511f33a26)) + (pad "17" smd rect (at 7.6 6.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "~{INT}") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 8f8bca2a-75f8-495f-9db9-50dde5b89c18)) + (pad "18" smd rect (at 7.6 4.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "FLSH") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp f01283ed-a593-4b84-ab40-f8f1ce0f2e8f)) + (pad "19" smd rect (at 7.6 2.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 53 "/Frontseat_stm32g031g1/INIT_{IN}") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 8a879d51-6df1-4d21-8457-69922114ae78)) + (pad "20" smd rect (at 7.6 0.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "~{BUSRST}") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp b492f2c8-7989-40ca-b1ce-4c53e8c6b8f4)) + (pad "21" smd rect (at 7.6 -1.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 17 "RXD0") (pinfunction "GPIO3/RXD") (pintype "bidirectional") (tstamp 883e1dbc-5d80-4b11-8e78-6b1f38b68f7d)) + (pad "22" smd rect (at 7.6 -3.5 90) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "TXD0") (pinfunction "GPIO1/TXD") (pintype "bidirectional") (tstamp 8cba3efd-8779-4d22-a7cf-dd4dd77dd93d)) + (zone (net 0) (net_name "") (layers *.Cu) (tstamp b4222739-7114-48e3-bd23-25f97065e31d) (hatch full 0.508) + (connect_pads (clearance 0)) + (min_thickness 0.254) + (keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints not_allowed)) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 60.2 48.12) + (xy 60.2 31.88) + (xy 52.88 31.88) + (xy 52.88 48.12) + ) + ) + ) + (model "${KICAD6_3DMODEL_DIR}/RF_Module.3dshapes/ESP-12E.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp e90dd063-5138-49e1-934b-29f9458b1456) + (at 136.194 78.31) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/1e1a853f-36ac-46ab-9e8b-75d5eabb3192") + (attr smd) + (fp_text reference "C1" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0d1a6ec3-b075-4dc8-a48c-3070279ffe8c) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f160a72b-c145-4b21-a1f2-d0be0b1e0afe) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp fd9d5bbc-32db-4f73-9d89-d915ff0aacb1) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8881ae3b-0ae5-4e7e-af0e-0bfe17c4f4ab)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e735dafb-9b6f-4068-b139-e5e604e2df44)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 36c53d8a-f342-4187-9e8c-731ef7ff6519)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b53f588-8fea-409b-a90d-8494495f6f55)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54e7845a-a648-4459-922a-911787a23505)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5d7bca0-85e8-4abd-a01e-43e5d8b60dfd)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 59828dba-3649-4c20-bfd6-fd4f0e50888e)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 96b6d5c2-e902-4ba0-8a55-5d054fa2fbf6)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ba0631b5-a6ab-4f1c-8dae-dd70c987c046)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cd9c163d-9259-47b6-a4bc-8adc4b9d7a89)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "nRST") (pintype "passive") (tstamp cfab61d5-c032-4fa8-90bf-984a5b894179)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 61c2aa7a-b299-4ad1-b949-0281bc8d0958)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEF1) (tstamp ea299816-9048-42af-a08d-610a99a2d74e) + (at 91.28 54.92 90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "LCSC" "C2286") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/4493a54a-4171-4ae0-92d3-5d61270df441") + (attr smd) + (fp_text reference "D10" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 298e4d92-3c39-4cff-9df5-ca87d72d8349) + ) + (fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46fcca40-8eca-4308-9506-3f072d834a6e) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 0031be06-1c2c-434b-a69f-99611366a022) + ) + (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 55e134de-526a-4b86-881f-1dfc43644e74)) + (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6aed1700-df9b-441c-8886-8230c7f7f7d6)) + (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6c26d1c8-aa2e-412e-8b68-8a868fa03cf8)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1e2eb6f9-5c23-4e7a-af2b-7dcaf7656620)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8dfcc228-a960-4ffd-ab2e-dd175ba9d2d9)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af8dbc69-4150-422b-b876-f443e0809142)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd282264-d8b8-4799-a884-30104e9165d6)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 06ca41e9-b208-4ee9-895d-4de07695ad90)) + (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 27714483-0d87-4ada-b5cf-06b3fd899ef0)) + (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 58d5bddf-3fd0-410c-9b2c-df9b211d3ba7)) + (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 7a1844e8-d4c6-4be5-a23a-0fd6fb6092ad)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 983d3299-2a30-4e2a-867d-45d0ef3bccf4)) + (pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 62 "/USB Programmer/TXLED") (pinfunction "K") (pintype "passive") (tstamp 0f99fb51-1166-44e7-aa19-bda2027edd19)) + (pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 63 "Net-(D10-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 3f5aa324-b3aa-41b5-a313-b1bd78094afb)) + (model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp eae187ef-96ca-4fe2-ab95-82ccb1d4a831) + (at 66.974 82.97) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C14663") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607b779d") + (attr smd) + (fp_text reference "C7" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 77162955-e33f-461c-ade8-5d393106c86b) + ) + (fp_text value "100nF" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 47afcf07-8c56-49c8-9100-41bf1d15537c) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 8b20e0a1-b6f9-4d7f-a9e7-0f69b2969387) + ) + (fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 24498d55-d812-402b-bba3-bc0d03e114c3)) + (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 66c6b0a6-bafe-400e-9c1a-dff50a78b32b)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 17ca3061-86d6-4753-b4d6-e826c016f14c)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2831bdc1-f87a-4648-938e-e42fc2ebf364)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d152bf9-6206-4a5c-83df-e8e76f2ae3b9)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b982e0ac-7b22-4969-8145-d79cb5fb9d2b)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 21536418-5d70-4525-bc6e-7c745a8ec4ef)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8c1b9b44-9442-418b-9e71-937cdaf8d8c3)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 915b56bb-296b-4596-9c77-ddb45573552c)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c8636124-6aa3-4e4a-9215-1d108e56b8cb)) + (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 8a006029-94c1-40eb-954c-3a63e9bd0e6b)) + (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp cdc42b0a-f086-4333-b028-d21232db1152)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp ecc603b0-743d-4831-928b-265b479c8995) + (at 92.89 50.91 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23179") + (property "Sheetfile" "../usb_prog.kicad_sch") + (property "Sheetname" "USB Programmer") + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/01f735fb-3377-414d-9c60-98273fa7ca07") + (attr smd) + (fp_text reference "R24" (at 0 -1.43 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4de97de7-7066-4254-809d-2b6527a12b8b) + ) + (fp_text value "470Ohm" (at 0 1.43 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ed0341af-cdc8-4f86-9c2b-59419afd36f6) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 4f8d93b8-d273-482f-8ba9-e46d9dedfb3d) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 13e87a4c-44d7-4c87-aa8a-ebd8166e919d)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1c3f1149-53cf-4bbe-bade-0ab9fa8c3b51)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 35f9ed0b-7c6f-400c-9c07-6ebb6bc3c59b)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 597c6433-e00e-4672-bef3-5e45e3160b55)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 87443cc0-18bf-477a-87fa-a50587684f72)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 87575507-d4de-4b73-b9f0-d00228d2760b)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2091c97c-d8ad-4a43-83cd-3ca8270b6b03)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 477da2ce-fc5b-4cc1-a669-03134b69c1e9)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4a62ca45-6030-4da9-a2f3-547b775bc32f)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8dfed1e8-6f8e-4201-bd29-e34e236a14b4)) + (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "RXD0") (pintype "passive") (tstamp 81255b08-338c-431d-b008-bf4622c91711)) + (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 66 "Net-(R24-Pad2)") (pintype "passive") (tstamp ccd271c6-c2cb-4ea5-ac7f-808493e14b91)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp eced4fb1-8f4d-464c-90e4-af86de5930c1) + (at 152.326 73.53) + (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x06 2.54mm single row") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/04014e2e-cb46-469c-967e-c6bcf4518bff") + (attr through_hole) + (fp_text reference "J8" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d6384bbd-e6d3-4a67-9a26-dd5cf3b0b900) + ) + (fp_text value "Conn_01x06_Male" (at 0 15.03) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 47a610d8-e6c3-4aa5-bbdf-a2adb35d2ae2) + ) + (fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7c99d0d5-1aa6-415b-a0c7-4589c172933b) + ) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 03374786-d170-46db-b07d-e55ffc419cc8)) + (fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 164f0cc8-3bd3-485a-a432-faef9c516951)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 84209f84-de7c-42c8-b992-c9f25af03ba2)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8563c2ea-4ed8-4bc9-ae66-edf4eca26e06)) + (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp a8765174-962f-4508-8f12-873f4ce8b802)) + (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp ed190aa9-3e50-4169-bf52-ce9be4307967)) + (fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 93a2f749-0625-4a7f-90e8-f438f95607ff)) + (fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 96ebf8a2-545b-48ec-814e-45c4114baae1)) + (fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp dc7114d7-ffd3-42ee-8a5d-f17489489ac8)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f3a2ed13-26ee-40ea-ba8c-e8e529edbbea)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1ff339c2-2188-4858-96d0-69248b0d78a9)) + (fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 7430432c-cdf4-4a40-acd1-f3e90d77cb26)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7961ff7e-6114-44f8-8806-32cf66b5a5ca)) + (fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 8d0f1fa2-b685-49ff-ba0f-b5c1af3709ed)) + (fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp feba98b6-8121-408c-829c-324ea3dfd88f)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 82 "unconnected-(J8-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 18f408af-23f1-40be-aec8-1cd9fbf224ce)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 11 "~{BUSRST}") (pinfunction "Pin_2") (pintype "passive") (tstamp 0e7e1da8-0bbb-4041-8b83-f23ff903e4cf)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 9 "~{INT}") (pinfunction "Pin_3") (pintype "passive") (tstamp 4b5edb00-2986-493d-946f-218b920f5cb3)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 22 "MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 535b1168-8da0-4fc6-9ba9-900f96760bc7)) + (pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 23 "CS0") (pinfunction "Pin_5") (pintype "passive") (tstamp 3cbfd2ad-da33-476d-a55d-23472160c5cd)) + (pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 24 "SWIM") (pinfunction "Pin_6") (pintype "passive") (tstamp dfe6eba6-3386-4b10-bfd2-322a2f14af81)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp edfee915-d0d0-44ab-85b0-80dcdbad8484) + (at 58.694 85.71) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c4cdd") + (attr smd) + (fp_text reference "C8" (at 0 -1.68) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 59de8e21-2d9d-4c3a-a0b0-be18d9f5eeaf) + ) + (fp_text value "10uF" (at 0 1.68) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a75fd4c0-a6f1-4ca6-a541-2ef8dc14fd56) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 2dcf6df3-0e46-4aa8-882d-2b511cb15055) + ) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 756cacc7-cfdc-43d0-b181-b473d57a08f9)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b8b67c37-fad6-4b20-86b8-311d58683a91)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 128a831d-ae2d-4861-87e7-8e6b2e51fb76)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 20327c15-634b-47d5-997d-a42857e7d493)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ce6b6640-a467-4659-86b6-71005ab5a6c1)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e68a86d9-b28a-4c90-bfbd-504da0eb4e22)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 15de26f2-f435-4c25-864d-36295440c7a2)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3b82cbb8-1271-4e45-b9a1-596e49aea5b3)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 44c5f7ec-f4c7-4bd2-b390-80d99b7c1c95)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e0226cca-c4d9-4a94-89d9-07aaf6e625c8)) + (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp 3257d15c-4588-4097-ba2f-8b4a849356a4)) + (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp 5087cb17-4ff8-4d80-a03f-cc309cba5421)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp ee834f9f-f055-4faa-8b01-4b21c792a995) + (at 173.206 75.05) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23179") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/00b052de-af65-4c18-b885-94c41be8f64e") + (attr smd) + (fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 84fa1dfa-ba27-4f9a-ba44-c833dfd8260e) + ) + (fp_text value "470Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6835a55f-d381-420e-8053-07650a0c6fff) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 37129406-9622-4f0a-bb4e-3bd5ea441902) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 039a98d0-578f-4dd2-8bc7-524cff753d50)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 796f0461-dcb0-43af-ab3f-7d92c9ce0685)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6769ed81-62fd-440e-9e3f-b647dd00b003)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc23e9e5-8ea4-4d12-a258-1cb71ebda780)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d5695311-7e7d-4b05-a45d-761863e5681b)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d7d4d815-9a77-41b5-85bf-a1d505933109)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1a50681c-f563-41e5-b281-af25410034cf)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9a0461e1-be03-4123-b46c-696410f3f0eb)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9e548d9e-cf3a-430c-8ec4-f86c55e2414e)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ade2f23b-582d-4737-b174-e9b475560483)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 55 "SEN_12V") (pintype "passive") (tstamp 74352d34-eed5-481e-b2b1-31544a4cb2a8)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 15 "+12V") (pintype "passive") (tstamp 7a40a818-256f-49ed-887d-ac6b4c08ca78)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "F.Cu") + (tedit 5A7A67D2) (tstamp f210f3b5-c66e-4a23-ae0d-a92b20f2d70c) + (at 86.074 67.68) + (descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf") + (tags "SPST button tactile switch") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/009fb402-daaf-4ee4-a841-e2020a5a92cd") + (attr smd) + (fp_text reference "SW1" (at 0 -2.6) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp aae49a82-b938-44f4-9d68-5769619e685a) + ) + (fp_text value "SW_Push" (at 0 3) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 16531398-1d41-4b4b-a24e-478f5f7a6598) + ) + (fp_text user "${REFERENCE}" (at 0 -2.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f3eb77eb-3871-491e-84ca-64f3c0b96041) + ) + (fp_line (start 3.06 -1.85) (end 3.06 1.85) (layer "F.SilkS") (width 0.12) (tstamp 57eae113-a4bd-4d57-aed8-e74845c0969f)) + (fp_line (start 3.06 1.85) (end -3.06 1.85) (layer "F.SilkS") (width 0.12) (tstamp 593ce9c0-e2f6-4591-b82d-b42e0575bd3d)) + (fp_line (start -3.06 1.85) (end -3.06 -1.85) (layer "F.SilkS") (width 0.12) (tstamp 60375f40-b674-494e-8af4-5b4d70edeb86)) + (fp_line (start -3.06 -1.85) (end 3.06 -1.85) (layer "F.SilkS") (width 0.12) (tstamp edbdc2cd-16d7-4635-bdc0-f638b8c3f256)) + (fp_line (start 4.9 -2.05) (end 4.9 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 8b59e5fe-ffc2-4d24-9dd6-2f112096576f)) + (fp_line (start -4.9 -2.05) (end 4.9 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 95457ee1-9e60-4924-898b-fce8cafd4402)) + (fp_line (start 4.9 2.05) (end -4.9 2.05) (layer "F.CrtYd") (width 0.05) (tstamp aaff29c9-6d25-4d95-8853-91978863f443)) + (fp_line (start -4.9 2.05) (end -4.9 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp fe41b384-2d21-4520-bd0f-50de31937d88)) + (fp_line (start -1.5 -0.8) (end 1.5 -0.8) (layer "F.Fab") (width 0.1) (tstamp 35688e6f-6d40-49c1-a269-a3e3f4a0251b)) + (fp_line (start 1.75 -1) (end 1.75 1) (layer "F.Fab") (width 0.1) (tstamp 368ecb99-0518-4d61-8989-b2c6f05233e7)) + (fp_line (start 3 -1.8) (end 3 1.8) (layer "F.Fab") (width 0.1) (tstamp 40279e24-a00a-4be4-a590-134e1e452c03)) + (fp_line (start -1.75 1) (end -1.75 -1) (layer "F.Fab") (width 0.1) (tstamp 4e4447f5-3025-410f-bacf-4f945f68aacc)) + (fp_line (start -3 -1.8) (end -3 1.8) (layer "F.Fab") (width 0.1) (tstamp 4e9813a3-9d7d-4988-b90e-22b53fe43cc4)) + (fp_line (start 1.5 -0.8) (end 1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp 6412a95d-c696-4125-8fc0-c6ef9cc64496)) + (fp_line (start -3 -1.8) (end 3 -1.8) (layer "F.Fab") (width 0.1) (tstamp 6a6c824c-b7cc-42b1-bb65-3d4d4205df5b)) + (fp_line (start -1.5 -0.8) (end -1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp 7271a8cd-5600-49f0-a9b6-a9097c8bbac3)) + (fp_line (start 1.75 1) (end -1.75 1) (layer "F.Fab") (width 0.1) (tstamp 7c4e1567-7942-42d0-b1eb-ecd84a507b33)) + (fp_line (start -1.5 0.8) (end 1.5 0.8) (layer "F.Fab") (width 0.1) (tstamp 84bb9f2b-168e-434a-b7da-29ae8519415a)) + (fp_line (start -3 1.8) (end 3 1.8) (layer "F.Fab") (width 0.1) (tstamp a716653e-6000-443d-bc84-cb82199a2c3a)) + (fp_line (start -1.75 -1) (end 1.75 -1) (layer "F.Fab") (width 0.1) (tstamp b65cfc6b-7220-4e89-932f-0253dd8dd8e2)) + (pad "1" smd rect (at -3.9 0) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "nRST") (pinfunction "1") (pintype "passive") (tstamp 4e7d6124-b919-495b-8bc8-52d714281c32)) + (pad "2" smd rect (at 3.9 0) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 47c3c616-5440-4ae7-a6e5-3b390ea78b0e)) + (model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_CK_RS282G05A3.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp f28e74a6-83d1-49ce-8a45-8ab87373a068) + (at 90.604 85.96) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C22790") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/6ee8e72d-a680-4049-822e-be1b1fddfe27") + (attr smd) + (fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4617be39-88a4-48b5-834b-8150b85e49e3) + ) + (fp_text value "12kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bf9b10ae-f4a7-433c-adb7-d09d911a776f) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp aecac873-adcc-4e9f-a2bc-ed1454fe064f) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cf65904c-4dec-43a4-996c-bb51641cecb3)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp dd75a426-f5a0-4573-95c1-22f91470513c)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5664422c-0cc9-456b-9852-dbc81d416095)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 777869b0-49ea-47cb-a313-a85b6f59bb10)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b673541b-6491-41d7-a6c5-c9f8a4db0624)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e5b7fe64-5a81-4157-b235-5f2db3878c5b)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 17972716-9f06-4d02-a7a9-a76b5a23d91c)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 439be131-fc1d-43de-9bbe-601996c19232)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6a63cbfe-e610-4645-8b15-df02729f495c)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cf9ae5a0-55d3-4317-a41b-6c89cfec7bc2)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "+3V3") (pintype "passive") (tstamp c6f89c2c-a1cd-40c7-8df0-9e77e51d7a04)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "FLSH") (pintype "passive") (tstamp e5079886-0d60-4564-8956-2f2347d7598f)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") + (tedit 5A02FF57) (tstamp f2ade651-f3d4-4628-9b93-1e70b33cf339) + (at 55.044 80.08) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "LCSC" "C6186") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c93e") + (attr smd) + (fp_text reference "U5" (at 0 -4.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 88c37419-618e-4bb2-8a69-3d1bcab3c95e) + ) + (fp_text value "AMS1117-3.3" (at 0 4.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a5cd0027-8a01-4675-b9e6-98a66b961cad) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 3f806b32-5c15-4541-aede-58a860e328b9) + ) + (fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 15e7cf4f-ce76-4c1a-b6ce-18d2d0de5874)) + (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 3cd7452a-4a85-40f1-b301-ceaba01889c2)) + (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp b318387c-002e-4d77-ae9f-3e24635f95dd)) + (fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp c3ed5a19-90e8-4c4d-a29d-abc1406a52c1)) + (fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 1edbfad4-5db8-4d7c-a5fa-fe54b5138ad5)) + (fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 26a386da-40a7-4a01-9a61-c62d0913bd8f)) + (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 65dd5783-998d-44b3-8b58-0b2878b2cef2)) + (fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp dec426e3-1e4a-451f-9649-9acde8d0a520)) + (fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 2fa972a1-ea4b-43e1-a56a-df11388dd38a)) + (fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 46cf09f4-2a41-4b0e-9936-40977df82148)) + (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 5fe9ed4c-f5a6-43fc-80dc-e01fefea9c64)) + (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 87decf13-b358-40eb-882d-8ed6d7a5ad13)) + (fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp b04748da-635e-463d-9595-7dd0548c9c2d)) + (pad "1" smd rect (at -3.15 -2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 99ab5346-e0fd-44db-9fa1-a12eb251fe7e)) + (pad "2" smd rect (at -3.15 0) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 340804d9-19d4-4f8b-ae4f-24506ac7b71f)) + (pad "2" smd rect (at 3.15 0) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp ca12a003-8415-464e-ba9d-d8470c575261)) + (pad "3" smd rect (at -3.15 2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "/Power/LDO_IN") (pinfunction "VI") (pintype "power_in") (tstamp 08896182-8ee7-472a-8f47-7c3118b1ce15)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp f4a458de-28c3-4b7a-a1e4-2e73a03c11bb) + (at 62.194 80.06) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor") + (property "LCSC" "C15850") + (property "Sheetfile" "../power.kicad_sch") + (property "Sheetname" "Power") + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c5abb") + (attr smd) + (fp_text reference "C10" (at 0 -1.68) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dc0e1afd-bc9f-4b2e-b09e-a89ad18d0d02) + ) + (fp_text value "10uF" (at 0 1.68) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cc5c822b-2dec-45a2-ad0d-1be4ceaaf2ab) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.5 0.5) (thickness 0.08))) + (tstamp 5f2fb02d-129f-4243-a7b6-532c67f59673) + ) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 5026d795-b78b-4812-a24c-06ac11ef6778)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 780e12ea-a3ad-473a-a835-1d3ab90f8bf6)) + (fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2b6d5efa-bbde-4ff1-a3d7-566b26cabec7)) + (fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b7072e9b-5902-4743-9459-237ce3476836)) + (fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c086b5d4-1982-4c14-9129-c17b5ac5ab70)) + (fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ffd92bd4-fbde-42cc-9d3f-1fe265bb7e94)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 2bf2b861-9655-443b-b653-b84faf4fcea6)) + (fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4fd617c0-cc75-4030-8768-92b96e936c4e)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5b9bdd61-d48f-4887-98f0-45e471ffdf2c)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7246872c-4733-4caf-bda9-db31fe4a2ea7)) + (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "+5V") (pintype "passive") (tstamp 330dc480-bf02-4643-84e4-d8d6de2e60a2)) + (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "GND") (pintype "passive") (tstamp aef4a39c-df2c-48d2-9125-37d1ffc09b93)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu") + (tedit 5A0F774F) (tstamp f6079596-ed8f-4a40-b8e1-1b9b636d91a1) + (at 86.574 84.53) + (descr "SMD pad as test Point, diameter 2.0mm") + (tags "test point SMD pad") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/d7d96841-de0b-4b68-93dc-ad2abeaf9cc2") + (attr exclude_from_pos_files) + (fp_text reference "J2" (at 0 -1.998) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8ce443a3-ad3f-4933-b763-6feaf7031980) + ) + (fp_text value "Testpoint_RST" (at 0 2.05) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b0bf00ea-45a2-4250-b133-6231aeae73e7) + ) + (fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 130b00a7-37a8-4694-bc2d-5b8c6e174599) + ) + (fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 67cceb14-31aa-4697-bcb8-fe3b96b193c0)) + (fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1a774b0a-d155-4a7a-ba72-4f57bd0c22be)) + (pad "1" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 8 "nRST") (pinfunction "Pin_1") (pintype "passive") (tstamp 7539930a-3870-4e59-947d-ee8984efe933)) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp f84ccdc0-406a-4f97-ae68-bd467534a97a) + (at 165.316 88.41) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "LCSC" "C23197") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/f4342455-91b5-41bd-92cd-881d2e934125") + (attr smd) + (fp_text reference "R9" (at 0 -1.43) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0781e713-ecc5-4dd2-8eb6-c19be9d95f9d) + ) + (fp_text value "51Ohm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 4b4729d5-5f90-4358-9251-686f7967dffd) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 1e911368-bcf3-4b41-8226-8517e803b694) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1c8680f4-a996-4382-b052-f7c6042a15e6)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 62a582de-9f60-4f97-a458-308ad52fc195)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad53589b-f926-4a82-a045-9b6e52002e43)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c97fddc8-a9fb-4a46-a68c-752227ca9f32)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2d734df-486d-4457-9ea7-07f0221a9c04)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d73aa74b-c30e-460d-b274-6ea04093033a)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3b7903a5-dada-4df7-bc6a-69645dfffffc)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 57b9ed17-15fe-4046-a041-083afe28b33f)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b4a4c6f5-45bb-40eb-9086-2d2f06a1361b)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e0c69c23-7188-451a-80f8-45244ca0e271)) + (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 84 "Net-(R9-Pad1)") (pintype "passive") (tstamp ce39ec37-68a8-4075-8d61-58f429c8ccc0)) + (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 54 "SEN_5V") (pintype "passive") (tstamp d38e7d4c-5ebf-430f-9c86-5048c8964eeb)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu") + (tedit 56DDB9C7) (tstamp fb9cd4ad-207b-43f8-b6e9-910a581dc366) + (at 168.226 80.13) + (descr "Mounting Hole 2.2mm, M2") + (tags "mounting hole 2.2mm m2") + (property "LCSC" "-") + (property "Sheetfile" "hw_test.kicad_sch") + (property "Sheetname" "") + (path "/f269bf9c-d364-4e08-adcc-792c848f70a4") + (attr exclude_from_pos_files) + (fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ef73f0d1-45bf-4546-bf76-76e7a06cd99d) + ) + (fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9a4e7bcf-c403-4781-9c64-588c9960ec0f) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 879e2430-3c6d-40b8-b7de-6dcc72056fd4) + ) + (fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 085b72db-6dc9-4f29-8181-86b67c9f973e)) + (fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6e0381cf-0880-4b4b-b1e8-85d039d3b143)) + (pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 18b71928-b8ae-4eac-a282-6d6d7a1c94dc)) + (pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 607d2776-7c03-4bc6-8eff-163d6590af1e)) + (pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 707b4e09-857a-4e16-b13f-b128a71fd8fe)) + (pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 71dad07b-cd2d-42d3-a188-241ef0fd1c10)) + (pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 88d0c9c3-b7d2-4c38-966d-dba04985de57)) + (pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 94cf939d-62d8-47a5-83cb-8ac3ae785feb)) + (pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp ea908264-d540-448c-b808-1d3042679784)) + (pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f591475d-7553-4598-8ff2-1c49bf1a8a55)) + (pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) + (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp fc431404-2073-4c3c-ae04-c136a81b90ac)) + ) + + (gr_line (start 160 60) (end 160 20) (layer "Edge.Cuts") (width 0.1) (tstamp 042b7d7d-67c6-4af0-a3af-71c8962c0414)) + (gr_line (start 60 20) (end 60 60) (layer "Edge.Cuts") (width 0.1) (tstamp 447fdc1b-010c-41b3-9648-39756d90bad6)) + (gr_line (start 60 20) (end 160 20) (layer "Edge.Cuts") (width 0.1) (tstamp 7489a421-0f43-497a-9ce5-9194205a34b7)) + (gr_line (start 60 60) (end 160 60) (layer "Edge.Cuts") (width 0.1) (tstamp e5f548c4-bc2c-4baf-a81e-95b9919acd70)) + (dimension (type aligned) (layer "User.1") (tstamp 2adb097a-b007-4e89-b378-cca96521e098) + (pts (xy 60 20) (xy 60 60)) + (height 17) + (gr_text "40,0000 mm" (at 41.85 40 90) (layer "User.1") (tstamp dc9dcd32-91c7-460d-ae94-3adb3f4149a4) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + (dimension (type aligned) (layer "User.1") (tstamp 2c386168-8187-482f-9c2d-d306a8033915) + (pts (xy 60 20) (xy 160 20)) + (height -14) + (gr_text "100,0000 mm" (at 110 4.85) (layer "User.1") (tstamp 82ef572a-44ba-49e5-923f-40b719117143) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + + (segment (start 71.5 39.752) (end 71.12 40.132) (width 0.25) (layer "F.Cu") (net 9) (tstamp 2f0e3238-6f70-4b63-a7e0-b3644e2ec10d)) + (segment (start 71.5 32.4) (end 71.5 39.752) (width 0.25) (layer "F.Cu") (net 9) (tstamp c2c7bd23-174a-47a3-bd20-7017f0944dfe)) + (via (at 71.12 40.132) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 7ba0250a-149e-4aaf-b782-f99a032e7b1e)) + (segment (start 71.12 40.132) (end 149.86 40.132) (width 0.25) (layer "B.Cu") (net 9) (tstamp 1ababe1f-2486-4b9a-87c6-537338ad2d38)) + (segment (start 65.5 32.4) (end 65.5 40.1) (width 0.25) (layer "F.Cu") (net 11) (tstamp 270ddfc6-c9a6-4faa-aba1-d5cd432770d7)) + (segment (start 65.5 40.1) (end 66.548 41.148) (width 0.25) (layer "F.Cu") (net 11) (tstamp 7f7dd7b6-2fb6-4e0e-b267-c4825b8ca81d)) + (via (at 66.548 41.148) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp c912ce8d-c6a2-4ea8-8879-a3af2170b814)) + (segment (start 66.548 41.148) (end 149.86 41.148) (width 0.25) (layer "B.Cu") (net 11) (tstamp 9a18aee6-e78d-4cce-812b-aa445d1cd383)) + (segment (start 73.5 47.6) (end 73.5 45.551402) (width 0.25) (layer "F.Cu") (net 20) (tstamp bf19d37b-363b-45c0-9f9f-be213f0e14f3)) + (segment (start 73.5 45.551402) (end 71.128598 43.18) (width 0.25) (layer "F.Cu") (net 20) (tstamp dd9488c2-a389-4d17-99b4-baf6f8a42f7a)) + (segment (start 71.128598 43.18) (end 71.12 43.18) (width 0.25) (layer "F.Cu") (net 20) (tstamp e7f70524-1547-42e2-8f95-69f4558604cc)) + (via (at 71.12 43.18) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 20) (tstamp 5e60b9a7-9b34-4e16-b946-c906a7000391)) + (segment (start 71.12 43.18) (end 149.86 43.18) (width 0.25) (layer "B.Cu") (net 20) (tstamp 0407f20c-dcf0-44fb-b682-e06537941ec6)) + (segment (start 69.5 47.6) (end 69.5 43.53) (width 0.25) (layer "F.Cu") (net 21) (tstamp b7ed3019-b2c7-42d9-b0be-3dd50c643328)) + (segment (start 69.5 43.53) (end 71.12 41.91) (width 0.25) (layer "F.Cu") (net 21) (tstamp c7527fe9-393c-4484-908b-ef33b9ef28bc)) + (via (at 71.12 41.91) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp 6c448366-b842-4be3-8c69-9e69aad7298c)) + (segment (start 72.136 42.164) (end 149.86 42.164) (width 0.25) (layer "B.Cu") (net 21) (tstamp 371caeea-536d-4a71-ace6-4453779c1693)) + (segment (start 71.882 41.91) (end 72.136 42.164) (width 0.25) (layer "B.Cu") (net 21) (tstamp 9af40915-75dc-42ed-81fb-f18fc833cee0)) + (segment (start 71.12 41.91) (end 71.882 41.91) (width 0.25) (layer "B.Cu") (net 21) (tstamp ec3ed544-c92e-4973-b0ab-6c549da8c862)) + (segment (start 71.5 44.576) (end 71.12 44.196) (width 0.25) (layer "F.Cu") (net 22) (tstamp 843997a6-2fb7-4fb8-8120-0c304ba3802a)) + (segment (start 71.5 47.6) (end 71.5 44.576) (width 0.25) (layer "F.Cu") (net 22) (tstamp e94baaea-639f-4968-bb32-b3f9088d42ff)) + (via (at 71.12 44.196) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp c7d8c0c2-7626-4ff0-bf76-bf8c70a3d2b7)) + (segment (start 71.12 44.196) (end 149.86 44.196) (width 0.25) (layer "B.Cu") (net 22) (tstamp 136d709b-c3be-43c2-9f0a-96d97d150201)) + +) diff --git a/pcb/hw_test/hw_test.kicad_pro b/pcb/hw_test/hw_test.kicad_pro new file mode 100644 index 0000000..36bd826 --- /dev/null +++ b/pcb/hw_test/hw_test.kicad_pro @@ -0,0 +1,436 @@ +{ + "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.508 + } + }, + "diff_pair_dimensions": [], + "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": [], + "via_dimensions": [], + "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": "hw_test.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": "", + "vrml": "" + }, + "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": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "416a4216-683d-4c31-9c69-0c1695999893", + "" + ], + [ + "a6cf2d2a-674b-4985-91c6-5d8a2d438456", + "Frontseat_stm32g031g1" + ], + [ + "3cd7c206-0af5-4876-b4e5-4cddd2336028", + "Frontseat_stm32l011f" + ], + [ + "eafc1a6b-2ced-415d-8c36-b290c8fa7b43", + "Power" + ], + [ + "9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8", + "USB Programmer" + ] + ], + "text_variables": {} +} diff --git a/pcb/hw_test/hw_test.kicad_sch b/pcb/hw_test/hw_test.kicad_sch new file mode 100644 index 0000000..5f2084a --- /dev/null +++ b/pcb/hw_test/hw_test.kicad_sch @@ -0,0 +1,3811 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 416a4216-683d-4c31-9c69-0c1695999893) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Female" (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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Female_1_1" + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x06_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 0 -10.16 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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x06_Male_1_1" + (polyline + (pts + (xy 1.27 -7.62) + (xy 0.8636 -7.62) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -5.08) + (xy 0.8636 -5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 2.54) + (xy 0.8636 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 5.08) + (xy 0.8636 5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 5.08 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 2.54 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -5.08 180) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -7.62 180) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x30_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 38.1 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x30_Female" (id 1) (at 0 -40.64 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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x30, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x30_Female_1_1" + (arc (start 0 -37.592) (mid -0.508 -38.1) (end 0 -38.608) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -35.052) (mid -0.508 -35.56) (end 0 -36.068) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -32.512) (mid -0.508 -33.02) (end 0 -33.528) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -29.972) (mid -0.508 -30.48) (end 0 -30.988) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -27.432) (mid -0.508 -27.94) (end 0 -28.448) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -24.892) (mid -0.508 -25.4) (end 0 -25.908) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -22.352) (mid -0.508 -22.86) (end 0 -23.368) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -19.812) (mid -0.508 -20.32) (end 0 -20.828) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -17.272) (mid -0.508 -17.78) (end 0 -18.288) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -14.732) (mid -0.508 -15.24) (end 0 -15.748) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -12.192) (mid -0.508 -12.7) (end 0 -13.208) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -9.652) (mid -0.508 -10.16) (end 0 -10.668) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -7.112) (mid -0.508 -7.62) (end 0 -8.128) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -38.1) + (xy -0.508 -38.1) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -35.56) + (xy -0.508 -35.56) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -33.02) + (xy -0.508 -33.02) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -30.48) + (xy -0.508 -30.48) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -27.94) + (xy -0.508 -27.94) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -25.4) + (xy -0.508 -25.4) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -22.86) + (xy -0.508 -22.86) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -20.32) + (xy -0.508 -20.32) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -17.78) + (xy -0.508 -17.78) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -15.24) + (xy -0.508 -15.24) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -12.7) + (xy -0.508 -12.7) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -10.16) + (xy -0.508 -10.16) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -7.62) + (xy -0.508 -7.62) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -5.08) + (xy -0.508 -5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -2.54) + (xy -0.508 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.54) + (xy -0.508 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy -0.508 5.08) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 7.62) + (xy -0.508 7.62) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 10.16) + (xy -0.508 10.16) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 12.7) + (xy -0.508 12.7) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 15.24) + (xy -0.508 15.24) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 17.78) + (xy -0.508 17.78) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 20.32) + (xy -0.508 20.32) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 22.86) + (xy -0.508 22.86) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 25.4) + (xy -0.508 25.4) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 27.94) + (xy -0.508 27.94) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 30.48) + (xy -0.508 30.48) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 33.02) + (xy -0.508 33.02) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 35.56) + (xy -0.508 35.56) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 8.128) (mid -0.508 7.62) (end 0 7.112) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 10.668) (mid -0.508 10.16) (end 0 9.652) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 13.208) (mid -0.508 12.7) (end 0 12.192) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 15.748) (mid -0.508 15.24) (end 0 14.732) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 18.288) (mid -0.508 17.78) (end 0 17.272) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 20.828) (mid -0.508 20.32) (end 0 19.812) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 23.368) (mid -0.508 22.86) (end 0 22.352) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 25.908) (mid -0.508 25.4) (end 0 24.892) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 28.448) (mid -0.508 27.94) (end 0 27.432) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 30.988) (mid -0.508 30.48) (end 0 29.972) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 33.528) (mid -0.508 33.02) (end 0 32.512) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 36.068) (mid -0.508 35.56) (end 0 35.052) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 35.56 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_12" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_13" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_14" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_15" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_16" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_17" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_18" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_19" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 33.02 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_20" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -15.24 0) (length 3.81) + (name "Pin_21" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -17.78 0) (length 3.81) + (name "Pin_22" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -20.32 0) (length 3.81) + (name "Pin_23" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -22.86 0) (length 3.81) + (name "Pin_24" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -25.4 0) (length 3.81) + (name "Pin_25" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -27.94 0) (length 3.81) + (name "Pin_26" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -30.48 0) (length 3.81) + (name "Pin_27" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -33.02 0) (length 3.81) + (name "Pin_28" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -35.56 0) (length 3.81) + (name "Pin_29" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 30.48 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -38.1 0) (length 3.81) + (name "Pin_30" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 27.94 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 25.4 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 22.86 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 20.32 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 17.78 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 15.24 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (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:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at -1.27 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "LED_Small" (id 1) (at -4.445 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Light emitting diode, small symbol" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_Small_0_1" + (polyline + (pts + (xy -0.762 -1.016) + (xy -0.762 1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy -0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.016) + (xy -0.762 0) + (xy 0.762 1.016) + (xy 0.762 -1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0.762) + (xy -0.508 1.27) + (xy -0.254 1.27) + (xy -0.508 1.27) + (xy -0.508 1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.508 1.27) + (xy 0 1.778) + (xy 0.254 1.778) + (xy 0 1.778) + (xy 0 1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LED_Small_1_1" + (pin passive line (at -2.54 0 0) (length 1.778) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 0 180) (length 1.778) + (name "A" (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 "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "H" (id 0) (at 0 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 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" "mounting hole" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "MountingHole_Pad_0_1" + (circle (center 0 1.27) (radius 1.27) + (stroke (width 1.27) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "MountingHole_Pad_1_1" + (pin input line (at 0 -2.54 90) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "RF_Module:ESP-12E" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -12.7 19.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "ESP-12E" (id 1) (at 12.7 19.05 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "RF_Module:ESP-12E" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" (id 3) (at -8.89 2.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "802.11 Wi-Fi" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "802.11 b/g/n Wi-Fi Module" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "ESP?12*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "ESP-12E_0_1" + (rectangle (start -12.7 17.78) (end 12.7 -15.24) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "ESP-12E_1_1" + (pin input line (at -15.24 15.24 0) (length 2.54) + (name "~{RST}" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -2.54 0) (length 2.54) + (name "MISO" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -5.08 0) (length 2.54) + (name "GPIO9" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -7.62 0) (length 2.54) + (name "GPIO10" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -10.16 0) (length 2.54) + (name "MOSI" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -15.24 -12.7 0) (length 2.54) + (name "SCLK" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -17.78 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) + (name "GPIO15" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 10.16 180) (length 2.54) + (name "GPIO2" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 15.24 180) (length 2.54) + (name "GPIO0" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 2.54) + (name "GPIO4" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 5.08 0) (length 2.54) + (name "ADC" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 2.54) + (name "GPIO5" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 2.54) + (name "GPIO3/RXD" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 12.7 180) (length 2.54) + (name "GPIO1/TXD" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 10.16 0) (length 2.54) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) + (name "GPIO16" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -5.08 180) (length 2.54) + (name "GPIO14" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 2.54) + (name "GPIO12" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) + (name "GPIO13" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 20.32 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 0 0) (length 2.54) + (name "CS0" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 1.27 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_Push_0_1" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 0 3.556 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 \"+12V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+12V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+12V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+12V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (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 189.23 123.19) (diameter 0) (color 0 0 0 0) + (uuid 587327af-f273-4084-b659-5b28e4e40ad4) + ) + (junction (at 26.67 124.46) (diameter 0) (color 0 0 0 0) + (uuid 6b571455-95ad-41f7-a436-8a4065f2f8d1) + ) + (junction (at 121.92 66.04) (diameter 0) (color 0 0 0 0) + (uuid 7efe33bc-10b2-4f58-a59c-ed5f1cf406da) + ) + (junction (at 27.94 170.18) (diameter 0) (color 0 0 0 0) + (uuid 94030e25-15e5-46bf-9fc0-201cd81a0a5a) + ) + (junction (at 29.21 67.31) (diameter 0) (color 0 0 0 0) + (uuid 96fa70c1-bc4b-44a9-83a6-d2e9337abe87) + ) + (junction (at 27.94 175.26) (diameter 0) (color 0 0 0 0) + (uuid b49484fd-b870-4c54-a723-d1b9e1d82298) + ) + (junction (at 27.94 165.1) (diameter 0) (color 0 0 0 0) + (uuid c97f3282-9f07-4058-a54f-1031a9c6d745) + ) + (junction (at 109.22 116.84) (diameter 0) (color 0 0 0 0) + (uuid d0eec719-3dce-4e6f-82fc-c64ccd48de03) + ) + (junction (at 220.98 116.84) (diameter 0) (color 0 0 0 0) + (uuid d6c926a4-d146-4f55-bd61-4e356ede8345) + ) + (junction (at 60.96 124.46) (diameter 0) (color 0 0 0 0) + (uuid e403d012-c3c4-49b7-b76b-8ba29e0dbd50) + ) + (junction (at 148.59 116.84) (diameter 0) (color 0 0 0 0) + (uuid f319708e-e288-4a41-9b5f-1205bff11519) + ) + + (no_connect (at 72.39 73.66) (uuid 0b6f2f37-b3af-4206-b09b-f0e0d551f0fe)) + (no_connect (at 72.39 83.82) (uuid 25c48a0b-f20d-4131-8802-2c101726ab40)) + (no_connect (at 123.19 81.28) (uuid 45a98008-c72c-46be-9d38-e6e09cd6ea34)) + (no_connect (at 275.59 -64.77) (uuid 4a990540-dfaa-450a-a8af-4e10194b3f74)) + (no_connect (at 72.39 76.2) (uuid 7409cb11-ae93-4667-8f86-2399bf2bb843)) + (no_connect (at 72.39 78.74) (uuid bad57c58-1685-4b6b-9507-38d25efe4a26)) + (no_connect (at 72.39 81.28) (uuid d2238164-1acf-480b-8f2b-006705e1bc43)) + (no_connect (at 72.39 71.12) (uuid fb55802b-9dcf-4a77-be15-a291bec86530)) + + (wire (pts (xy 31.75 53.34) (xy 24.13 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01187f73-ef4e-43dd-97d7-d882a564429e) + ) + (wire (pts (xy 148.59 106.68) (xy 148.59 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0886907a-d74a-495d-9c3d-7c8e2c340279) + ) + (wire (pts (xy 266.7 54.61) (xy 269.24 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0abb2835-a4ab-4a05-be51-b27b62201814) + ) + (wire (pts (xy 223.52 116.84) (xy 220.98 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ff7acc8-1f9d-4d64-a694-92f2b8613195) + ) + (wire (pts (xy 121.92 68.58) (xy 121.92 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14e253f8-c5f6-4cde-b891-a8aa0907c49a) + ) + (wire (pts (xy 26.67 121.92) (xy 26.67 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 151e0d46-a996-441b-a5ab-7b705d96c030) + ) + (wire (pts (xy 30.48 170.18) (xy 27.94 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16af63ae-16f1-4fbe-a0f4-f05387d99ae2) + ) + (wire (pts (xy 30.48 175.26) (xy 27.94 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19f254b6-3381-4b4c-a030-4b948badd1a2) + ) + (wire (pts (xy 238.76 116.84) (xy 238.76 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a214719-ecdf-4fce-bd5b-774106bf882d) + ) + (wire (pts (xy 55.88 124.46) (xy 60.96 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1acbe0cd-c2ae-49e0-a05c-b015b7b3e313) + ) + (wire (pts (xy 278.13 -54.61) (xy 278.13 -52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bfe46c9-90b4-4c36-81a3-a5e964151e4c) + ) + (wire (pts (xy 109.22 115.57) (xy 109.22 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cd60c25-b928-4c3a-8326-59b8674581b9) + ) + (wire (pts (xy 179.07 73.66) (xy 181.61 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21991082-8a40-485d-aeff-25cc078e2598) + ) + (wire (pts (xy 36.83 124.46) (xy 26.67 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26d3f8bc-e049-439c-99db-1a024c6026e5) + ) + (wire (pts (xy 236.22 71.12) (xy 238.76 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27a9fe7b-b432-4d6e-9c6e-99773ae0fe92) + ) + (wire (pts (xy 189.23 135.89) (xy 189.23 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f409eb2-37b2-4344-8f47-5683221852f8) + ) + (wire (pts (xy 148.59 127) (xy 148.59 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 300ca2e3-07e7-4093-853c-c9ef625c1e0a) + ) + (wire (pts (xy 46.99 93.98) (xy 46.99 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3170a018-1925-4d71-b903-c4f09778aa7b) + ) + (wire (pts (xy 21.59 124.46) (xy 26.67 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3374455b-1d6c-442d-8e3d-ae5ccb9dc2b6) + ) + (wire (pts (xy 153.67 68.58) (xy 156.21 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 346ec5cb-84a0-45d8-812a-90653239c8eb) + ) + (wire (pts (xy 60.96 134.62) (xy 60.96 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cf4d568-3182-4b64-80a3-69cc150308a1) + ) + (wire (pts (xy 29.21 67.31) (xy 29.21 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41986754-6447-4f99-a900-78a3329f9851) + ) + (wire (pts (xy 29.21 67.31) (xy 26.67 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42561880-7cbd-4541-b268-0bcae784e53d) + ) + (wire (pts (xy 39.37 67.31) (xy 46.99 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 439b9eee-0a62-4842-9bf3-52f95361819d) + ) + (wire (pts (xy 266.7 57.15) (xy 269.24 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46e8d909-bc5c-48d4-80bd-e86655b1d689) + ) + (wire (pts (xy 189.23 113.03) (xy 189.23 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4aa21108-83fb-4fba-b318-03e3c5eb8006) + ) + (wire (pts (xy 102.87 66.04) (xy 121.92 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c89932e-b469-4339-8af1-ae02cae199a6) + ) + (wire (pts (xy 60.96 124.46) (xy 60.96 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dc03cc7-5f37-4f9f-9445-735f3d0452fe) + ) + (wire (pts (xy 195.58 -40.64) (xy 195.58 -38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 519daf34-0a9a-474c-82b3-15f966cc4505) + ) + (wire (pts (xy 26.67 111.76) (xy 26.67 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51f628fb-2d7d-455b-90f2-5b5d3481e7b1) + ) + (wire (pts (xy 189.23 123.19) (xy 189.23 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 552aa072-0ba8-4e29-bbdc-7949d9a802da) + ) + (wire (pts (xy 30.48 165.1) (xy 27.94 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57aa210d-027e-4ecb-bb58-a1b15f539b2e) + ) + (wire (pts (xy 198.12 -40.64) (xy 195.58 -40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58b841ad-f74e-4881-98e1-f472f96fff3e) + ) + (wire (pts (xy 153.67 73.66) (xy 156.21 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f1c92ab-902c-4931-b150-6f47e6f7c43e) + ) + (wire (pts (xy 36.83 127) (xy 36.83 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62152720-5280-48ed-b5f5-33bc7f6b77fd) + ) + (wire (pts (xy 151.13 116.84) (xy 148.59 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 643f584e-d8b2-476a-92dc-ce45ffc3c7fc) + ) + (wire (pts (xy 148.59 137.16) (xy 148.59 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66f8229a-0b9e-4a3e-9d6b-6fc2568f8fd2) + ) + (wire (pts (xy 123.19 81.28) (xy 102.87 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68bf253c-acd4-439f-b8f1-7556e9a907bf) + ) + (wire (pts (xy 109.22 106.68) (xy 109.22 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f6c1b69-81f3-4d75-aa35-a46872593bb9) + ) + (wire (pts (xy 198.12 -88.9) (xy 195.58 -88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 731e82c1-ce85-4d70-91de-83f041bc6dd3) + ) + (wire (pts (xy 148.59 116.84) (xy 148.59 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 786023b1-f869-48b2-bc95-88b778bef50c) + ) + (wire (pts (xy 30.48 160.02) (xy 27.94 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78640096-444e-4ab0-ba58-8f8d98d748f4) + ) + (wire (pts (xy 236.22 73.66) (xy 238.76 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80fc2752-959c-47ee-9076-4a1d1e0d310e) + ) + (wire (pts (xy 109.22 116.84) (xy 109.22 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8742c712-b459-4bf2-82a1-2565028cc0e4) + ) + (wire (pts (xy 31.75 93.98) (xy 27.94 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88dc61b9-57aa-4a36-92d8-a87883b8a31c) + ) + (wire (pts (xy 26.67 134.62) (xy 26.67 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8936db87-4b84-497b-8aa1-d39df4ab4535) + ) + (wire (pts (xy 121.92 66.04) (xy 156.21 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c6cb011-e428-4d97-934a-7f0bb773f4c7) + ) + (wire (pts (xy 46.99 53.34) (xy 46.99 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c86972d-5aa9-4d0a-8d76-72ceba71c20d) + ) + (wire (pts (xy 220.98 116.84) (xy 220.98 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 900b6544-d3c4-4326-b5f4-8dbb6098911f) + ) + (wire (pts (xy 111.76 116.84) (xy 109.22 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 974d4ea7-376e-4ff4-8763-73b34743b525) + ) + (wire (pts (xy 266.7 52.07) (xy 269.24 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97d9b589-f0d5-4363-9f71-e12a9ffb264c) + ) + (wire (pts (xy 275.59 -54.61) (xy 278.13 -54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99034ef8-0bb9-48f0-8a64-627411327d46) + ) + (wire (pts (xy 124.46 68.58) (xy 121.92 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b5183ff-4ab1-4a97-bb06-efc28b6f1aed) + ) + (wire (pts (xy 209.55 71.12) (xy 213.36 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bf892f5-93f9-4609-ad6f-f39e7fa1ba77) + ) + (wire (pts (xy 189.23 110.49) (xy 186.69 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c5e707d-1c45-45f1-bc85-1db09fc895a8) + ) + (wire (pts (xy 179.07 66.04) (xy 213.36 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c91e2d4-71c3-4355-8e40-9340a67f4ae5) + ) + (wire (pts (xy 189.23 125.73) (xy 189.23 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1e4c72b-0ac3-4305-b6ff-49025bf9d15a) + ) + (wire (pts (xy 231.14 116.84) (xy 238.76 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a39c7607-5a06-43bb-a1e8-ea3f5ebc61a3) + ) + (wire (pts (xy 266.7 62.23) (xy 269.24 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3f03c97-5112-4f0f-9a2a-14edcb7ee09c) + ) + (wire (pts (xy 285.75 -62.23) (xy 275.59 -62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5ede2db-85bd-4fac-ba01-bda253bcafcc) + ) + (wire (pts (xy 31.75 67.31) (xy 29.21 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b1258e-5d8a-41cd-9ae5-a2a6ddf84f32) + ) + (wire (pts (xy 195.58 -88.9) (xy 195.58 -86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa7cdd7e-11b3-4621-93d8-9e96af510bf3) + ) + (wire (pts (xy 109.22 127) (xy 109.22 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afae63a1-47b4-4890-88e6-c3da43e0ab65) + ) + (wire (pts (xy 26.67 124.46) (xy 26.67 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0f3d725-fd54-4ba9-a02c-0c2eb1ced129) + ) + (wire (pts (xy 27.94 165.1) (xy 27.94 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5ce6463-3dfe-4ee5-a38d-685ad7bee734) + ) + (wire (pts (xy 163.83 -88.9) (xy 163.83 -86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7345f8a-bf19-42c3-81f4-b7e83b4e998b) + ) + (wire (pts (xy 27.94 170.18) (xy 27.94 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb010f8a-b118-48ce-b80e-e7c22967759e) + ) + (wire (pts (xy 179.07 71.12) (xy 181.61 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc440902-0a50-443c-94e8-765ef3c2be4f) + ) + (wire (pts (xy 148.59 114.3) (xy 148.59 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be2e0377-3462-4b0b-97fc-f7e56333466c) + ) + (wire (pts (xy 39.37 93.98) (xy 46.99 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce5e4adb-9cfa-4354-a4a1-df62f469ad54) + ) + (wire (pts (xy 209.55 73.66) (xy 213.36 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8204ba0-d394-4dae-b528-315fe3010b40) + ) + (wire (pts (xy 166.37 -88.9) (xy 163.83 -88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8779aa4-d071-422f-8ae0-37200b6f0d62) + ) + (wire (pts (xy 71.12 127) (xy 71.12 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9362365-3f96-4c99-a35a-9eef8a384c77) + ) + (wire (pts (xy 266.7 59.69) (xy 269.24 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9a68a2f-ff42-4403-b056-b2756369bf13) + ) + (wire (pts (xy 71.12 124.46) (xy 60.96 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dac15124-366c-4ee4-9c05-cfb178b9c1af) + ) + (wire (pts (xy 27.94 160.02) (xy 27.94 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc14c4cd-dae4-477f-89e7-4a78b69d65e0) + ) + (wire (pts (xy 27.94 175.26) (xy 27.94 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e085b15d-7bde-4ec5-b09a-90fb243434e6) + ) + (wire (pts (xy 209.55 68.58) (xy 213.36 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1f84442-c684-4f45-ad35-0c227e77a68f) + ) + (wire (pts (xy 186.69 123.19) (xy 189.23 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e550bc83-4bc4-4394-a0f6-8f5e6e183d36) + ) + (wire (pts (xy 39.37 53.34) (xy 46.99 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e797f63a-7ae8-425e-9532-006810dc3ae4) + ) + (wire (pts (xy 60.96 111.76) (xy 60.96 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e91d5e3c-4dd0-4137-8c58-f66bbb973204) + ) + (wire (pts (xy 153.67 71.12) (xy 156.21 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb6916b5-1f63-4e3f-97b1-6a509cc03220) + ) + (wire (pts (xy 109.22 135.89) (xy 109.22 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec0dccb2-47d8-4cee-b74f-a88641f5f045) + ) + (wire (pts (xy 46.99 67.31) (xy 46.99 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee16478e-b0a4-4dd9-8ff4-de0aee24c6a6) + ) + (wire (pts (xy 285.75 -64.77) (xy 285.75 -62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f88c4184-9c89-40b5-9036-4c107af371a0) + ) + (wire (pts (xy 220.98 116.84) (xy 218.44 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8b47ed1-879d-440f-a1e3-f82528f0e00e) + ) + (wire (pts (xy 60.96 121.92) (xy 60.96 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa3edf57-7e5a-4cd4-946f-008a7405e7d4) + ) + + (text "do not use" (at 111.76 81.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 225ec29f-4d5b-48fa-a39b-19fc31ba07df) + ) + (text "used in flash qio" (at 71.12 85.09 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 31163519-11dd-43ee-8c46-3996f5d6f5b7) + ) + + (global_label "EN" (shape input) (at 72.39 60.96 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 0a034176-a545-4e9b-b8dc-36557d961320) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 198.12 -91.44 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 0e31a39c-b0d4-4981-9014-d357c2b8fd7c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape output) (at 102.87 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 10c8cc57-2ba2-42e6-a623-5ab59af023c5) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 109.7904 73.5806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 238.76 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 120c2b7a-835d-4fd0-b006-a7adb13e35fe) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 243.9871 73.7394 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 266.7 62.23 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 142dc4d3-05a4-4fef-8796-155695ab409d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 257.1187 62.1506 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 102.87 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 153f820a-d0e4-445c-bddb-544ac06d316c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 112.4513 68.6594 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "MISO" (shape input) (at 102.87 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 17416957-e14b-48b6-8ea9-1c5a9f21fe7e) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 109.7904 71.1994 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "MISO" (shape output) (at 209.55 71.12 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 17917b3e-4d75-4c68-9579-4e2a0ea872bc) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 202.6296 71.0406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 181.61 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1c8a09ae-7f22-4f0a-a2e9-f8beadaa03a8) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 191.1913 71.1994 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "TXD0" (shape input) (at 166.37 -93.98 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1ea0377f-c906-4cfc-9dfb-d9783b8694a5) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape input) (at 186.69 110.49 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 279523b9-4407-42aa-b73a-f17409f8b308) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -66.04 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SWIM" (shape output) (at 264.16 -67.31 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2a30e9d4-12d4-44b5-b098-86a5fc05d461) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 257.1187 -67.3894 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "nRST" (shape input) (at 72.39 55.88 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2d233d7f-9037-4f74-b16e-940499a2ccf0) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MISO" (shape output) (at 264.16 -62.23 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2ed9db64-503c-41af-96a7-57ede3662d14) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 257.2396 -62.3094 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "MOSI" (shape input) (at 153.67 73.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 303a164b-eb72-4385-84d4-7a5cf17b7938) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 260.35 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SEN_5V" (shape input) (at 151.13 116.84 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 37bbab62-105b-4971-85bc-13e675b53ec5) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -67.31 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape bidirectional) (at 275.59 -67.31 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 39db946a-c274-4f88-8ec7-7d35f97fec4b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 282.6313 -67.3894 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "TXD0" (shape input) (at 198.12 -93.98 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4589324a-3bd8-4f88-ab07-507a23b8abc0) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MISO" (shape output) (at 266.7 52.07 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 46d6409e-5a3d-4bef-8a14-1a9c08d82b4d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 259.7796 51.9906 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 264.16 -57.15 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 47108e27-e522-4379-b970-b555fb26934f) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 254.5787 -57.2294 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "ADC" (shape input) (at 72.39 66.04 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4917491c-4764-4f00-876c-86378185fcb5) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 198.12 -45.72 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5306244a-301b-4652-8b2d-c6dee9a3d23d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 102.87 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 54a3a1e8-733e-43ef-bfab-4214277660fa) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 209.55 73.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 553010f5-6192-40f2-98dc-d6aeb252cad6) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 316.23 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 198.12 -43.18 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5cd1a9c3-f08a-4037-91ea-91f4a6d50b12) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 275.59 -59.69 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5f1d2d5a-06b4-47d6-b00e-53eb8bc20a01) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 490.22 -173.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 209.55 68.58 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 64a5ce19-1283-487a-ad44-fc037ad92344) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 316.23 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape output) (at 102.87 76.2 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 69ad0ba8-d867-4327-b9da-e7cb95abec45) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 109.9718 76.1206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "MOSI" (shape input) (at 266.7 57.15 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 6b350146-1939-49c1-bc28-446c66622365) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 373.38 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 266.7 54.61 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 6cf8cbd1-4db3-48fe-8ded-eb86efd14d5b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 373.38 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SEN_12V" (shape input) (at 111.76 116.84 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6dbb107c-06d8-45b5-b640-c79c110eff0a) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -77.47 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 166.37 -91.44 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7fe2a75f-2211-4619-94d8-00ffd4f64c14) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MISO" (shape output) (at 153.67 71.12 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 88b09260-2c0d-4015-8138-324d2fd2530d) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 146.7496 71.0406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "EN" (shape input) (at 24.13 53.34 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8ff3cc61-26f4-4179-a198-104dca81e30c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 21.59 124.46 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 911ca06d-7bf7-49be-975a-1427e55d0038) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "CS0" (shape input) (at 102.87 78.74 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 97269d1d-c1f3-4f93-ad38-d9f6d04c3606) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "TXD0" (shape input) (at 102.87 58.42 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9b2cc02f-22fb-4ac1-a6a4-a39df37342df) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 264.16 -59.69 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9da71d57-e98d-4e96-b272-ae528cd7184a) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 258.9329 -59.7694 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "FLSH" (shape input) (at 24.13 24.13 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b5bf262d-d654-407b-9a9a-2cf4190a7989) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "ADC" (shape input) (at 186.69 123.19 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b675fec1-9c4b-457f-883a-d43b9ad552d8) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -66.04 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "VOUT" (shape input) (at 166.37 -96.52 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b7cf28dc-4ec8-4bb4-a653-c26dbf163abb) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "CS0" (shape input) (at 27.94 93.98 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b95755fb-d395-4fdc-b8cf-3cca322111c3) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 22.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "SCLK" (shape input) (at 153.67 68.58 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid c430d6f0-e6ea-432f-af2d-d2f6288022d4) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 260.35 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 181.61 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c600e3da-bbcc-4e1d-8f25-781f96a44c45) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 186.8371 73.7394 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 26.67 67.31 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid cc0d2931-9d07-409f-9aca-e7d69e3daa7e) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 21.4429 67.2306 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "VOUT" (shape input) (at 198.12 -48.26 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid cc35f3cd-ed6f-4f73-a445-4519d2f14520) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 218.44 116.84 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid ce199729-5e94-4836-8436-a5792804f53e) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 208.8587 116.7606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "~{BUSRST}" (shape input) (at 238.76 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d2a68b2f-2410-4840-8e2f-460fdbe59f81) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 248.3413 71.1994 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "~{INT}" (shape output) (at 266.7 59.69 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d7b8f66f-b2e9-46d8-bf5d-cc432323f9a3) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 261.4729 59.6106 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "FLSH" (shape input) (at 55.88 124.46 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid da4e2fe8-e507-4d5e-b5cb-348b1ad7f65b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "ADC" (shape input) (at 24.13 39.37 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid dfbf78e6-752f-4664-b3f0-f08bf6a21a56) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "MOSI" (shape input) (at 275.59 -57.15 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e8990421-fee6-4e44-a390-321d9669ad12) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 490.22 -173.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "CS0" (shape input) (at 264.16 -64.77 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e9448d15-ddc8-46d8-9ca1-32c2a921dff7) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 49.53 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "~{INT}" (shape input) (at 102.87 60.96 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f5dfdc15-f233-49ef-8de3-d8562e3328d3) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 108.0971 60.8806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "VOUT" (shape input) (at 198.12 -96.52 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f729ecd1-ce07-4a7c-874f-a371e7cab21b) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -16.51 -184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "FLSH" (shape input) (at 102.87 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f8ffea00-ebab-446c-bcf7-423415c2363c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 24.13 31.75 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid fc43563a-926b-458a-9aa4-5539f1c7f9ce) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at -3.81 7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Switch:SW_Push") (at 36.83 132.08 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 009fb402-daaf-4ee4-a841-e2020a5a92cd) + (property "Reference" "SW1" (id 0) (at 40.5892 130.9116 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 40.5892 133.223 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (id 2) (at 41.91 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 41.91 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 36.83 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8a1ddd95-d891-4298-943f-0cfa4fbd8b36)) + (pin "2" (uuid 61f7cc8f-b095-42da-8944-b1ab4857d3e7)) + ) + + (symbol (lib_id "Device:R") (at 109.22 111.76 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00b052de-af65-4c18-b885-94c41be8f64e) + (property "Reference" "R6" (id 0) (at 110.998 110.5916 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "470Ohm" (id 1) (at 110.998 112.903 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 110.998 111.76 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 109.22 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23179" (id 4) (at 109.22 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 62391a86-6bd6-4dd8-ab3b-621d21198962)) + (pin "2" (uuid 2f36aaf1-97a6-4466-99c5-e6809425b6d6)) + ) + + (symbol (lib_id "Connector:Conn_01x06_Male") (at 269.24 -59.69 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 04014e2e-cb46-469c-967e-c6bcf4518bff) + (property "Reference" "J8" (id 0) (at 265.43 -74.93 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 259.08 -52.07 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (id 2) (at 269.24 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 269.24 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 269.24 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5eb00c84-fe43-46d4-8db2-9a2a773b0bd0)) + (pin "2" (uuid b13fc8be-8b95-41fc-b421-5189e5feac4d)) + (pin "3" (uuid ef1b4984-7334-4c3f-9a60-35962e68ef22)) + (pin "4" (uuid b724078f-a01e-45d4-b880-7b08e2e6c33d)) + (pin "5" (uuid 08ef5965-4bcb-4e1f-ba38-877d43e0ea53)) + (pin "6" (uuid 4d2c3965-8ad7-4492-96a6-6ab18ac79f63)) + ) + + (symbol (lib_id "Device:R") (at 189.23 116.84 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 114441bb-4199-4f5c-b215-3abd726556d5) + (property "Reference" "R11" (id 0) (at 191.008 115.6716 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "12kOhm" (id 1) (at 191.008 117.983 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 191.008 116.84 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 189.23 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 189.23 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b7471b03-537d-44fb-9c3e-c1ccb77a2477)) + (pin "2" (uuid cbd9a7ec-cd94-441b-931d-73fd84566d7e)) + ) + + (symbol (lib_id "Device:R") (at 35.56 93.98 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 130f2f3c-bc50-4952-804b-628d5c07d214) + (property "Reference" "R4" (id 0) (at 35.56 88.7222 90)) + (property "Value" "12kOhm" (id 1) (at 35.56 91.0336 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 35.56 92.202 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 35.56 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 35.56 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1e6d6c3e-2c34-4246-9ac0-54f63ef0efa0)) + (pin "2" (uuid 2cbd4a88-b6fb-4401-9ec6-38aee0c4feac)) + ) + + (symbol (lib_id "Device:R") (at 26.67 118.11 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1c5d86a8-4c2c-496e-90e1-97a322632465) + (property "Reference" "R1" (id 0) (at 28.448 116.9416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "12kOhm" (id 1) (at 28.448 119.253 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 24.892 118.11 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 26.67 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 26.67 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0640b1ff-f18b-4d68-8e7b-ea8b353080cc)) + (pin "2" (uuid 2f057305-9ccf-486c-b6de-bda12e6c65df)) + ) + + (symbol (lib_id "Device:C") (at 26.67 130.81 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1e1a853f-36ac-46ab-9e8b-75d5eabb3192) + (property "Reference" "C1" (id 0) (at 29.591 129.6416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 29.591 131.953 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 27.6352 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 26.67 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 26.67 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bfdb3e78-0f33-4da6-80e9-d5f8931208cb)) + (pin "2" (uuid 8788d398-1c42-42b4-80f7-939db9eab4ad)) + ) + + (symbol (lib_id "power:GND") (at 60.96 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1fb908f9-9de2-4490-a1d0-8a4a8547eb7d) + (property "Reference" "#PWR010" (id 0) (at 60.96 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 61.087 141.5542 0)) + (property "Footprint" "" (id 2) (at 60.96 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 06aa827d-911e-423a-8899-c6fc848e8bb1)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 143.51 116.84 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 204e0472-2192-4b9d-9464-d7a17a87d6c9) + (property "Reference" "J6" (id 0) (at 142.7988 117.5004 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_SEN_5V" (id 1) (at 142.7988 115.189 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 143.51 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 143.51 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 143.51 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 815286c4-60fc-41b0-a048-66340f30f8b9)) + ) + + (symbol (lib_id "Device:R") (at 189.23 129.54 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 26d5e4a7-de80-40c9-a781-aa14c0311408) + (property "Reference" "R12" (id 0) (at 191.008 128.3716 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1kOhm" (id 1) (at 191.008 130.683 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 191.008 129.54 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 189.23 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21190" (id 4) (at 189.23 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 043f3737-13da-4f1e-90e7-0652f528ba99)) + (pin "2" (uuid 02ec7c10-1217-4bd3-9b59-99371e8c4396)) + ) + + (symbol (lib_id "power:+3.3V") (at 46.99 64.77 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2812cc4c-2152-41d2-8d4b-3e5444439b86) + (property "Reference" "#PWR07" (id 0) (at 46.99 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 47.371 60.3758 0)) + (property "Footprint" "" (id 2) (at 46.99 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c4f9e2e6-067b-4099-a78c-1afc7ab6b5ed)) + ) + + (symbol (lib_id "power:GND") (at 27.94 177.8 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2c02c421-2409-4dfb-b37e-3bf4a86ffb1f) + (property "Reference" "#PWR03" (id 0) (at 27.94 184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 28.067 182.1942 0)) + (property "Footprint" "" (id 2) (at 27.94 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f437a51d-8a7c-44df-9980-8c59a46cabe2)) + ) + + (symbol (lib_id "power:+3.3V") (at 238.76 114.3 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 32df5e55-c992-47c1-920b-ec534860637c) + (property "Reference" "#PWR017" (id 0) (at 238.76 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 239.141 109.9058 0)) + (property "Footprint" "" (id 2) (at 238.76 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 238.76 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b4de516b-7133-4e19-9bc2-a1238ae0cd4f)) + ) + + (symbol (lib_id "Device:R") (at 35.56 67.31 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 33d58b3c-a22b-4112-8a2d-522cded5759d) + (property "Reference" "R3" (id 0) (at 35.56 62.0522 90)) + (property "Value" "12kOhm" (id 1) (at 35.56 64.3636 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 35.56 65.532 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 35.56 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 35.56 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ef820527-74ed-45a9-baec-8cf1b7de3e71)) + (pin "2" (uuid 660693b3-de7c-4dc9-abcc-027fa491da31)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 29.21 39.37 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 356e866c-f8ca-4490-bd06-b520b0a2bde5) + (property "Reference" "J3" (id 0) (at 29.9212 38.7096 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_ADC" (id 1) (at 29.9212 41.021 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 29.21 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 29.21 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 29.21 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4ecc2327-faf2-43bb-b53c-fbde77639bf6)) + ) + + (symbol (lib_id "Device:R") (at 227.33 116.84 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 385bbb43-4a8c-473c-9555-557d89e713c8) + (property "Reference" "R8" (id 0) (at 227.33 111.5822 90)) + (property "Value" "12kOhm" (id 1) (at 227.33 113.8936 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 227.33 115.062 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 227.33 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 227.33 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid adef74de-2f55-44bd-883d-615be474e022)) + (pin "2" (uuid 5605a44d-e316-43b8-bb8b-d9fd40cdcdd5)) + ) + + (symbol (lib_id "Device:LED_Small") (at 109.22 133.35 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 39373570-7670-4cb7-a6a5-cc14f5369c13) + (property "Reference" "D1" (id 0) (at 110.998 132.1816 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 110.998 134.493 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 109.22 133.35 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 109.22 133.35 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 109.22 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b815b5b9-0b52-4054-851b-85ea308606a0)) + (pin "2" (uuid 8199b816-1b00-4755-b994-716620abde98)) + ) + + (symbol (lib_id "power:+5V") (at 148.59 106.68 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3b151cda-df27-41a8-b185-dda07874f6c6) + (property "Reference" "#PWR018" (id 0) (at 148.59 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 148.971 102.2858 0)) + (property "Footprint" "" (id 2) (at 148.59 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b20b5e95-6fde-4a87-a510-334a4be6a581)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 104.14 116.84 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 470563d8-5342-4723-8999-8444b4befa49) + (property "Reference" "J4" (id 0) (at 103.4288 117.5004 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_SEN_12V" (id 1) (at 103.4288 115.189 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 104.14 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 104.14 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 104.14 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 31455c50-fc4e-4b99-b2fa-dba19797ae4c)) + ) + + (symbol (lib_id "Device:C") (at 60.96 130.81 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4ec60998-9910-46ff-9fb3-13a3cce3f1b1) + (property "Reference" "C3" (id 0) (at 63.881 129.6416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 63.881 131.953 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 61.9252 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 60.96 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 60.96 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 36c51c9e-95a2-4d80-b2bf-0026d2e89085)) + (pin "2" (uuid 1a725f08-f711-4968-8ea7-30cf4fbaf4ee)) + ) + + (symbol (lib_id "power:GND") (at 71.12 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 574ba92f-554f-4785-ae0a-0f3521984cd9) + (property "Reference" "#PWR011" (id 0) (at 71.12 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 71.247 141.5542 0)) + (property "Footprint" "" (id 2) (at 71.12 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 10eb4496-1111-4685-8b37-3d80324140b1)) + ) + + (symbol (lib_id "power:GND") (at 148.59 139.7 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 59486f65-f9c8-4424-8973-2b379a5b13c6) + (property "Reference" "#PWR019" (id 0) (at 148.59 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 148.717 144.0942 0)) + (property "Footprint" "" (id 2) (at 148.59 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 865296d0-3e76-411e-a9e9-7757abff4a87)) + ) + + (symbol (lib_id "Device:R") (at 35.56 53.34 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5a634fce-0d05-4f11-9f08-2bde44e5542e) + (property "Reference" "R2" (id 0) (at 35.56 48.0822 90)) + (property "Value" "12kOhm" (id 1) (at 35.56 50.3936 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 35.56 51.562 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 35.56 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 35.56 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 08dc7802-3ad2-4891-895a-420079f8a706)) + (pin "2" (uuid 460249df-d7a0-47ac-ae39-40105bd94e75)) + ) + + (symbol (lib_id "power:GND") (at 109.22 139.7 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 67511736-b24e-4105-bfc4-81bb2d31f2f7) + (property "Reference" "#PWR015" (id 0) (at 109.22 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 109.347 144.0942 0)) + (property "Footprint" "" (id 2) (at 109.22 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 14cb7b44-b578-4120-8fd0-59369b86db5d)) + ) + + (symbol (lib_id "Device:R") (at 60.96 118.11 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6ee8e72d-a680-4049-822e-be1b1fddfe27) + (property "Reference" "R5" (id 0) (at 63.5 116.84 0)) + (property "Value" "12kOhm" (id 1) (at 66.04 119.38 0)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 59.182 118.11 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 60.96 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 60.96 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9429bc7a-0276-4758-a577-bc190f29ed1c)) + (pin "2" (uuid ddff1e70-efec-4bfb-8d30-946e5a74b4d9)) + ) + + (symbol (lib_id "Connector:Conn_01x06_Male") (at 270.51 -59.69 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7321b9e3-b2c3-4370-8d92-5b360000c112) + (property "Reference" "J9" (id 0) (at 274.32 -74.93 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x06_Male" (id 1) (at 287.02 -71.12 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (id 2) (at 270.51 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 270.51 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 270.51 -59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 055e2116-fd88-4afe-a4ef-58c82d3efa83)) + (pin "2" (uuid ac299243-8089-44ee-b674-c3093267d744)) + (pin "3" (uuid 91000dc2-9c51-4748-b62b-750c916b3ea3)) + (pin "4" (uuid 523833bc-bb33-4ee0-bcfd-9c6596b8840e)) + (pin "5" (uuid 5a1c6b42-4da9-4ec0-94db-466e54474abc)) + (pin "6" (uuid 14ee0cf8-334b-4326-85fc-b1381692cea3)) + ) + + (symbol (lib_id "power:+3.3V") (at 46.99 50.8 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7b5a2c24-8f0a-4454-946d-fd98e96a3637) + (property "Reference" "#PWR06" (id 0) (at 46.99 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 47.371 46.4058 0)) + (property "Footprint" "" (id 2) (at 46.99 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e075b2db-3006-4ebb-8452-d21b807f81c9)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 71.12 132.08 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 844e5bf1-64d0-475c-8e4c-a0ba4a01f2b1) + (property "Reference" "SW2" (id 0) (at 74.8792 130.9116 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 74.8792 133.223 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (id 2) (at 76.2 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 76.2 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 71.12 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0a62c929-5eec-4110-9823-c5cb954020df)) + (pin "2" (uuid d8cd334f-de62-4886-9a91-d53d3b221076)) + ) + + (symbol (lib_id "power:GND") (at 195.58 -38.1 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 8521f3c2-7926-4294-b576-7adbe85f6e2a) + (property "Reference" "#PWR023" (id 0) (at 195.58 -31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 195.707 -33.7058 0)) + (property "Footprint" "" (id 2) (at 195.58 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 195.58 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 537cdab7-985b-4a80-aef4-caaae23e94b3)) + ) + + (symbol (lib_id "Device:R") (at 109.22 123.19 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 86a69a45-6823-4088-85e8-e14aa1af9628) + (property "Reference" "R7" (id 0) (at 110.998 122.0216 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 110.998 124.333 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 110.998 123.19 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 109.22 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 109.22 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b295f046-93b0-427e-aa27-04b5211c6228)) + (pin "2" (uuid d4a6036f-cb4e-407d-9544-f0d2ef0648ea)) + ) + + (symbol (lib_id "power:GND") (at 163.83 -86.36 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 8ce9bc20-0ca4-43c4-83b0-f27e588655d2) + (property "Reference" "#PWR021" (id 0) (at 163.83 -80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 163.957 -81.9658 0)) + (property "Footprint" "" (id 2) (at 163.83 -86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 163.83 -86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 474d8e48-8737-4ab8-bffe-5718eb155b6b)) + ) + + (symbol (lib_id "Connector:Conn_01x30_Female") (at 261.62 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f2f0038-aecd-417c-8ed7-41975f1ad638) + (property "Reference" "J7" (id 0) (at 262.89 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Conn_01x30_Female" (id 1) (at 262.89 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x30_P2.54mm_Vertical" (id 2) (at 261.62 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 261.62 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9f030476-484d-4d30-98e8-246e67dd1cc0)) + (pin "10" (uuid 6b8bbefe-4c35-4fad-b890-908f9edb65a9)) + (pin "11" (uuid 8087d5bb-46a5-435d-9f8f-9350836ddb60)) + (pin "12" (uuid 09406052-e729-4486-a04c-8df7615a8f2c)) + (pin "13" (uuid 11ca578e-0aa6-400c-8255-71b0908c30cd)) + (pin "14" (uuid 19a25cfb-8e5e-41d7-bcbb-1b852909f6ac)) + (pin "15" (uuid 662749d8-88de-4f38-848f-8d259b8afae3)) + (pin "16" (uuid 9cda18a4-5a3f-4ce9-b45e-80b8c694c1c8)) + (pin "17" (uuid 4b87ded7-0d48-4f9e-9e23-8dc21b56d59f)) + (pin "18" (uuid a93d6205-eb26-4760-9472-4a699508decc)) + (pin "19" (uuid 4e742cd9-db3b-466c-a9e8-3784401b7e48)) + (pin "2" (uuid f9354407-0d4a-44cd-9de1-d55ff09f282f)) + (pin "20" (uuid 71b03af5-16ed-40b2-99fa-1b3b4f99fbe0)) + (pin "21" (uuid 84c3f19f-30e3-40d1-b010-2fe320ed41c5)) + (pin "22" (uuid 8a8518a3-2c00-4d88-8f74-a78dbc397535)) + (pin "23" (uuid 4643dc36-930f-48b9-b77a-a0d646d1e261)) + (pin "24" (uuid 6558a7a5-b8bc-4e5a-b271-28f004e187d8)) + (pin "25" (uuid 545156d1-2aa9-410e-ace2-5a0ea15a7ab6)) + (pin "26" (uuid 6d26c3cb-8eb7-405f-b7f8-3f9ccd443cc2)) + (pin "27" (uuid a3049029-db64-42fd-b15d-085abf784d91)) + (pin "28" (uuid b8eb5e34-a478-4860-8013-68e201a2dc96)) + (pin "29" (uuid 9f0e5859-75f8-4090-8e35-09f37a4f581f)) + (pin "3" (uuid ba730fc3-4aa9-4ec5-8a0e-3382f124ded8)) + (pin "30" (uuid 0187b86c-c953-44f7-85d3-d4978c8cdcd8)) + (pin "4" (uuid d2a69200-3b6f-4cf3-9c03-e9bfb4f84c4f)) + (pin "5" (uuid 86909cd4-08ef-4a22-8b2d-005801d198fb)) + (pin "6" (uuid db55e33a-7b14-486a-b468-b61d6486739c)) + (pin "7" (uuid 308e961a-37bf-464a-9cef-9c347491a13f)) + (pin "8" (uuid da420780-a133-4afe-81b6-c0671c27e43e)) + (pin "9" (uuid 11be2e50-244d-4f6b-a936-031567b12627)) + ) + + (symbol (lib_id "power:GND") (at 195.58 -86.36 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 90a6606c-862e-483f-a30e-02f2639093f2) + (property "Reference" "#PWR022" (id 0) (at 195.58 -80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 195.707 -81.9658 0)) + (property "Footprint" "" (id 2) (at 195.58 -86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 195.58 -86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0e69c8c4-5058-4b03-93b3-724689794e81)) + ) + + (symbol (lib_id "Device:LED_Small") (at 148.59 111.76 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 951816df-35bc-4a0a-b028-4ebced42f7a1) + (property "Reference" "D2" (id 0) (at 150.368 110.5916 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 150.368 112.903 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 148.59 111.76 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 148.59 111.76 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 148.59 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5d14a97d-805b-43e2-a51e-68d4a7e1a409)) + (pin "2" (uuid 0bdae67f-8064-451f-80a4-73fb19336937)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 129.54 68.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9a53c107-7884-47e4-baa5-c7224342b670) + (property "Reference" "J5" (id 0) (at 130.2512 67.9196 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 130.81 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 129.54 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 129.54 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 129.54 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 527b8683-76c1-4355-839a-8c5f8e645bfa)) + ) + + (symbol (lib_id "power:+3.3V") (at 87.63 50.8 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9ee7b05b-ac3f-4288-b190-c5cbf1611961) + (property "Reference" "#PWR012" (id 0) (at 87.63 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 87.63 46.99 0)) + (property "Footprint" "" (id 2) (at 87.63 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 87.63 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid edb0f10e-25f0-4eb6-ad6b-9d88f8326331)) + ) + + (symbol (lib_id "RF_Module:ESP-12E") (at 87.63 71.12 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a1b1e820-83e8-4b7d-a7f6-f9ea3f656f1c) + (property "Reference" "U1" (id 0) (at 87.63 69.85 0)) + (property "Value" "ESP-12E" (id 1) (at 87.63 73.66 0)) + (property "Footprint" "RF_Module:ESP-12E" (id 2) (at 87.63 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://wiki.ai-thinker.com/_media/esp8266/esp8266_series_modules_user_manual_v1.1.pdf" (id 3) (at 78.74 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 87.63 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c1fa80a5-2ee4-4ac1-9776-acfd3ad3e08f)) + (pin "10" (uuid bb912388-8443-4626-8da4-9e47066cea65)) + (pin "11" (uuid 6858962c-3a22-4809-9cbf-f073eee381d9)) + (pin "12" (uuid d05d1747-b502-48ad-96d1-c516a2b3905f)) + (pin "13" (uuid 3ef2cae4-e30c-49b1-9218-e0667779656a)) + (pin "14" (uuid e5a7b38c-1ea3-42d1-bf3c-dcf3d2deb2dd)) + (pin "15" (uuid fa38bb35-67ae-4328-a25e-428ca58bfb63)) + (pin "16" (uuid f20b2ce5-8d4f-4ba9-ac93-da6561e92e44)) + (pin "17" (uuid f594f104-b758-48cd-a685-dd159890a799)) + (pin "18" (uuid fd46c3f8-73fb-4546-85f9-a0773c3e59c5)) + (pin "19" (uuid f2bc0efe-1eac-4183-b718-a5f3e9e1f160)) + (pin "2" (uuid d334edc2-498b-4af7-9b97-976ea633c77d)) + (pin "20" (uuid d6914acd-4001-4118-b122-9e483c721eb1)) + (pin "21" (uuid 32527851-9826-4781-ae51-1cf1097de31e)) + (pin "22" (uuid 95e56324-9045-4060-b55f-aa4320053c70)) + (pin "3" (uuid 30b85d33-736b-4d4d-a081-ab5237cecb7f)) + (pin "4" (uuid 6ce80d42-4cb7-4fae-bd5d-f7a2ae88b6cd)) + (pin "5" (uuid 37ac1c24-e1f7-4f2a-8d4f-19782738537a)) + (pin "6" (uuid 33b223b1-405d-473b-b5de-349adb3e36ee)) + (pin "7" (uuid da5dd0ff-1dc6-49cd-9b91-c344f67917a3)) + (pin "8" (uuid 819e9d1d-0570-4925-8fc1-5c3bad734d5b)) + (pin "9" (uuid a2703eb8-2a02-4696-8f53-ef434a86ff6f)) + ) + + (symbol (lib_id "power:GND") (at 220.98 128.27 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a32ef0d5-56de-4e58-898a-cd0130472a9b) + (property "Reference" "#PWR016" (id 0) (at 220.98 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 221.107 132.6642 0)) + (property "Footprint" "" (id 2) (at 220.98 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a7a53c29-12a0-4661-9c2d-2f0589b066fe)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 29.21 24.13 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid aa5e61c6-8a82-4297-b860-d795f7e4783b) + (property "Reference" "J1" (id 0) (at 29.9212 23.4696 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_RST" (id 1) (at 29.9212 25.781 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 29.21 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 29.21 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 29.21 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ff1a0fde-3ea2-475f-8109-40ec5b45656b)) + ) + + (symbol (lib_id "Device:R") (at 148.59 133.35 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid b00d4ee4-fcdc-4ff6-bc7f-b91bd5efcb61) + (property "Reference" "R10" (id 0) (at 150.368 132.1816 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 150.368 134.493 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 150.368 133.35 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 148.59 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 148.59 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0d89de56-be92-4938-bcfe-1d7f82e4412a)) + (pin "2" (uuid ea2808d6-bd60-4fba-ae02-a99a8dd8d3e8)) + ) + + (symbol (lib_id "Device:C") (at 220.98 124.46 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b136bf36-dc5f-4712-bfda-edd8d2919fed) + (property "Reference" "C4" (id 0) (at 223.901 123.2916 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 223.901 125.603 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 221.9452 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 220.98 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 220.98 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c4b4ddb1-194c-4f8b-b060-c39ab089f5b1)) + (pin "2" (uuid 1cf0ce27-5abd-41b8-a263-8e2ece386ae6)) + ) + + (symbol (lib_id "power:+12V") (at 109.22 106.68 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b51d9e53-6395-47d1-83ad-17faf87919b4) + (property "Reference" "#PWR014" (id 0) (at 109.22 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 109.601 102.2858 0)) + (property "Footprint" "" (id 2) (at 109.22 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 08f427d4-e16a-4d1e-bd18-9af7f41c4622)) + ) + + (symbol (lib_id "power:GND") (at 26.67 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid bb936801-096d-414c-a0f6-a4bfb05bcb36) + (property "Reference" "#PWR02" (id 0) (at 26.67 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 26.797 141.5542 0)) + (property "Footprint" "" (id 2) (at 26.67 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4fe27175-206f-4d94-a133-15197d35532e)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 33.02 170.18 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid bf3ed105-f9de-416a-a781-912734c46f44) + (property "Reference" "H3" (id 0) (at 36.83 169.0116 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 36.83 171.323 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 33.02 170.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 170.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 170.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 18184a65-299a-405d-ba05-7b0dfe7b96c2)) + ) + + (symbol (lib_id "power:GND") (at 87.63 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid c01fc982-0b0d-457d-9995-28460c89fc06) + (property "Reference" "#PWR013" (id 0) (at 87.63 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 87.757 93.2942 0)) + (property "Footprint" "" (id 2) (at 87.63 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 87.63 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6ad6d89a-f257-4d8e-8cbd-c4d68428b2a2)) + ) + + (symbol (lib_id "power:GND") (at 189.23 135.89 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid c8aa8188-13b8-43af-a786-7f51effdafef) + (property "Reference" "#PWR020" (id 0) (at 189.23 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 189.357 140.2842 0)) + (property "Footprint" "" (id 2) (at 189.23 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3961aa7d-0466-41ff-9202-5a04443c939c)) + ) + + (symbol (lib_id "power:GND") (at 29.21 78.74 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid cfc54842-b025-44a3-98e5-fa4ebb6df196) + (property "Reference" "#PWR04" (id 0) (at 29.21 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 29.337 83.1342 0)) + (property "Footprint" "" (id 2) (at 29.21 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 29.21 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f0512f13-bae1-4de3-add7-a1350f13ea6b)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 33.02 175.26 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid d25790ae-aa3c-4510-97a4-ffb9d71d1b36) + (property "Reference" "H4" (id 0) (at 36.83 174.0916 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 36.83 176.403 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 33.02 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e40287e6-1bac-4c97-8f58-e1d570a8855c)) + ) + + (symbol (lib_id "Device:C") (at 29.21 74.93 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d6f4e801-1099-4e33-b014-8954dad3ec11) + (property "Reference" "C2" (id 0) (at 32.131 73.7616 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 32.131 76.073 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 30.1752 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 29.21 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 29.21 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9ca75393-0231-4ec1-9257-501119ac7501)) + (pin "2" (uuid 14d40ee5-2f0b-4334-8dc8-239d83241fc8)) + ) + + (symbol (lib_id "power:GND") (at 278.13 -52.07 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid d7289a2c-3320-4a4c-bfef-b0a951de612a) + (property "Reference" "#PWR024" (id 0) (at 278.13 -45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 278.003 -47.6758 0)) + (property "Footprint" "" (id 2) (at 278.13 -52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 278.13 -52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dd880095-70e7-4120-94fa-5d75853912cf)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 29.21 31.75 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d7d96841-de0b-4b68-93dc-ad2abeaf9cc2) + (property "Reference" "J2" (id 0) (at 29.9212 31.0896 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_RST" (id 1) (at 29.9212 33.401 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 29.21 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 29.21 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 29.21 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 30a3c855-4b3c-4302-9577-ed46a51792ca)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 33.02 165.1 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid e5506cf1-1ae8-417d-8ac9-ab1d784fb254) + (property "Reference" "H2" (id 0) (at 36.83 163.9316 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 36.83 166.243 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 33.02 165.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 165.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 165.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ec090077-ec90-42c9-80ff-a1c4129c755e)) + ) + + (symbol (lib_id "Mechanical:MountingHole_Pad") (at 33.02 160.02 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid f269bf9c-d364-4e08-adcc-792c848f70a4) + (property "Reference" "H1" (id 0) (at 36.83 158.8516 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole_Pad" (id 1) (at 36.83 161.163 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (id 2) (at 33.02 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 33.02 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6d07c122-3aff-4146-82b8-082be918b2e0)) + ) + + (symbol (lib_id "Device:R") (at 148.59 123.19 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid f4342455-91b5-41bd-92cd-881d2e934125) + (property "Reference" "R9" (id 0) (at 150.368 122.0216 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 150.368 124.333 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 150.368 123.19 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 148.59 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 148.59 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 194db480-f879-4508-8449-c0b5742597b5)) + (pin "2" (uuid af9ea8ef-e778-4244-b184-c2ff101f728a)) + ) + + (symbol (lib_id "power:GND") (at 36.83 137.16 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f4abe0ef-bea1-42dc-a59a-ef75b4ddd105) + (property "Reference" "#PWR05" (id 0) (at 36.83 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 36.957 141.5542 0)) + (property "Footprint" "" (id 2) (at 36.83 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 36.83 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 70b2e194-aa54-4f18-b296-99f92a833674)) + ) + + (symbol (lib_id "power:+3.3V") (at 285.75 -64.77 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f6a90079-6da0-4b50-be28-6238b969f6ca) + (property "Reference" "#PWR025" (id 0) (at 285.75 -60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 285.75 -68.58 0)) + (property "Footprint" "" (id 2) (at 285.75 -64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 285.75 -64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 896b5f11-fab9-40e7-a550-01276024f1b1)) + ) + + (symbol (lib_id "power:+3.3V") (at 60.96 111.76 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f7bd0852-72c0-4e3c-bf4b-50bd921e6e3e) + (property "Reference" "#PWR09" (id 0) (at 60.96 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 61.341 107.3658 0)) + (property "Footprint" "" (id 2) (at 60.96 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1ccb4c23-cf9a-44f5-bf09-c4e6a995f809)) + ) + + (symbol (lib_id "power:GND") (at 46.99 96.52 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f8dca2a4-a628-4e92-8cbc-f33b8dacff3b) + (property "Reference" "#PWR08" (id 0) (at 46.99 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 47.117 100.9142 0)) + (property "Footprint" "" (id 2) (at 46.99 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a10574db-b482-4b62-8541-e0e7179aa307)) + ) + + (symbol (lib_id "power:+3.3V") (at 26.67 111.76 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f9684f31-7f73-40c2-b5b9-05901198f35a) + (property "Reference" "#PWR01" (id 0) (at 26.67 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 27.051 107.3658 0)) + (property "Footprint" "" (id 2) (at 26.67 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 349934f3-a930-469f-84b9-22c892df4ac4)) + ) + + (sheet (at 213.36 44.45) (size 22.86 31.75) (fields_autoplaced) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 3cd7c206-0af5-4876-b4e5-4cddd2336028) + (property "Sheet name" "Frontseat_stm32l011f" (id 0) (at 213.36 43.7384 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "../stm32l011f.kicad_sch" (id 1) (at 213.36 76.7846 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (pin "SCLK" input (at 213.36 68.58 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3870361a-20db-429d-8fec-7275bf6fb4dd) + ) + (pin "~{RST}" input (at 236.22 71.12 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 332ba0d3-f15f-480c-8ab2-78f9d60ffbd1) + ) + (pin "~{INT}" output (at 236.22 73.66 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 19d0f21c-9b41-4ffb-8ccd-4fb034aeda6a) + ) + (pin "INIT_{IN}" input (at 213.36 66.04 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a591a83e-424d-48a1-b520-0efb940fcb05) + ) + (pin "INIT_{OUT}" output (at 236.22 66.04 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 918640fc-edab-489b-9121-cb0b6323879b) + ) + (pin "MOSI" input (at 213.36 73.66 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 09131d50-e53f-49dc-b990-6f001a1555eb) + ) + (pin "MISO" output (at 213.36 71.12 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9adefb30-db0b-44d8-b9a0-1afcb3cf6910) + ) + (pin "PWM_1" bidirectional (at 236.22 45.72 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 482d4162-8e5a-4f67-9d6b-d2c9a43b25be) + ) + (pin "PWM_3" bidirectional (at 236.22 50.8 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 57c94e2d-bdbb-49ac-83b8-1771a74529d7) + ) + (pin "ADC_6" bidirectional (at 213.36 50.8 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid de8d953c-4dc3-4f4a-8534-9c7888e2c86b) + ) + (pin "PWM_2" bidirectional (at 236.22 48.26 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9e18ffab-19d9-4b76-85b2-5135fd0d1b64) + ) + (pin "ADC_7" bidirectional (at 213.36 53.34 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b816910e-c234-48e3-b0f6-f0600175fffe) + ) + (pin "LED_DATA" output (at 213.36 45.72 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cdc4bd8a-4bf5-4b22-9a8a-1d3b02c7baba) + ) + (pin "PWM_4" bidirectional (at 236.22 53.34 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 94212b53-0759-4242-9acc-8de5b43c61ea) + ) + (pin "LED_CLOCK" output (at 213.36 48.26 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 68ed18ed-e6b6-4291-814c-264dda257b2a) + ) + ) + + (sheet (at 83.82 156.21) (size 29.21 30.48) (fields_autoplaced) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8) + (property "Sheet name" "USB Programmer" (id 0) (at 83.82 155.4984 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "../usb_prog.kicad_sch" (id 1) (at 83.82 187.2746 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + ) + + (sheet (at 156.21 44.45) (size 22.86 31.75) (fields_autoplaced) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid a6cf2d2a-674b-4985-91c6-5d8a2d438456) + (property "Sheet name" "Frontseat_stm32g031g1" (id 0) (at 156.21 43.7384 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "../stm32g031g.kicad_sch" (id 1) (at 156.21 76.7846 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (pin "SCLK" input (at 156.21 68.58 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7c96fd46-c6c5-4d04-b8ba-2e2d48708348) + ) + (pin "~{RST}" input (at 179.07 71.12 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 71622fe0-9b0a-4a7f-8f02-2207d068f898) + ) + (pin "~{INT}" output (at 179.07 73.66 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 3f7fb39b-e940-466c-9f9a-ee44c8873809) + ) + (pin "INIT_{IN}" input (at 156.21 66.04 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c9dd9508-da70-41a1-a932-813c6c145c2f) + ) + (pin "INIT_{OUT}" output (at 179.07 66.04 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e880fc32-a1c9-4b96-823f-0938c7fc7608) + ) + (pin "MOSI" input (at 156.21 73.66 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 04349419-3014-4a45-883b-4b04f433424c) + ) + (pin "MISO" output (at 156.21 71.12 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d7202b86-6693-4065-90fe-5a37ea78151c) + ) + (pin "PWM_1" bidirectional (at 179.07 45.72 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 90854b55-0c3c-4e94-a5f8-9ffe4ff2ebd7) + ) + (pin "PWM_3" bidirectional (at 179.07 50.8 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 74f6bc7f-cd7e-4565-bc13-8663ce5636b6) + ) + (pin "ADC_6" bidirectional (at 156.21 50.8 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f9ce2040-1d6c-47ea-81c9-254d305a140a) + ) + (pin "PWM_2" bidirectional (at 179.07 48.26 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8b143f88-2220-45bb-9d72-c3a35d691346) + ) + (pin "ADC_7" bidirectional (at 156.21 53.34 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7a1dcda0-447d-42e2-a763-ca35d8d3ddf8) + ) + (pin "LED_DATA" output (at 156.21 45.72 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d5bb7a45-5264-4d80-b75c-637fb2916f76) + ) + (pin "PWM_4" bidirectional (at 179.07 53.34 0) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1cba0896-a238-4baf-b46b-0b06f2ba0e43) + ) + (pin "LED_CLOCK" output (at 156.21 48.26 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid fc262bee-e517-4fdb-9f20-e12fca204791) + ) + ) + + (sheet (at 130.81 165.1) (size 25.4 21.59) (fields_autoplaced) + (stroke (width 0) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid eafc1a6b-2ced-415d-8c36-b290c8fa7b43) + (property "Sheet name" "Power" (id 0) (at 130.81 164.3884 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "../power.kicad_sch" (id 1) (at 130.81 187.2746 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + ) + + (sheet_instances + (path "/" (page "1")) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456" (page "3")) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028" (page "4")) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43" (page "5")) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8" (page "6")) + ) + + (symbol_instances + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060a9be5e" + (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/fb4a4929-028c-48be-b42d-0256eec11e8b" + (reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "") + ) + (path "/f9684f31-7f73-40c2-b5b9-05901198f35a" + (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/bb936801-096d-414c-a0f6-a4bfb05bcb36" + (reference "#PWR02") (unit 1) (value "GND") (footprint "") + ) + (path "/2c02c421-2409-4dfb-b37e-3bf4a86ffb1f" + (reference "#PWR03") (unit 1) (value "GND") (footprint "") + ) + (path "/cfc54842-b025-44a3-98e5-fa4ebb6df196" + (reference "#PWR04") (unit 1) (value "GND") (footprint "") + ) + (path "/f4abe0ef-bea1-42dc-a59a-ef75b4ddd105" + (reference "#PWR05") (unit 1) (value "GND") (footprint "") + ) + (path "/7b5a2c24-8f0a-4454-946d-fd98e96a3637" + (reference "#PWR06") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/2812cc4c-2152-41d2-8d4b-3e5444439b86" + (reference "#PWR07") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/f8dca2a4-a628-4e92-8cbc-f33b8dacff3b" + (reference "#PWR08") (unit 1) (value "GND") (footprint "") + ) + (path "/f7bd0852-72c0-4e3c-bf4b-50bd921e6e3e" + (reference "#PWR09") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/1fb908f9-9de2-4490-a1d0-8a4a8547eb7d" + (reference "#PWR010") (unit 1) (value "GND") (footprint "") + ) + (path "/574ba92f-554f-4785-ae0a-0f3521984cd9" + (reference "#PWR011") (unit 1) (value "GND") (footprint "") + ) + (path "/9ee7b05b-ac3f-4288-b190-c5cbf1611961" + (reference "#PWR012") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/c01fc982-0b0d-457d-9995-28460c89fc06" + (reference "#PWR013") (unit 1) (value "GND") (footprint "") + ) + (path "/b51d9e53-6395-47d1-83ad-17faf87919b4" + (reference "#PWR014") (unit 1) (value "+12V") (footprint "") + ) + (path "/67511736-b24e-4105-bfc4-81bb2d31f2f7" + (reference "#PWR015") (unit 1) (value "GND") (footprint "") + ) + (path "/a32ef0d5-56de-4e58-898a-cd0130472a9b" + (reference "#PWR016") (unit 1) (value "GND") (footprint "") + ) + (path "/32df5e55-c992-47c1-920b-ec534860637c" + (reference "#PWR017") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/3b151cda-df27-41a8-b185-dda07874f6c6" + (reference "#PWR018") (unit 1) (value "+5V") (footprint "") + ) + (path "/59486f65-f9c8-4424-8973-2b379a5b13c6" + (reference "#PWR019") (unit 1) (value "GND") (footprint "") + ) + (path "/c8aa8188-13b8-43af-a786-7f51effdafef" + (reference "#PWR020") (unit 1) (value "GND") (footprint "") + ) + (path "/8ce9bc20-0ca4-43c4-83b0-f27e588655d2" + (reference "#PWR021") (unit 1) (value "GND") (footprint "") + ) + (path "/90a6606c-862e-483f-a30e-02f2639093f2" + (reference "#PWR022") (unit 1) (value "GND") (footprint "") + ) + (path "/8521f3c2-7926-4294-b576-7adbe85f6e2a" + (reference "#PWR023") (unit 1) (value "GND") (footprint "") + ) + (path "/d7289a2c-3320-4a4c-bfef-b0a951de612a" + (reference "#PWR024") (unit 1) (value "GND") (footprint "") + ) + (path "/f6a90079-6da0-4b50-be28-6238b969f6ca" + (reference "#PWR025") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/3303274a-cba7-4090-b7c9-6ad357198313" + (reference "#PWR031") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/afedab57-ff9c-40ee-8aae-03af63886737" + (reference "#PWR032") (unit 1) (value "GND") (footprint "") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/e431da71-e53a-4d43-9ffd-4e0057b90677" + (reference "#PWR033") (unit 1) (value "GND") (footprint "") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/5d83d3d8-3dcb-43b4-b37d-0bbe1e88cfac" + (reference "#PWR034") (unit 1) (value "GND") (footprint "") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/eff4aefb-bfa1-4abb-a50d-5d88bfa61f6a" + (reference "#PWR035") (unit 1) (value "GND") (footprint "") + ) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/a345533b-d043-4357-be27-c8da228383fd" + (reference "#PWR036") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/a5348844-784d-4c6d-ade0-d4e7965e1b92" + (reference "#PWR037") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060a9d3db" + (reference "#PWR043") (unit 1) (value "+12V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929649" + (reference "#PWR044") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929622" + (reference "#PWR045") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929655" + (reference "#PWR046") (unit 1) (value "+5V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006092963b" + (reference "#PWR047") (unit 1) (value "+12V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929641" + (reference "#PWR048") (unit 1) (value "+5V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929635" + (reference "#PWR049") (unit 1) (value "+12V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060947821" + (reference "#PWR050") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006094782d" + (reference "#PWR051") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608dd823" + (reference "#PWR052") (unit 1) (value "+12V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608de102" + (reference "#PWR053") (unit 1) (value "+5V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c956" + (reference "#PWR054") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607b7fbf" + (reference "#PWR055") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607b9620" + (reference "#PWR056") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c950" + (reference "#PWR057") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c95c" + (reference "#PWR058") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c94a" + (reference "#PWR059") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060793a86" + (reference "#PWR060") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006079401e" + (reference "#PWR061") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608e064a" + (reference "#PWR062") (unit 1) (value "+5V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607c2a7c" + (reference "#PWR063") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608ea16e" + (reference "#PWR064") (unit 1) (value "+5V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608ec96e" + (reference "#PWR065") (unit 1) (value "GND") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608eb6fb" + (reference "#PWR066") (unit 1) (value "+12V") (footprint "") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608ed499" + (reference "#PWR067") (unit 1) (value "GND") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/173f7bbd-3792-4d87-b12f-1933aa5a66bc" + (reference "#PWR068") (unit 1) (value "GND") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/7e435736-0375-4635-95c4-3c464a0cc8d8" + (reference "#PWR069") (unit 1) (value "GND") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/5f2fab8e-6673-4f5b-8609-cad8cbcb6551" + (reference "#PWR070") (unit 1) (value "+5V") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/3400d53f-63d8-48c2-b32e-9f1271b6e4fe" + (reference "#PWR071") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/1eb5a440-ef2d-4569-a646-b3059252bd80" + (reference "#PWR072") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/5c7fa821-1767-4ef6-af7a-2fd7c754bcea" + (reference "#PWR073") (unit 1) (value "GND") (footprint "") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/67a4af1b-84d8-4627-813f-ec85fe3ec3d9" + (reference "#PWR074") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/1e1a853f-36ac-46ab-9e8b-75d5eabb3192" + (reference "C1") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/d6f4e801-1099-4e33-b014-8954dad3ec11" + (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/4ec60998-9910-46ff-9fb3-13a3cce3f1b1" + (reference "C3") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/b136bf36-dc5f-4712-bfda-edd8d2919fed" + (reference "C4") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c989" + (reference "C5") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c54a2" + (reference "C6") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607b779d" + (reference "C7") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c4cdd" + (reference "C8") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060794539" + (reference "C9") (unit 1) (value "TAJB107K006RNJ") (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609c5abb" + (reference "C10") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607c2a6a" + (reference "C11") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric") + ) + (path "/39373570-7670-4cb7-a6a5-cc14f5369c13" + (reference "D1") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/951816df-35bc-4a0a-b028-4ebced42f7a1" + (reference "D2") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/6801e525-3830-4664-bb60-00a8c7a1c082" + (reference "D4") (unit 1) (value "LED_RGB") (footprint "LED_SMD:LED_RGB_5050-6") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000607c7255" + (reference "D6") (unit 1) (value "SS14") (footprint "Diode_SMD:D_SMA") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c973" + (reference "D7") (unit 1) (value "SS14") (footprint "Diode_SMD:D_SMA") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608e2da3" + (reference "D8") (unit 1) (value "Z 5V") (footprint "Diode_SMD:D_MiniMELF") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000608e7242" + (reference "D9") (unit 1) (value "Z 12V") (footprint "Diode_SMD:D_MiniMELF") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/4493a54a-4171-4ae0-92d3-5d61270df441" + (reference "D10") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/a82d064e-0436-457a-800f-f2af2ec55ea1" + (reference "D11") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric") + ) + (path "/f269bf9c-d364-4e08-adcc-792c848f70a4" + (reference "H1") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/e5506cf1-1ae8-417d-8ac9-ab1d784fb254" + (reference "H2") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/bf3ed105-f9de-416a-a781-912734c46f44" + (reference "H3") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/d25790ae-aa3c-4510-97a4-ffb9d71d1b36" + (reference "H4") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via") + ) + (path "/aa5e61c6-8a82-4297-b860-d795f7e4783b" + (reference "J1") (unit 1) (value "Testpoint_RST") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/d7d96841-de0b-4b68-93dc-ad2abeaf9cc2" + (reference "J2") (unit 1) (value "Testpoint_RST") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/356e866c-f8ca-4490-bd06-b520b0a2bde5" + (reference "J3") (unit 1) (value "Testpoint_ADC") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/470563d8-5342-4723-8999-8444b4befa49" + (reference "J4") (unit 1) (value "Testpoint_SEN_12V") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/9a53c107-7884-47e4-baa5-c7224342b670" + (reference "J5") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/204e0472-2192-4b9d-9464-d7a17a87d6c9" + (reference "J6") (unit 1) (value "Testpoint_SEN_5V") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/8f2f0038-aecd-417c-8ed7-41975f1ad638" + (reference "J7") (unit 1) (value "Conn_01x30_Female") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x30_P2.54mm_Vertical") + ) + (path "/04014e2e-cb46-469c-967e-c6bcf4518bff" + (reference "J8") (unit 1) (value "Conn_01x06_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical") + ) + (path "/7321b9e3-b2c3-4370-8d92-5b360000c112" + (reference "J9") (unit 1) (value "Conn_01x06_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/a0b55039-1d75-4207-a887-4b9b89cd6a4f" + (reference "J12") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/761406f4-13fa-4c19-8252-e4370dda9ba0" + (reference "J13") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/f37d1b33-7634-4681-9508-814ad5a6a51e" + (reference "J14") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/64e0ac62-fdcf-46b8-a20f-7dceda5c04e8" + (reference "J15") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060929628" + (reference "J17") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006094781b" + (reference "J19") (unit 1) (value "Testpoint_3V3") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-000060947827" + (reference "J20") (unit 1) (value "Testpoint_GND") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-0000609480a1" + (reference "J21") (unit 1) (value "Testpoint_LDO_IN") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/34512155-0a28-4ad6-8bb7-7bf2306ecbaf" + (reference "J22") (unit 1) (value "USB_B_Micro") (footprint "stock:micro_usb") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/0cf62c31-0ac3-4d05-bf89-62074fa17567" + (reference "Q1") (unit 1) (value "S8050") (footprint "Package_TO_SOT_SMD:SOT-23") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/1803c314-b0ab-4b15-b1b3-612552fa299c" + (reference "Q2") (unit 1) (value "S8050") (footprint "Package_TO_SOT_SMD:SOT-23") + ) + (path "/1c5d86a8-4c2c-496e-90e1-97a322632465" + (reference "R1") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/5a634fce-0d05-4f11-9f08-2bde44e5542e" + (reference "R2") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/33d58b3c-a22b-4112-8a2d-522cded5759d" + (reference "R3") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/130f2f3c-bc50-4952-804b-628d5c07d214" + (reference "R4") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/6ee8e72d-a680-4049-822e-be1b1fddfe27" + (reference "R5") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/00b052de-af65-4c18-b885-94c41be8f64e" + (reference "R6") (unit 1) (value "470Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/86a69a45-6823-4088-85e8-e14aa1af9628" + (reference "R7") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/385bbb43-4a8c-473c-9555-557d89e713c8" + (reference "R8") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/f4342455-91b5-41bd-92cd-881d2e934125" + (reference "R9") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/b00d4ee4-fcdc-4ff6-bc7f-b91bd5efcb61" + (reference "R10") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/114441bb-4199-4f5c-b215-3abd726556d5" + (reference "R11") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/26d5e4a7-de80-40c9-a781-aa14c0311408" + (reference "R12") (unit 1) (value "1kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/9d74152e-7191-42ca-a6ac-12dbe4241544" + (reference "R16") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/2265d06c-5de3-42c2-8f12-2e8783f51da0" + (reference "R17") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/21e76397-b06e-4e87-be57-622b34e6d8de" + (reference "R18") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/80a59cad-3314-4ec4-9a84-35d9cfde0bbe" + (reference "R22") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/d1aabd28-4f24-4d71-a424-4453d83b1872" + (reference "R23") (unit 1) (value "12kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/01f735fb-3377-414d-9c60-98273fa7ca07" + (reference "R24") (unit 1) (value "470Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/19c9ccc0-cb8f-450c-a626-03f7bcc00cde" + (reference "R25") (unit 1) (value "220Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/1d61f091-e74c-4ed6-9549-b886a70f8ed3" + (reference "R26") (unit 1) (value "220Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/009fb402-daaf-4ee4-a841-e2020a5a92cd" + (reference "SW1") (unit 1) (value "SW_Push") (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3") + ) + (path "/844e5bf1-64d0-475c-8e4c-a0ba4a01f2b1" + (reference "SW2") (unit 1) (value "SW_Push") (footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3") + ) + (path "/a1b1e820-83e8-4b7d-a7f6-f9ea3f656f1c" + (reference "U1") (unit 1) (value "ESP-12E") (footprint "RF_Module:ESP-12E") + ) + (path "/a6cf2d2a-674b-4985-91c6-5d8a2d438456/102280cb-52f1-4d00-a983-b7d0fff143e3" + (reference "U3") (unit 1) (value "STM32G031G8Ux") (footprint "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm") + ) + (path "/3cd7c206-0af5-4876-b4e5-4cddd2336028/d407cf58-389b-4851-92ff-397556db00b8" + (reference "U4") (unit 1) (value "STM32L011F4Ux") (footprint "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm") + ) + (path "/eafc1a6b-2ced-415d-8c36-b290c8fa7b43/00000000-0000-0000-0000-00006078c93e" + (reference "U5") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2") + ) + (path "/9abe4e8b-91d7-4d72-88b6-09a5b2a0bce8/37b43181-8204-44f6-9b7f-fa5d4dc75e9b" + (reference "U6") (unit 1) (value "CP2102-GMR") (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm") + ) + ) +) diff --git a/pcb/hw_test/sym-lib-table b/pcb/hw_test/sym-lib-table new file mode 100644 index 0000000..8fac1b1 --- /dev/null +++ b/pcb/hw_test/sym-lib-table @@ -0,0 +1,3 @@ +(sym_lib_table + (lib (name "fiatlux")(type "KiCad")(uri "/home/jedi/Projects/fiatlux/pcb/fiatlux.kicad_sym")(options "")(descr "")) +) diff --git a/pcb/power.kicad_sch b/pcb/power.kicad_sch new file mode 100644 index 0000000..7a41a0b --- /dev/null +++ b/pcb/power.kicad_sch @@ -0,0 +1,1606 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Female" (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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Female_1_1" + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x03_Male_1_1" + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 2.54) + (xy 0.8636 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 2.54 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (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:CP" (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" "Device_CP" (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_fp_filters" "CP_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CP_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "CP_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:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "D_Schottky" (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" "diode Schottky" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Schottky diode" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "D_Schottky_0_1" + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + (xy -1.27 0) + (xy 1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 0.635) + (xy -1.905 1.27) + (xy -1.27 1.27) + (xy -1.27 -1.27) + (xy -0.635 -1.27) + (xy -0.635 -0.635) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "D_Schottky_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:D_Zener" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "D_Zener" (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" "diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Zener diode" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "D_Zener_0_1" + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -1.27) + (xy -1.27 1.27) + (xy -0.762 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.27) + (xy 1.27 1.27) + (xy -1.27 0) + (xy 1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "D_Zener_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -3.81 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "AMS1117-3.3_0_1" + (rectangle (start -5.08 -5.08) (end 5.08 1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "AMS1117-3.3_1_1" + (pin power_in line (at 0 -7.62 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 7.62 0 180) (length 2.54) + (name "VO" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -7.62 0 0) (length 2.54) + (name "VI" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 0 3.556 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 \"+12V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+12V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+12V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+12V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (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)))) + ) + ) + ) + (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "#FLG" (id 0) (at 0 1.905 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "PWR_FLAG_0_0" + (pin power_out line (at 0 0 90) (length 0) + (name "pwr" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "PWR_FLAG_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 1.27) + (xy -1.016 1.905) + (xy 0 2.54) + (xy 1.016 1.905) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + ) + + (junction (at 180.34 97.79) (diameter 0) (color 0 0 0 0) + (uuid 199124ca-dd64-45cf-a063-97cc545cbea7) + ) + (junction (at 128.27 110.49) (diameter 0) (color 0 0 0 0) + (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f) + ) + (junction (at 113.03 62.23) (diameter 0) (color 0 0 0 0) + (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b) + ) + (junction (at 128.27 62.23) (diameter 0) (color 0 0 0 0) + (uuid 3b65c51e-c243-447e-bee9-832d94c1630e) + ) + (junction (at 158.75 62.23) (diameter 0) (color 0 0 0 0) + (uuid a917c6d9-225d-4c90-bf25-fe8eff8abd3f) + ) + (junction (at 128.27 97.79) (diameter 0) (color 0 0 0 0) + (uuid c210293b-1d7a-4e96-92e9-058784106727) + ) + (junction (at 180.34 110.49) (diameter 0) (color 0 0 0 0) + (uuid d3dd7cdb-b730-487d-804d-99150ba318ef) + ) + + (wire (pts (xy 180.34 97.79) (xy 180.34 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 099473f1-6598-46ff-a50f-4c520832170d) + ) + (wire (pts (xy 128.27 110.49) (xy 128.27 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a) + ) + (wire (pts (xy 158.75 60.96) (xy 158.75 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17ff35b3-d658-499b-9a46-ea36063fed4e) + ) + (wire (pts (xy 200.66 97.79) (xy 180.34 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1876c30c-72b2-4a8d-9f32-bf8b213530b4) + ) + (wire (pts (xy 148.59 100.33) (xy 148.59 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24adc223-60f0-4497-98a3-d664c5a13280) + ) + (wire (pts (xy 143.51 69.85) (xy 143.51 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a22c19-4cc5-4237-9651-0edc4f854154) + ) + (wire (pts (xy 220.98 72.39) (xy 220.98 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729) + ) + (wire (pts (xy 60.96 104.14) (xy 58.42 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34ce7009-187e-4541-a14e-708b3a2903d9) + ) + (wire (pts (xy 128.27 62.23) (xy 128.27 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3993c707-5291-41b6-83c0-d1c09cb3833a) + ) + (wire (pts (xy 128.27 58.42) (xy 128.27 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7) + ) + (wire (pts (xy 113.03 46.99) (xy 113.03 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4166ee49-ca07-4505-922f-0f70f37ef314) + ) + (wire (pts (xy 128.27 113.03) (xy 128.27 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797) + ) + (wire (pts (xy 200.66 110.49) (xy 180.34 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b) + ) + (wire (pts (xy 148.59 107.95) (xy 148.59 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841) + ) + (wire (pts (xy 240.03 60.96) (xy 240.03 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7) + ) + (wire (pts (xy 128.27 97.79) (xy 128.27 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763) + ) + (wire (pts (xy 148.59 97.79) (xy 128.27 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32) + ) + (wire (pts (xy 220.98 60.96) (xy 220.98 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7273dd21-e834-41d3-b279-d7de727709ca) + ) + (wire (pts (xy 135.89 62.23) (xy 128.27 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78b44915-d68e-4488-a873-34767153ef98) + ) + (wire (pts (xy 59.69 120.65) (xy 57.15 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82204892-ec79-4d38-a593-52fb9a9b4b87) + ) + (wire (pts (xy 113.03 62.23) (xy 128.27 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88deea08-baa5-4041-beb7-01c299cf00e6) + ) + (wire (pts (xy 158.75 62.23) (xy 158.75 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a3dae6-dcb5-435b-a383-656b6a19a316) + ) + (wire (pts (xy 200.66 100.33) (xy 200.66 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9112ddd5-10d5-48b8-954f-f1d5adcacbd9) + ) + (wire (pts (xy 180.34 77.47) (xy 180.34 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91fc5800-6029-46b1-848d-ca0091f97267) + ) + (wire (pts (xy 128.27 100.33) (xy 128.27 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5) + ) + (wire (pts (xy 148.59 110.49) (xy 128.27 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03) + ) + (wire (pts (xy 113.03 58.42) (xy 113.03 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7) + ) + (wire (pts (xy 240.03 72.39) (xy 240.03 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3fab380-991d-404b-95d5-1c209b047b6e) + ) + (wire (pts (xy 158.75 72.39) (xy 158.75 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b54cae5b-c17c-4ed7-b249-2e7d5e83609a) + ) + (wire (pts (xy 57.15 120.65) (xy 57.15 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8c8c7a1-d546-4878-9de9-463ec76dff98) + ) + (wire (pts (xy 180.34 64.77) (xy 180.34 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb8162f0-99c8-4884-be5b-c0d0c7e81ff6) + ) + (wire (pts (xy 128.27 46.99) (xy 128.27 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bedcf083-78dd-4086-9c06-636fc7cb7f70) + ) + (wire (pts (xy 128.27 72.39) (xy 128.27 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8) + ) + (wire (pts (xy 180.34 110.49) (xy 180.34 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212) + ) + (wire (pts (xy 180.34 100.33) (xy 180.34 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca9b74ce-0dee-401c-9544-f599f4cf538d) + ) + (wire (pts (xy 151.13 62.23) (xy 158.75 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d13b0eae-4711-4325-a6bb-aa8e3646e86e) + ) + (wire (pts (xy 58.42 104.14) (xy 58.42 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d767f2ff-12ec-4778-96cb-3fdd7a473d60) + ) + (wire (pts (xy 180.34 113.03) (xy 180.34 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a) + ) + (wire (pts (xy 200.66 107.95) (xy 200.66 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f23ac723-a36d-491d-9473-7ec0ffed332d) + ) + (wire (pts (xy 104.14 62.23) (xy 113.03 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be) + ) + + (label "LDO_IN" (at 120.65 62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b2b363dd-8e47-4a76-a142-e00e28334875) + ) + + (global_label "VOUT" (shape input) (at 60.96 92.71 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 165f4d8d-26a9-4cf2-a8d6-9936cd983be4) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 143.51 62.23 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c93e) + (property "Reference" "U5" (id 0) (at 143.51 56.0832 0)) + (property "Value" "AMS1117-3.3" (id 1) (at 143.51 58.3946 0)) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 143.51 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 146.05 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C6186" (id 4) (at 143.51 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e339683b-813c-4d40-af00-468cd2808e70)) + (pin "2" (uuid be147eac-c43b-4531-9825-86ae24fe72aa)) + (pin "3" (uuid 58c26e77-035b-432b-bec2-53e6c031023f)) + ) + + (symbol (lib_id "power:GND") (at 158.75 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c94a) + (property "Reference" "#PWR059" (id 0) (at 158.75 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 158.877 81.8642 0)) + (property "Footprint" "" (id 2) (at 158.75 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 158.75 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3253ebbb-5ca9-4b86-b20e-4865fda7f4e1)) + ) + + (symbol (lib_id "power:GND") (at 143.51 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c950) + (property "Reference" "#PWR057" (id 0) (at 143.51 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 143.637 81.8642 0)) + (property "Footprint" "" (id 2) (at 143.51 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 143.51 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d7c87834-cc27-4b93-8987-72a76e47b827)) + ) + + (symbol (lib_id "power:GND") (at 128.27 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c956) + (property "Reference" "#PWR054" (id 0) (at 128.27 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 128.397 81.8642 0)) + (property "Footprint" "" (id 2) (at 128.27 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid be5614dd-1ae4-4ef6-adcd-7592a78b9fa6)) + ) + + (symbol (lib_id "power:+3.3V") (at 158.75 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c95c) + (property "Reference" "#PWR058" (id 0) (at 158.75 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 159.131 56.5658 0)) + (property "Footprint" "" (id 2) (at 158.75 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 158.75 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1454f660-8c7c-4f70-93ab-f1c8483e4307)) + ) + + (symbol (lib_id "Device:D_Schottky") (at 128.27 54.61 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c973) + (property "Reference" "D7" (id 0) (at 133.7818 54.61 0)) + (property "Value" "SS14" (id 1) (at 131.4704 54.61 0)) + (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 131.445 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 128.27 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2480" (id 4) (at 128.27 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7f52de80-a092-477d-9369-506458685522)) + (pin "2" (uuid 4bdebde4-70c5-4275-be6c-6a0928e938ce)) + ) + + (symbol (lib_id "Device:C") (at 128.27 68.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006078c989) + (property "Reference" "C5" (id 0) (at 131.191 67.4116 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10uF" (id 1) (at 131.191 69.723 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 129.2352 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 128.27 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C15850" (id 4) (at 128.27 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 180e1e54-4369-4276-a9ab-ff77bcb79641)) + (pin "2" (uuid 5e49e3a6-8643-4bac-ab03-0655787afdc5)) + ) + + (symbol (lib_id "power:+3.3V") (at 180.34 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060793a86) + (property "Reference" "#PWR060" (id 0) (at 180.34 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 180.721 56.5658 0)) + (property "Footprint" "" (id 2) (at 180.34 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 180.34 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d5c10d34-5ae0-4a6b-bad8-d4ed4b393fc8)) + ) + + (symbol (lib_id "power:GND") (at 180.34 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006079401e) + (property "Reference" "#PWR061" (id 0) (at 180.34 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 180.467 81.8642 0)) + (property "Footprint" "" (id 2) (at 180.34 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 180.34 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 896980c6-68a3-470e-8dbf-3380fcfd1493)) + ) + + (symbol (lib_id "Device:CP") (at 180.34 68.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060794539) + (property "Reference" "C9" (id 0) (at 183.3372 67.4116 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TAJB107K006RNJ" (id 1) (at 183.3372 69.723 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (id 2) (at 181.3052 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 180.34 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C16133" (id 4) (at 180.34 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d46c2d73-379f-42b5-81a1-576937a46f8f)) + (pin "2" (uuid dc47f62c-5bd1-44db-8ac8-e0f50622a023)) + ) + + (symbol (lib_id "Device:C") (at 148.59 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607b779d) + (property "Reference" "C7" (id 0) (at 151.511 102.9716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 151.511 105.283 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 149.5552 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 148.59 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 148.59 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9f4f3253-0c82-469b-b8df-d3a639d1e412)) + (pin "2" (uuid 9eb3a539-a3d5-4cdc-b472-35f2ece9088c)) + ) + + (symbol (lib_id "power:+3.3V") (at 128.27 95.25 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607b7fbf) + (property "Reference" "#PWR055" (id 0) (at 128.27 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 128.651 90.8558 0)) + (property "Footprint" "" (id 2) (at 128.27 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d0eb205d-2be8-4a73-8949-dd4fe9e0ca97)) + ) + + (symbol (lib_id "power:GND") (at 128.27 113.03 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607b9620) + (property "Reference" "#PWR056" (id 0) (at 128.27 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 128.397 117.4242 0)) + (property "Footprint" "" (id 2) (at 128.27 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 47040ab8-79eb-465d-90a7-1bd96a23c7f6)) + ) + + (symbol (lib_id "Device:C") (at 200.66 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607c2a6a) + (property "Reference" "C11" (id 0) (at 203.581 102.9716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 203.581 105.283 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 201.6252 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 200.66 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C14663" (id 4) (at 200.66 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c0187d96-75c2-4f14-a265-f1191a1e72ef)) + (pin "2" (uuid f3930528-4a4e-4023-8cd2-b8314b7ebf75)) + ) + + (symbol (lib_id "power:GND") (at 180.34 113.03 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607c2a7c) + (property "Reference" "#PWR063" (id 0) (at 180.34 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 180.467 117.4242 0)) + (property "Footprint" "" (id 2) (at 180.34 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 180.34 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9afd9589-1c7e-4ddc-835b-8f56abf10e11)) + ) + + (symbol (lib_id "Device:D_Schottky") (at 113.03 54.61 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000607c7255) + (property "Reference" "D6" (id 0) (at 118.5418 54.61 0)) + (property "Value" "SS14" (id 1) (at 116.2304 54.61 0)) + (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 116.205 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 113.03 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2480" (id 4) (at 113.03 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4247befd-0d16-4ebd-a92f-3444732c9704)) + (pin "2" (uuid 2dc3e3f9-4b13-4051-a201-8af13b42920c)) + ) + + (symbol (lib_id "power:+12V") (at 113.03 46.99 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608dd823) + (property "Reference" "#PWR052" (id 0) (at 113.03 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 113.411 42.5958 0)) + (property "Footprint" "" (id 2) (at 113.03 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 113.03 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2e586188-20da-44b2-8162-f49779759fcb)) + ) + + (symbol (lib_id "power:+5V") (at 128.27 46.99 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608de102) + (property "Reference" "#PWR053" (id 0) (at 128.27 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 128.651 42.5958 0)) + (property "Footprint" "" (id 2) (at 128.27 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f20b2654-0424-4c49-9857-f83b37957c4e)) + ) + + (symbol (lib_id "power:+5V") (at 180.34 95.25 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608e064a) + (property "Reference" "#PWR062" (id 0) (at 180.34 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 180.721 90.8558 0)) + (property "Footprint" "" (id 2) (at 180.34 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 180.34 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 93d80040-ef84-421f-bfe5-b70c610edc74)) + ) + + (symbol (lib_id "Device:D_Zener") (at 220.98 68.58 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608e2da3) + (property "Reference" "D8" (id 0) (at 223.012 67.4116 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Z 5V" (id 1) (at 223.012 69.723 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Diode_SMD:D_MiniMELF" (id 2) (at 220.98 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 220.98 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 220.98 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a95c9cf3-e7f6-4e55-af82-e835c376a250)) + (pin "2" (uuid 1476affd-a909-4d59-8cc2-0ff239888410)) + ) + + (symbol (lib_id "Device:D_Zener") (at 240.03 68.58 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608e7242) + (property "Reference" "D9" (id 0) (at 242.062 67.4116 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Z 12V" (id 1) (at 242.062 69.723 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Diode_SMD:D_MiniMELF" (id 2) (at 240.03 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 240.03 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 240.03 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid de60ff0e-71ab-4d6b-a0b2-5e0037edff59)) + (pin "2" (uuid f5d98e2e-d011-40d1-a778-03c975103cd0)) + ) + + (symbol (lib_id "power:+5V") (at 220.98 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608ea16e) + (property "Reference" "#PWR064" (id 0) (at 220.98 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 221.361 56.5658 0)) + (property "Footprint" "" (id 2) (at 220.98 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c553a983-ba7d-4d68-906f-34e25e6b7f2e)) + ) + + (symbol (lib_id "power:+12V") (at 240.03 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608eb6fb) + (property "Reference" "#PWR066" (id 0) (at 240.03 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 240.411 56.5658 0)) + (property "Footprint" "" (id 2) (at 240.03 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 240.03 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 369a7e4a-6334-46e8-9fef-7202a2b62fe5)) + ) + + (symbol (lib_id "power:GND") (at 220.98 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608ec96e) + (property "Reference" "#PWR065" (id 0) (at 220.98 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 221.107 81.8642 0)) + (property "Footprint" "" (id 2) (at 220.98 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 220.98 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2d10b675-ae43-4f06-a326-eddfcb496816)) + ) + + (symbol (lib_id "power:GND") (at 240.03 77.47 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000608ed499) + (property "Reference" "#PWR067" (id 0) (at 240.03 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 240.157 81.8642 0)) + (property "Footprint" "" (id 2) (at 240.03 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 240.03 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b414e03d-1195-44f2-93d4-976a411fb3c8)) + ) + + (symbol (lib_id "power:GND") (at 58.42 106.68 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929622) + (property "Reference" "#PWR045" (id 0) (at 58.42 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 58.547 111.0742 0)) + (property "Footprint" "" (id 2) (at 58.42 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 58.42 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7516eb39-2363-4c49-983c-874313b223ba)) + ) + + (symbol (lib_id "Connector:Conn_01x03_Male") (at 66.04 92.71 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929628) + (property "Reference" "J17" (id 0) (at 66.7512 90.9828 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Conn_01x03_Male" (id 1) (at 66.7512 93.2942 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" (id 2) (at 66.04 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 66.04 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 66.04 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 73095e0b-d40c-4e95-8001-0dfdeb49f47c)) + (pin "2" (uuid d8223ae3-1180-42fa-9a62-c897b696411e)) + (pin "3" (uuid 2f1a2a04-ee37-495d-b2d6-0866c6218c8a)) + ) + + (symbol (lib_id "power:+12V") (at 60.96 101.6 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929635) + (property "Reference" "#PWR049" (id 0) (at 64.77 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 57.7088 101.219 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 60.96 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1e0bd842-c0e0-45e3-abb8-06312abd848f)) + ) + + (symbol (lib_id "power:+12V") (at 60.96 90.17 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006092963b) + (property "Reference" "#PWR047" (id 0) (at 64.77 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 57.7088 89.789 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 60.96 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6267cf9e-2bb7-41cf-b797-a3723b70bd4e)) + ) + + (symbol (lib_id "power:+5V") (at 60.96 95.25 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929641) + (property "Reference" "#PWR048" (id 0) (at 64.77 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 57.7088 94.869 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 60.96 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 89211360-eb65-4980-a4e9-825fc6a7b83a)) + ) + + (symbol (lib_id "power:GND") (at 57.15 123.19 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929649) + (property "Reference" "#PWR044" (id 0) (at 57.15 129.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 57.277 127.5842 0)) + (property "Footprint" "" (id 2) (at 57.15 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 57.15 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 70262f04-aeaf-4bf9-8239-33f2f27aaaea)) + ) + + (symbol (lib_id "power:+5V") (at 59.69 118.11 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060929655) + (property "Reference" "#PWR046" (id 0) (at 63.5 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 56.4388 117.729 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 59.69 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 59.69 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6149507c-e68b-4b95-b5d1-9598de14290e)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 68.58 55.88 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006094781b) + (property "Reference" "J19" (id 0) (at 69.2912 55.2196 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_3V3" (id 1) (at 69.2912 57.531 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 68.58 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 68.58 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 68.58 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 30b53b81-8d67-451d-9f9a-fabac55afe7e)) + ) + + (symbol (lib_id "power:+3.3V") (at 63.5 55.88 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060947821) + (property "Reference" "#PWR050" (id 0) (at 67.31 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 59.1058 55.499 0)) + (property "Footprint" "" (id 2) (at 63.5 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.5 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eff44830-946f-40d5-8571-3dd3b71c35cc)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 68.58 62.23 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060947827) + (property "Reference" "J20" (id 0) (at 69.2912 61.5696 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_GND" (id 1) (at 69.2912 63.881 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 68.58 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 68.58 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 68.58 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 92b89c74-55a8-4022-8042-ca22feff56d1)) + ) + + (symbol (lib_id "power:GND") (at 63.5 62.23 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-00006094782d) + (property "Reference" "#PWR051" (id 0) (at 57.15 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 59.1058 62.357 0)) + (property "Footprint" "" (id 2) (at 63.5 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.5 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7a5829b6-0c8b-42cd-9ca1-df4c38a638c0)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 99.06 62.23 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609480a1) + (property "Reference" "J21" (id 0) (at 101.8032 56.515 0)) + (property "Value" "Testpoint_LDO_IN" (id 1) (at 101.8032 58.8264 0)) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 99.06 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 99.06 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 99.06 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f87f0d9c-66da-47b7-8776-6a2f760542b5)) + ) + + (symbol (lib_id "Device:C") (at 158.75 68.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609c4cdd) + (property "Reference" "C8" (id 0) (at 161.671 67.4116 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10uF" (id 1) (at 161.671 69.723 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 159.7152 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 158.75 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C15850" (id 4) (at 158.75 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 09151d66-14e5-400d-9d20-763f29522561)) + (pin "2" (uuid 5a522532-c099-4876-a60e-0f1006686a2e)) + ) + + (symbol (lib_id "Device:C") (at 128.27 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609c54a2) + (property "Reference" "C6" (id 0) (at 131.191 102.9716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10uF" (id 1) (at 131.191 105.283 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 129.2352 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 128.27 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C15850" (id 4) (at 128.27 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 59b769a2-11ff-47ac-ab14-6ab002bc58dc)) + (pin "2" (uuid 4764682f-6d51-43b7-8ae1-fe61ff2ca722)) + ) + + (symbol (lib_id "Device:C") (at 180.34 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-0000609c5abb) + (property "Reference" "C10" (id 0) (at 183.261 102.9716 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10uF" (id 1) (at 183.261 105.283 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 181.3052 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 180.34 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C15850" (id 4) (at 180.34 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 54f2ef38-6646-48b1-b525-7f7160f8f321)) + (pin "2" (uuid 7e3cda1f-4757-4889-9afa-473cee754858)) + ) + + (symbol (lib_id "power:PWR_FLAG") (at 26.67 96.52 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a9be5e) + (property "Reference" "#FLG01" (id 0) (at 26.67 98.425 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (id 1) (at 26.67 100.9142 0)) + (property "Footprint" "" (id 2) (at 26.67 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 26.67 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e55a6171-d718-49ee-8ada-73e5479388c2)) + ) + + (symbol (lib_id "power:+12V") (at 26.67 96.52 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00000000-0000-0000-0000-000060a9d3db) + (property "Reference" "#PWR043" (id 0) (at 26.67 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+12V" (id 1) (at 27.051 93.2688 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 26.67 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9bd7f006-42ed-42fc-8b4d-c49ffbd3aa28)) + ) + + (symbol (lib_id "power:PWR_FLAG") (at 113.03 62.23 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb4a4929-028c-48be-b42d-0256eec11e8b) + (property "Reference" "#FLG02" (id 0) (at 113.03 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "PWR_FLAG" (id 1) (at 113.03 67.31 0)) + (property "Footprint" "" (id 2) (at 113.03 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 113.03 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a84b79d3-4542-4b03-a496-4c5a9d771241)) + ) +) diff --git a/pcb/power.sch b/pcb/power.sch deleted file mode 100644 index 3ef32ee..0000000 --- a/pcb/power.sch +++ /dev/null @@ -1,643 +0,0 @@ -EESchema Schematic File Version 4 -EELAYER 30 0 -EELAYER END -$Descr A4 11693 8268 -encoding utf-8 -Sheet 2 2 -Title "" -Date "" -Rev "" -Comp "" -Comment1 "" -Comment2 "" -Comment3 "" -Comment4 "" -$EndDescr -$Comp -L Regulator_Linear:AMS1117-3.3 U? -U 1 1 6078C93E -P 5650 2450 -AR Path="/6078C93E" Ref="U?" Part="1" -AR Path="/6078273A/6078C93E" Ref="U3" Part="1" -F 0 "U3" H 5650 2692 50 0000 C CNN -F 1 "AMS1117-3.3" H 5650 2601 50 0000 C CNN -F 2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" H 5650 2650 50 0001 C CNN -F 3 "http://www.advanced-monolithic.com/pdf/ds1117.pdf" H 5750 2200 50 0001 C CNN -F 4 "C6186" H 5650 2450 50 0001 C CNN "LCSC" - 1 5650 2450 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR? -U 1 1 6078C94A -P 6250 3050 -AR Path="/6078C94A" Ref="#PWR?" Part="1" -AR Path="/6078273A/6078C94A" Ref="#PWR0101" Part="1" -F 0 "#PWR0101" H 6250 2800 50 0001 C CNN -F 1 "GND" H 6255 2877 50 0000 C CNN -F 2 "" H 6250 3050 50 0001 C CNN -F 3 "" H 6250 3050 50 0001 C CNN - 1 6250 3050 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR? -U 1 1 6078C950 -P 5650 3050 -AR Path="/6078C950" Ref="#PWR?" Part="1" -AR Path="/6078273A/6078C950" Ref="#PWR0102" Part="1" -F 0 "#PWR0102" H 5650 2800 50 0001 C CNN -F 1 "GND" H 5655 2877 50 0000 C CNN -F 2 "" H 5650 3050 50 0001 C CNN -F 3 "" H 5650 3050 50 0001 C CNN - 1 5650 3050 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR? -U 1 1 6078C956 -P 5050 3050 -AR Path="/6078C956" Ref="#PWR?" Part="1" -AR Path="/6078273A/6078C956" Ref="#PWR0103" Part="1" -F 0 "#PWR0103" H 5050 2800 50 0001 C CNN -F 1 "GND" H 5055 2877 50 0000 C CNN -F 2 "" H 5050 3050 50 0001 C CNN -F 3 "" H 5050 3050 50 0001 C CNN - 1 5050 3050 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR? -U 1 1 6078C95C -P 6250 2400 -AR Path="/6078C95C" Ref="#PWR?" Part="1" -AR Path="/6078273A/6078C95C" Ref="#PWR0104" Part="1" -F 0 "#PWR0104" H 6250 2250 50 0001 C CNN -F 1 "+3.3V" H 6265 2573 50 0000 C CNN -F 2 "" H 6250 2400 50 0001 C CNN -F 3 "" H 6250 2400 50 0001 C CNN - 1 6250 2400 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5350 2450 5050 2450 -Wire Wire Line - 5050 2450 5050 2550 -Wire Wire Line - 6250 2400 6250 2450 -Wire Wire Line - 5950 2450 6250 2450 -Connection ~ 6250 2450 -Wire Wire Line - 6250 2450 6250 2550 -Wire Wire Line - 6250 2850 6250 3050 -$Comp -L Device:D_Schottky D? -U 1 1 6078C973 -P 5050 2150 -AR Path="/6078C973" Ref="D?" Part="1" -AR Path="/6078273A/6078C973" Ref="D1" Part="1" -F 0 "D1" H 5050 1933 50 0000 C CNN -F 1 "SS14" H 5050 2024 50 0000 C CNN -F 2 "Diode_SMD:D_SMA" H 5050 2025 50 0001 C CNN -F 3 "~" H 5050 2150 50 0001 C CNN -F 4 "C2480" H 5050 2150 50 0001 C CNN "LCSC" - 1 5050 2150 - 0 -1 -1 0 -$EndComp -$Comp -L Device:C C? -U 1 1 6078C989 -P 5050 2700 -AR Path="/6078C989" Ref="C?" Part="1" -AR Path="/6078273A/6078C989" Ref="C1" Part="1" -F 0 "C1" H 5165 2746 50 0000 L CNN -F 1 "10uF" H 5165 2655 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric" H 5088 2550 50 0001 C CNN -F 3 "~" H 5050 2700 50 0001 C CNN -F 4 "C15850" H 5050 2700 50 0001 C CNN "LCSC" - 1 5050 2700 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0108 -U 1 1 60793A86 -P 7100 2400 -F 0 "#PWR0108" H 7100 2250 50 0001 C CNN -F 1 "+3.3V" H 7115 2573 50 0000 C CNN -F 2 "" H 7100 2400 50 0001 C CNN -F 3 "" H 7100 2400 50 0001 C CNN - 1 7100 2400 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0109 -U 1 1 6079401E -P 7100 3050 -F 0 "#PWR0109" H 7100 2800 50 0001 C CNN -F 1 "GND" H 7105 2877 50 0000 C CNN -F 2 "" H 7100 3050 50 0001 C CNN -F 3 "" H 7100 3050 50 0001 C CNN - 1 7100 3050 - 1 0 0 -1 -$EndComp -$Comp -L Device:CP C3 -U 1 1 60794539 -P 7100 2700 -F 0 "C3" H 7218 2746 50 0000 L CNN -F 1 "TAJB107K006RNJ" H 7218 2655 50 0000 L CNN -F 2 "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" H 7138 2550 50 0001 C CNN -F 3 "~" H 7100 2700 50 0001 C CNN -F 4 "C16133" H 7100 2700 50 0001 C CNN "LCSC" - 1 7100 2700 - 1 0 0 -1 -$EndComp -Wire Wire Line - 7100 2550 7100 2400 -Wire Wire Line - 7100 3050 7100 2850 -$Comp -L Device:C C? -U 1 1 607B779D -P 5850 4100 -AR Path="/607B779D" Ref="C?" Part="1" -AR Path="/6078273A/607B779D" Ref="C6" Part="1" -F 0 "C6" H 5965 4146 50 0000 L CNN -F 1 "100nF" H 5965 4055 50 0000 L CNN -F 2 "Capacitor_SMD:C_0603_1608Metric" H 5888 3950 50 0001 C CNN -F 3 "~" H 5850 4100 50 0001 C CNN -F 4 "C14663" H 5850 4100 50 0001 C CNN "LCSC" - 1 5850 4100 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR? -U 1 1 607B7FBF -P 5050 3750 -AR Path="/607B7FBF" Ref="#PWR?" Part="1" -AR Path="/6078273A/607B7FBF" Ref="#PWR0134" Part="1" -F 0 "#PWR0134" H 5050 3600 50 0001 C CNN -F 1 "+3.3V" H 5065 3923 50 0000 C CNN -F 2 "" H 5050 3750 50 0001 C CNN -F 3 "" H 5050 3750 50 0001 C CNN - 1 5050 3750 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0135 -U 1 1 607B9620 -P 5050 4450 -F 0 "#PWR0135" H 5050 4200 50 0001 C CNN -F 1 "GND" H 5055 4277 50 0000 C CNN -F 2 "" H 5050 4450 50 0001 C CNN -F 3 "" H 5050 4450 50 0001 C CNN - 1 5050 4450 - 1 0 0 -1 -$EndComp -Wire Wire Line - 5050 4450 5050 4350 -Wire Wire Line - 5850 4250 5850 4350 -Wire Wire Line - 5850 4350 5050 4350 -Connection ~ 5050 4350 -Wire Wire Line - 5050 4350 5050 4250 -Wire Wire Line - 5850 3950 5850 3850 -Wire Wire Line - 5850 3850 5050 3850 -Wire Wire Line - 5050 3850 5050 3750 -Wire Wire Line - 5050 3950 5050 3850 -Connection ~ 5050 3850 -$Comp -L Device:C C? -U 1 1 607C2A6A -P 7900 4100 -AR Path="/607C2A6A" Ref="C?" Part="1" -AR Path="/6078273A/607C2A6A" Ref="C8" Part="1" -F 0 "C8" H 8015 4146 50 0000 L CNN -F 1 "100nF" H 8015 4055 50 0000 L CNN -F 2 "Capacitor_SMD:C_0603_1608Metric" H 7938 3950 50 0001 C CNN -F 3 "~" H 7900 4100 50 0001 C CNN -F 4 "C14663" H 7900 4100 50 0001 C CNN "LCSC" - 1 7900 4100 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0136 -U 1 1 607C2A7C -P 7100 4450 -F 0 "#PWR0136" H 7100 4200 50 0001 C CNN -F 1 "GND" H 7105 4277 50 0000 C CNN -F 2 "" H 7100 4450 50 0001 C CNN -F 3 "" H 7100 4450 50 0001 C CNN - 1 7100 4450 - 1 0 0 -1 -$EndComp -Wire Wire Line - 7100 4450 7100 4350 -Wire Wire Line - 7900 4250 7900 4350 -Wire Wire Line - 7900 4350 7100 4350 -Connection ~ 7100 4350 -Wire Wire Line - 7100 4350 7100 4250 -Wire Wire Line - 7900 3950 7900 3850 -Wire Wire Line - 7900 3850 7100 3850 -Wire Wire Line - 7100 3850 7100 3750 -Wire Wire Line - 7100 3950 7100 3850 -Connection ~ 7100 3850 -$Comp -L Device:D_Schottky D? -U 1 1 607C7255 -P 4450 2150 -AR Path="/607C7255" Ref="D?" Part="1" -AR Path="/6078273A/607C7255" Ref="D6" Part="1" -F 0 "D6" H 4450 1933 50 0000 C CNN -F 1 "SS14" H 4450 2024 50 0000 C CNN -F 2 "Diode_SMD:D_SMA" H 4450 2025 50 0001 C CNN -F 3 "~" H 4450 2150 50 0001 C CNN -F 4 "C2480" H 4450 2150 50 0001 C CNN "LCSC" - 1 4450 2150 - 0 -1 -1 0 -$EndComp -Wire Wire Line - 5650 2750 5650 3050 -Wire Wire Line - 5050 2850 5050 3050 -Wire Wire Line - 5050 2300 5050 2450 -Connection ~ 5050 2450 -Wire Wire Line - 4450 2300 4450 2450 -Wire Wire Line - 4450 2450 5050 2450 -$Comp -L power:+12V #PWR0132 -U 1 1 608DD823 -P 4450 1850 -F 0 "#PWR0132" H 4450 1700 50 0001 C CNN -F 1 "+12V" H 4465 2023 50 0000 C CNN -F 2 "" H 4450 1850 50 0001 C CNN -F 3 "" H 4450 1850 50 0001 C CNN - 1 4450 1850 - 1 0 0 -1 -$EndComp -$Comp -L power:+5V #PWR0133 -U 1 1 608DE102 -P 5050 1850 -F 0 "#PWR0133" H 5050 1700 50 0001 C CNN -F 1 "+5V" H 5065 2023 50 0000 C CNN -F 2 "" H 5050 1850 50 0001 C CNN -F 3 "" H 5050 1850 50 0001 C CNN - 1 5050 1850 - 1 0 0 -1 -$EndComp -Wire Wire Line - 4450 1850 4450 2000 -Wire Wire Line - 5050 1850 5050 2000 -$Comp -L power:+5V #PWR0137 -U 1 1 608E064A -P 7100 3750 -F 0 "#PWR0137" H 7100 3600 50 0001 C CNN -F 1 "+5V" H 7115 3923 50 0000 C CNN -F 2 "" H 7100 3750 50 0001 C CNN -F 3 "" H 7100 3750 50 0001 C CNN - 1 7100 3750 - 1 0 0 -1 -$EndComp -$Comp -L Device:D_Zener D7 -U 1 1 608E2DA3 -P 8700 2700 -F 0 "D7" V 8654 2780 50 0000 L CNN -F 1 "Z 5V" V 8745 2780 50 0000 L CNN -F 2 "Diode_SMD:D_MiniMELF" H 8700 2700 50 0001 C CNN -F 3 "~" H 8700 2700 50 0001 C CNN - 1 8700 2700 - 0 1 1 0 -$EndComp -$Comp -L Device:D_Zener D8 -U 1 1 608E7242 -P 9450 2700 -F 0 "D8" V 9404 2780 50 0000 L CNN -F 1 "Z 12V" V 9495 2780 50 0000 L CNN -F 2 "Diode_SMD:D_MiniMELF" H 9450 2700 50 0001 C CNN -F 3 "~" H 9450 2700 50 0001 C CNN - 1 9450 2700 - 0 1 1 0 -$EndComp -$Comp -L power:+5V #PWR0138 -U 1 1 608EA16E -P 8700 2400 -F 0 "#PWR0138" H 8700 2250 50 0001 C CNN -F 1 "+5V" H 8715 2573 50 0000 C CNN -F 2 "" H 8700 2400 50 0001 C CNN -F 3 "" H 8700 2400 50 0001 C CNN - 1 8700 2400 - 1 0 0 -1 -$EndComp -$Comp -L power:+12V #PWR0139 -U 1 1 608EB6FB -P 9450 2400 -F 0 "#PWR0139" H 9450 2250 50 0001 C CNN -F 1 "+12V" H 9465 2573 50 0000 C CNN -F 2 "" H 9450 2400 50 0001 C CNN -F 3 "" H 9450 2400 50 0001 C CNN - 1 9450 2400 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0142 -U 1 1 608EC96E -P 8700 3050 -F 0 "#PWR0142" H 8700 2800 50 0001 C CNN -F 1 "GND" H 8705 2877 50 0000 C CNN -F 2 "" H 8700 3050 50 0001 C CNN -F 3 "" H 8700 3050 50 0001 C CNN - 1 8700 3050 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0143 -U 1 1 608ED499 -P 9450 3050 -F 0 "#PWR0143" H 9450 2800 50 0001 C CNN -F 1 "GND" H 9455 2877 50 0000 C CNN -F 2 "" H 9450 3050 50 0001 C CNN -F 3 "" H 9450 3050 50 0001 C CNN - 1 9450 3050 - 1 0 0 -1 -$EndComp -Wire Wire Line - 8700 2850 8700 3050 -Wire Wire Line - 9450 2850 9450 3050 -Wire Wire Line - 8700 2400 8700 2550 -Wire Wire Line - 9450 2400 9450 2550 -Text Label 4750 2450 0 50 ~ 0 -LDO_IN -$Comp -L Connector:Conn_01x01_Female J? -U 1 1 6094781B -P 2700 2200 -AR Path="/6094781B" Ref="J?" Part="1" -AR Path="/6078273A/6094781B" Ref="J9" Part="1" -F 0 "J9" H 2728 2226 50 0000 L CNN -F 1 "Testpoint_3V3" H 2728 2135 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 2700 2200 50 0001 C CNN -F 3 "~" H 2700 2200 50 0001 C CNN - 1 2700 2200 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR? -U 1 1 60947821 -P 2500 2200 -AR Path="/60947821" Ref="#PWR?" Part="1" -AR Path="/6078273A/60947821" Ref="#PWR0144" Part="1" -F 0 "#PWR0144" H 2500 2050 50 0001 C CNN -F 1 "+3.3V" H 2515 2373 50 0000 C CNN -F 2 "" H 2500 2200 50 0001 C CNN -F 3 "" H 2500 2200 50 0001 C CNN - 1 2500 2200 - 0 -1 -1 0 -$EndComp -$Comp -L Connector:Conn_01x01_Female J? -U 1 1 60947827 -P 2700 2450 -AR Path="/60947827" Ref="J?" Part="1" -AR Path="/6078273A/60947827" Ref="J10" Part="1" -F 0 "J10" H 2728 2476 50 0000 L CNN -F 1 "Testpoint_GND" H 2728 2385 50 0000 L CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 2700 2450 50 0001 C CNN -F 3 "~" H 2700 2450 50 0001 C CNN - 1 2700 2450 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR? -U 1 1 6094782D -P 2500 2450 -AR Path="/6094782D" Ref="#PWR?" Part="1" -AR Path="/6078273A/6094782D" Ref="#PWR0145" Part="1" -F 0 "#PWR0145" H 2500 2200 50 0001 C CNN -F 1 "GND" H 2505 2277 50 0000 C CNN -F 2 "" H 2500 2450 50 0001 C CNN -F 3 "" H 2500 2450 50 0001 C CNN - 1 2500 2450 - 0 1 1 0 -$EndComp -$Comp -L Connector:Conn_01x01_Female J? -U 1 1 609480A1 -P 3900 2450 -AR Path="/609480A1" Ref="J?" Part="1" -AR Path="/6078273A/609480A1" Ref="J11" Part="1" -F 0 "J11" H 3792 2225 50 0000 C CNN -F 1 "Testpoint_LDO_IN" H 3792 2316 50 0000 C CNN -F 2 "TestPoint:TestPoint_Pad_D2.0mm" H 3900 2450 50 0001 C CNN -F 3 "~" H 3900 2450 50 0001 C CNN - 1 3900 2450 - -1 0 0 1 -$EndComp -Wire Wire Line - 4100 2450 4450 2450 -Connection ~ 4450 2450 -$Comp -L Device:C C? -U 1 1 609C4CDD -P 6250 2700 -AR Path="/609C4CDD" Ref="C?" Part="1" -AR Path="/6078273A/609C4CDD" Ref="C5" Part="1" -F 0 "C5" H 6365 2746 50 0000 L CNN -F 1 "10uF" H 6365 2655 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric" H 6288 2550 50 0001 C CNN -F 3 "~" H 6250 2700 50 0001 C CNN -F 4 "C15850" H 6250 2700 50 0001 C CNN "LCSC" - 1 6250 2700 - 1 0 0 -1 -$EndComp -$Comp -L Device:C C? -U 1 1 609C54A2 -P 5050 4100 -AR Path="/609C54A2" Ref="C?" Part="1" -AR Path="/6078273A/609C54A2" Ref="C2" Part="1" -F 0 "C2" H 5165 4146 50 0000 L CNN -F 1 "10uF" H 5165 4055 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric" H 5088 3950 50 0001 C CNN -F 3 "~" H 5050 4100 50 0001 C CNN -F 4 "C15850" H 5050 4100 50 0001 C CNN "LCSC" - 1 5050 4100 - 1 0 0 -1 -$EndComp -$Comp -L Device:C C? -U 1 1 609C5ABB -P 7100 4100 -AR Path="/609C5ABB" Ref="C?" Part="1" -AR Path="/6078273A/609C5ABB" Ref="C7" Part="1" -F 0 "C7" H 7215 4146 50 0000 L CNN -F 1 "10uF" H 7215 4055 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric" H 7138 3950 50 0001 C CNN -F 3 "~" H 7100 4100 50 0001 C CNN -F 4 "C15850" H 7100 4100 50 0001 C CNN "LCSC" - 1 7100 4100 - 1 0 0 -1 -$EndComp -Wire Wire Line - 2300 4100 2300 4200 -Wire Wire Line - 2400 4100 2300 4100 -$Comp -L power:GND #PWR0105 -U 1 1 60929622 -P 2300 4200 -F 0 "#PWR0105" H 2300 3950 50 0001 C CNN -F 1 "GND" H 2305 4027 50 0000 C CNN -F 2 "" H 2300 4200 50 0001 C CNN -F 3 "" H 2300 4200 50 0001 C CNN - 1 2300 4200 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x03_Male J5 -U 1 1 60929628 -P 2600 3650 -F 0 "J5" H 2572 3582 50 0000 R CNN -F 1 "Conn_01x03_Male" H 2572 3673 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" H 2600 3650 50 0001 C CNN -F 3 "~" H 2600 3650 50 0001 C CNN - 1 2600 3650 - -1 0 0 1 -$EndComp -$Comp -L Connector:Conn_01x02_Male J12 -U 1 1 6092962E -P 2600 4100 -F 0 "J12" H 2572 3982 50 0000 R CNN -F 1 "Conn_01x02_Male" H 2572 4073 50 0000 R CNN -F 2 "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" H 2600 4100 50 0001 C CNN -F 3 "~" H 2600 4100 50 0001 C CNN - 1 2600 4100 - -1 0 0 1 -$EndComp -Text GLabel 2400 3650 0 50 Input ~ 0 -VOUT -$Comp -L power:+12V #PWR0123 -U 1 1 60929635 -P 2400 4000 -F 0 "#PWR0123" H 2400 3850 50 0001 C CNN -F 1 "+12V" V 2415 4128 50 0000 L CNN -F 2 "" H 2400 4000 50 0001 C CNN -F 3 "" H 2400 4000 50 0001 C CNN - 1 2400 4000 - 0 -1 -1 0 -$EndComp -$Comp -L power:+12V #PWR0124 -U 1 1 6092963B -P 2400 3550 -F 0 "#PWR0124" H 2400 3400 50 0001 C CNN -F 1 "+12V" V 2415 3678 50 0000 L CNN -F 2 "" H 2400 3550 50 0001 C CNN -F 3 "" H 2400 3550 50 0001 C CNN - 1 2400 3550 - 0 -1 -1 0 -$EndComp -$Comp -L power:+5V #PWR? -U 1 1 60929641 -P 2400 3750 -AR Path="/60929641" Ref="#PWR?" Part="1" -AR Path="/6078273A/60929641" Ref="#PWR0125" Part="1" -F 0 "#PWR0125" H 2400 3600 50 0001 C CNN -F 1 "+5V" V 2415 3878 50 0000 L CNN -F 2 "" H 2400 3750 50 0001 C CNN -F 3 "" H 2400 3750 50 0001 C CNN - 1 2400 3750 - 0 -1 -1 0 -$EndComp -Wire Wire Line - 2250 4750 2250 4850 -Wire Wire Line - 2350 4750 2250 4750 -$Comp -L power:GND #PWR0146 -U 1 1 60929649 -P 2250 4850 -F 0 "#PWR0146" H 2250 4600 50 0001 C CNN -F 1 "GND" H 2255 4677 50 0000 C CNN -F 2 "" H 2250 4850 50 0001 C CNN -F 3 "" H 2250 4850 50 0001 C CNN - 1 2250 4850 - 1 0 0 -1 -$EndComp -$Comp -L Connector:Conn_01x02_Male J3 -U 1 1 6092964F -P 2550 4750 -F 0 "J3" H 2522 4632 50 0000 R CNN -F 1 "Conn_01x02_Male" H 2522 4723 50 0000 R CNN -F 2 "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" H 2550 4750 50 0001 C CNN -F 3 "~" H 2550 4750 50 0001 C CNN - 1 2550 4750 - -1 0 0 1 -$EndComp -$Comp -L power:+5V #PWR? -U 1 1 60929655 -P 2350 4650 -AR Path="/60929655" Ref="#PWR?" Part="1" -AR Path="/6078273A/60929655" Ref="#PWR0147" Part="1" -F 0 "#PWR0147" H 2350 4500 50 0001 C CNN -F 1 "+5V" V 2365 4778 50 0000 L CNN -F 2 "" H 2350 4650 50 0001 C CNN -F 3 "" H 2350 4650 50 0001 C CNN - 1 2350 4650 - 0 -1 -1 0 -$EndComp -$Comp -L power:PWR_FLAG #FLG0101 -U 1 1 60A9BE5E -P 1050 3800 -F 0 "#FLG0101" H 1050 3875 50 0001 C CNN -F 1 "PWR_FLAG" H 1050 3973 50 0000 C CNN -F 2 "" H 1050 3800 50 0001 C CNN -F 3 "~" H 1050 3800 50 0001 C CNN - 1 1050 3800 - -1 0 0 1 -$EndComp -$Comp -L power:+12V #PWR0149 -U 1 1 60A9D3DB -P 1050 3800 -F 0 "#PWR0149" H 1050 3650 50 0001 C CNN -F 1 "+12V" V 1065 3928 50 0000 L CNN -F 2 "" H 1050 3800 50 0001 C CNN -F 3 "" H 1050 3800 50 0001 C CNN - 1 1050 3800 - 1 0 0 -1 -$EndComp -$EndSCHEMATC diff --git a/pcb/stm32g031g.kicad_sch b/pcb/stm32g031g.kicad_sch new file mode 100644 index 0000000..3160a1b --- /dev/null +++ b/pcb/stm32g031g.kicad_sch @@ -0,0 +1,1047 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ae0dea56-517e-40e6-be4c-6f0b40fda8ec) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Female" (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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Female_1_1" + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:LED_RGB" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 9.398 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LED_RGB" (id 1) (at 0 -8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED RGB diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "RGB LED, 6 pin package" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_RGB_0_0" + (text "B" (at -1.905 -6.35 0) + (effects (font (size 1.27 1.27))) + ) + (text "G" (at -1.905 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (text "R" (at -1.905 3.81 0) + (effects (font (size 1.27 1.27))) + ) + ) + (symbol "LED_RGB_0_1" + (polyline + (pts + (xy -1.27 -5.08) + (xy -2.54 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -5.08) + (xy 1.27 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -3.81) + (xy -1.27 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy -2.54 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 5.08) + (xy 1.27 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 6.35) + (xy -1.27 3.81) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -5.08) + (xy 2.54 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 5.08) + (xy 2.54 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 6.35) + (xy -1.27 3.81) + (xy -1.27 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -3.81) + (xy 1.27 -6.35) + (xy -1.27 -5.08) + (xy 1.27 -3.81) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + (xy -1.27 0) + (xy 1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 6.35) + (xy 1.27 3.81) + (xy -1.27 5.08) + (xy 1.27 6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 -3.81) + (xy 0.508 -2.286) + (xy -0.254 -2.286) + (xy 0.508 -2.286) + (xy 0.508 -3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 1.27) + (xy 0.508 2.794) + (xy -0.254 2.794) + (xy 0.508 2.794) + (xy 0.508 2.032) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 6.35) + (xy 0.508 7.874) + (xy -0.254 7.874) + (xy 0.508 7.874) + (xy 0.508 7.112) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -3.81) + (xy 1.524 -2.286) + (xy 0.762 -2.286) + (xy 1.524 -2.286) + (xy 1.524 -3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 1.524 2.794) + (xy 0.762 2.794) + (xy 1.524 2.794) + (xy 1.524 2.032) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 6.35) + (xy 1.524 7.874) + (xy 0.762 7.874) + (xy 1.524 7.874) + (xy 1.524 7.112) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 -1.27) (end 1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 1.27) (end 1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 3.81) (end 1.27 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 1.27 6.35) (end 1.27 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.794 8.382) (end -2.794 -7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "LED_RGB_1_1" + (pin passive line (at -5.08 5.08 0) (length 2.54) + (name "RK" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "GK" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 2.54) + (name "BK" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -5.08 180) (length 2.54) + (name "BA" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "GA" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 5.08 180) (length 2.54) + (name "RA" (effects (font (size 1.27 1.27)))) + (number "6" (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 "fiatlux:STM32G031G8Ux" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 2.54 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32G031G8Ux" (id 1) (at 2.54 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm" (id 2) (at 24.13 -26.67 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) + ) + (symbol "STM32G031G8Ux_0_1" + (rectangle (start -10.16 19.05) (end 10.16 -19.05) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "STM32G031G8Ux_1_1" + (pin bidirectional line (at -12.7 11.43 0) (length 2.54) + (name "PC14" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 6.35 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 3.81 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 1.27 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -1.27 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 1.27 0) (length 2.54) + (name "PB0" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -1.27 0) (length 2.54) + (name "PB1" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -3.81 180) (length 2.54) + (name "PA8" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 6.35 0) (length 2.54) + (name "PC6" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -6.35 180) (length 2.54) + (name "PA11" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -8.89 180) (length 2.54) + (name "PA12" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 8.89 0) (length 2.54) + (name "PC15" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -11.43 180) (length 2.54) + (name "PA13" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -13.97 180) (length 2.54) + (name "PA14" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -16.51 180) (length 2.54) + (name "PA15" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -3.81 0) (length 2.54) + (name "PB3" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -6.35 0) (length 2.54) + (name "PB4" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -8.89 0) (length 2.54) + (name "PB5" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -11.43 0) (length 2.54) + (name "PB6" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -13.97 0) (length 2.54) + (name "PB7" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -16.51 0) (length 2.54) + (name "PB8" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 21.59 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -21.59 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 16.51 0) (length 2.54) + (name "NRST" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 16.51 180) (length 2.54) + (name "PA0" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 13.97 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 11.43 180) (length 2.54) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 8.89 180) (length 2.54) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (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)))) + ) + ) + ) + ) + + + (no_connect (at 71.12 74.93) (uuid 14fbefb8-c2d6-4018-995e-25981998a2be)) + (no_connect (at 96.52 90.17) (uuid 1a197e4f-8b6b-4716-ac7d-56236ead4024)) + (no_connect (at 71.12 102.87) (uuid 45631167-1974-495e-bfcb-301a78a8f570)) + (no_connect (at 71.12 77.47) (uuid 475a4648-1ead-43ef-aa89-87ecf6521726)) + (no_connect (at 96.52 92.71) (uuid 6d42b50d-262f-4441-aa38-743affc0b998)) + (no_connect (at 96.52 95.25) (uuid a3530e83-cc9c-4799-b2f0-747f1d00478e)) + + (wire (pts (xy 228.6 80.01) (xy 228.6 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 139f697e-f727-4365-abd3-4942e9843437) + ) + (wire (pts (xy 68.58 95.25) (xy 71.12 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a8c4410-5d6a-45a6-a205-3c0bb19379bc) + ) + (wire (pts (xy 68.58 92.71) (xy 71.12 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ca6529f-c953-412d-b24e-8e773e3e0a98) + ) + (wire (pts (xy 71.12 97.79) (xy 68.58 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58bd46f5-3fb6-4a34-8401-3f7caed3103e) + ) + (wire (pts (xy 233.68 80.01) (xy 233.68 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 714f5bfb-2cab-41e4-98d4-675725b0d3d3) + ) + (wire (pts (xy 99.06 102.87) (xy 96.52 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1bf0a96-32ab-450d-ac8b-5ab4a1dc2ab4) + ) + (wire (pts (xy 223.52 80.01) (xy 223.52 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a72c0d3e-aad6-43f1-b37e-e44a8807dc29) + ) + (wire (pts (xy 68.58 69.85) (xy 71.12 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8adfe82-fc6f-49de-bb43-c80b77c461e8) + ) + (wire (pts (xy 68.58 90.17) (xy 71.12 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf16fa16-7669-4986-a80b-5f62580eff44) + ) + (wire (pts (xy 71.12 100.33) (xy 68.58 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc56526e-321f-426d-8c0a-d60af2d7dcb0) + ) + + (global_label "SWDIO" (shape input) (at 162.56 85.09 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 0061fdec-6f0b-4538-bfd5-012644fba5ff) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 154.3696 85.1694 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SIG_B" (shape input) (at 233.68 80.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0fdb3398-d22f-4d93-b0b7-de54d818dccf) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 233.6006 72.3639 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SIG_R" (shape input) (at 223.52 80.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1c14e848-3519-49c2-b543-eceadcca2929) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 223.4406 72.3639 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SIG_B" (shape input) (at 71.12 85.09 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4b32219a-745a-48c0-944a-3fd36c07200a) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 63.4739 85.1694 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SIG_G" (shape input) (at 228.6 80.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 609fe07b-3aa2-44d2-a60d-03096a4696a2) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 228.5206 72.3639 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SWCLK" (shape input) (at 96.52 100.33 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 62befd44-89cc-4bce-bb31-c587d7831e56) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 105.0732 100.2506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SIG_G" (shape input) (at 71.12 87.63 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7a81f37d-fabb-4616-aeee-59c5c3919653) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 63.4739 87.7094 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SWDIO" (shape input) (at 96.52 97.79 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 97c7760f-f42e-41b6-8bdb-a73bd137b33e) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 104.7104 97.7106 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SIG_R" (shape input) (at 71.12 80.01 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid de4ebb42-f3d6-4bc7-8bfe-9e15ef638317) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 63.4739 80.0894 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SWCLK" (shape input) (at 162.56 90.17 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid fde15592-ba81-47c7-8f20-ea05c28cb7b2) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 154.0068 90.2494 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + + (hierarchical_label "PWM_1" (shape bidirectional) (at 96.52 82.55 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 09dda284-01af-4411-a09c-bfffdeef708a) + ) + (hierarchical_label "~{RST}" (shape input) (at 68.58 69.85 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1159ed28-3687-4614-a557-5ef830c886e5) + ) + (hierarchical_label "INIT_{IN}" (shape input) (at 68.58 97.79 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1689d71f-b6a4-4b58-a5eb-9615eb9fd6b9) + ) + (hierarchical_label "PWM_3" (shape bidirectional) (at 96.52 74.93 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2063b78a-fe58-498b-9921-832c02ea4e38) + ) + (hierarchical_label "ADC_6" (shape bidirectional) (at 96.52 85.09 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2344b03c-6404-4d57-b3e8-6e1163ed1e9c) + ) + (hierarchical_label "INIT_{OUT}" (shape output) (at 68.58 100.33 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 27a7ac3c-07d9-4152-9a5f-5f3384e62a4c) + ) + (hierarchical_label "~{INT}" (shape output) (at 99.06 102.87 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 29146129-3ece-42eb-bffc-d78d1caeb58c) + ) + (hierarchical_label "PWM_2" (shape bidirectional) (at 96.52 72.39 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4a76d23e-199d-4b9a-a60f-6b8de70132fb) + ) + (hierarchical_label "ADC_7" (shape bidirectional) (at 96.52 87.63 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 60bb0aae-72d0-44ba-9b8d-80903b7e72ee) + ) + (hierarchical_label "LED_DATA" (shape output) (at 96.52 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7c22f457-40dd-498f-b4ba-0fadd46fc5a8) + ) + (hierarchical_label "MOSI" (shape input) (at 68.58 95.25 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8c83168a-54a5-4b17-ba8a-156a29424698) + ) + (hierarchical_label "PWM_4" (shape bidirectional) (at 96.52 77.47 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 92e557e3-4902-45ee-a9b2-8a934786e57b) + ) + (hierarchical_label "SCLK" (shape input) (at 68.58 90.17 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b9ffdd97-158d-408d-be74-99814a35f84c) + ) + (hierarchical_label "LED_CLOCK" (shape output) (at 96.52 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c970e750-19a6-45ec-9ff0-9e8cd601c49c) + ) + (hierarchical_label "MISO" (shape output) (at 68.58 92.71 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d87f4bcd-ee7b-4ad3-b8ca-2b54b159223c) + ) + + (symbol (lib_id "fiatlux:STM32G031G8Ux") (at 83.82 86.36 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 102280cb-52f1-4d00-a983-b7d0fff143e3) + (property "Reference" "U2" (id 0) (at 86.36 107.95 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32G031G8Ux" (id 1) (at 86.36 110.49 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm" (id 2) (at 107.95 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 83.82 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c94ab0e2-84cb-4c96-80e9-8e4f273aa1e5)) + (pin "10" (uuid f3003c4b-d611-4e59-be2f-34f2f746e84d)) + (pin "11" (uuid 5b26287e-8c6f-4f83-b78d-bfdb69c5cf0c)) + (pin "12" (uuid 8bf2d949-9b33-4353-9523-beaed60dca5a)) + (pin "13" (uuid be2067ef-12f0-49f3-89c6-5509fddb75ba)) + (pin "14" (uuid 452bd294-4b9b-4c39-a8b5-31c1813be1fc)) + (pin "15" (uuid 7fb53721-d789-4f76-b449-61c38631127b)) + (pin "16" (uuid aa793220-a2dc-4c64-84ae-791012abe53b)) + (pin "17" (uuid 1ade0701-0818-40ff-8757-3b68127af4b5)) + (pin "18" (uuid 45c9dd07-5ffa-4530-86ff-1bbd2d94cf15)) + (pin "19" (uuid c19f5323-de2b-49bb-b06c-c031fa0321fc)) + (pin "2" (uuid 6f5bcb5c-4eae-479d-992e-bacd81ae4c81)) + (pin "20" (uuid 79ca82f8-836a-4a2f-90a7-780358b24a03)) + (pin "21" (uuid ceed52a5-2da0-46c4-a258-73c5ba378efc)) + (pin "22" (uuid 7eeb281b-4720-4beb-a043-74cc4eb9da38)) + (pin "23" (uuid c723ba7d-d4d0-4705-b99d-3d18151a76d1)) + (pin "24" (uuid ed350130-7948-40df-a55d-1fa57ba48769)) + (pin "25" (uuid fe95201b-0f83-4aa9-be58-1b3d16fb4c8c)) + (pin "26" (uuid b7170f78-6c50-44fa-a8a0-be869440c2ca)) + (pin "27" (uuid cf9d8727-cc91-4306-9ed0-96b386145abc)) + (pin "28" (uuid 7eb7ddc1-a74b-47ec-8cfe-ff53aefbc3e9)) + (pin "3" (uuid 1fb7982b-73fc-4c96-b38e-84dea552b56c)) + (pin "4" (uuid 990f16fa-7d65-42e8-8690-88b417258ed1)) + (pin "5" (uuid 5d9fe3f5-e9d3-497d-a9b6-8a6fc32b3f68)) + (pin "6" (uuid a85387c7-fdbf-455f-86fc-2c35aeedbb8f)) + (pin "7" (uuid f5692120-6fa3-41e4-9bcd-8133e285aae4)) + (pin "8" (uuid d67c5f8f-2218-4598-8330-79d7331b69f8)) + (pin "9" (uuid e860eeea-3910-4fbb-b97f-26b9469ea150)) + ) + + (symbol (lib_id "Device:R") (at 233.68 88.9 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 21e76397-b06e-4e87-be57-622b34e6d8de) + (property "Reference" "R15" (id 0) (at 234.95 87.63 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 234.95 90.17 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 235.458 88.9 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 233.68 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 233.68 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eef147ba-06d9-4049-b77b-84c57331a306)) + (pin "2" (uuid e6a5f23f-80de-4743-abad-a7395f1da235)) + ) + + (symbol (lib_id "Device:R") (at 228.6 88.9 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2265d06c-5de3-42c2-8f12-2e8783f51da0) + (property "Reference" "R14" (id 0) (at 227.33 85.09 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 229.87 86.36 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 230.378 88.9 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 228.6 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 228.6 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4ada4039-432a-47cc-8aac-cc27ba2d9e35)) + (pin "2" (uuid 857bfc4f-25e7-4ec9-b6bc-c6d28c2d832b)) + ) + + (symbol (lib_id "power:+3.3V") (at 83.82 64.77 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3303274a-cba7-4090-b7c9-6ad357198313) + (property "Reference" "#PWR026" (id 0) (at 83.82 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 85.09 60.96 0)) + (property "Footprint" "" (id 2) (at 83.82 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 83.82 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eed54eb1-a8bf-4102-bc9d-15a54e65dad9)) + ) + + (symbol (lib_id "power:GND") (at 228.6 102.87 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5d83d3d8-3dcb-43b4-b37d-0bbe1e88cfac) + (property "Reference" "#PWR029" (id 0) (at 228.6 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 228.727 107.2642 0)) + (property "Footprint" "" (id 2) (at 228.6 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 228.6 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fd79ee06-b614-4dfe-b680-fb9669bcd922)) + ) + + (symbol (lib_id "Device:LED_RGB") (at 228.6 97.79 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6801e525-3830-4664-bb60-00a8c7a1c082) + (property "Reference" "D3" (id 0) (at 236.982 96.8815 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "LED_RGB" (id 1) (at 236.982 99.6566 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_RGB_5050-6" (id 2) (at 229.87 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 229.87 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 228.6 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid add07e3e-56f5-41f8-aea3-3313cd92199d)) + (pin "2" (uuid 352a8cb7-9a32-4af2-ba4c-61e122e925d4)) + (pin "3" (uuid 6af0f222-b385-46d7-9978-bd27bb44b71f)) + (pin "4" (uuid cbfef7d2-114b-4d20-ac01-66db58ce7b80)) + (pin "5" (uuid 243e019f-0c1e-4a16-8e97-b3d2c96595c0)) + (pin "6" (uuid 85ab8348-cfd8-47d4-9ea3-6831a3fe378b)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 167.64 90.17 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 761406f4-13fa-4c19-8252-e4370dda9ba0) + (property "Reference" "J11" (id 0) (at 168.3512 89.5096 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 168.91 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 167.64 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.64 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 167.64 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 57f0b3b8-50fe-4085-a1a6-1be235ede8e1)) + ) + + (symbol (lib_id "Device:R") (at 223.52 88.9 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9d74152e-7191-42ca-a6ac-12dbe4241544) + (property "Reference" "R13" (id 0) (at 218.44 87.63 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "51Ohm" (id 1) (at 214.63 90.17 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 225.298 88.9 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 223.52 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23197" (id 4) (at 223.52 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid be5c3da4-b3c3-472a-9f1b-174b4f0badf1)) + (pin "2" (uuid 6d4b55d9-f9a9-4794-82fd-0e0842979ff8)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 167.64 85.09 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a0b55039-1d75-4207-a887-4b9b89cd6a4f) + (property "Reference" "J10" (id 0) (at 168.3512 84.4296 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 168.91 86.36 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 167.64 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.64 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 167.64 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ee23359c-d76b-424b-800a-767e94b8be47)) + ) + + (symbol (lib_id "power:GND") (at 83.82 107.95 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid afedab57-ff9c-40ee-8aae-03af63886737) + (property "Reference" "#PWR027" (id 0) (at 83.82 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 83.947 112.3442 0)) + (property "Footprint" "" (id 2) (at 83.82 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 83.82 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 05413d2b-0a6b-40d3-9874-71855df63be2)) + ) + + (symbol (lib_id "power:GND") (at 223.52 102.87 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e431da71-e53a-4d43-9ffd-4e0057b90677) + (property "Reference" "#PWR028" (id 0) (at 223.52 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 223.647 107.2642 0)) + (property "Footprint" "" (id 2) (at 223.52 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 223.52 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 756dfe53-ddbc-4e8c-897c-a8189e0fb6b7)) + ) + + (symbol (lib_id "power:GND") (at 233.68 102.87 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid eff4aefb-bfa1-4abb-a50d-5d88bfa61f6a) + (property "Reference" "#PWR030" (id 0) (at 233.68 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 233.807 107.2642 0)) + (property "Footprint" "" (id 2) (at 233.68 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 233.68 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 156a2ddf-d7db-4733-97aa-1cc47156311a)) + ) +) diff --git a/pcb/stm32l011f.kicad_sch b/pcb/stm32l011f.kicad_sch new file mode 100644 index 0000000..7dc8c46 --- /dev/null +++ b/pcb/stm32l011f.kicad_sch @@ -0,0 +1,539 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ae0dea56-517e-40e6-be4c-6f0b40fda8ec) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x01_Female" (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" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x01_Female_1_1" + (polyline + (pts + (xy -1.27 0) + (xy -0.508 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "MCU_ST_STM32L0:STM32L011F4Ux" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -10.16 13.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32L011F4Ux" (id 1) (at 2.54 13.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (id 2) (at -10.16 -15.24 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00206508.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "ARM Cortex-M0+ STM32L0 STM32L0x1" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "ARM Cortex-M0+ MCU, 16KB flash, 2KB RAM, 32MHz, 1.65-3.6V, 16 GPIO, UFQFPN-20" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "ST*UFQFPN*3x3mm*P0.5mm*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "STM32L011F4Ux_0_1" + (rectangle (start -10.16 -15.24) (end 7.62 12.7) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "STM32L011F4Ux_1_1" + (pin bidirectional line (at -12.7 2.54 0) (length 2.54) + (name "PC14" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 -2.54 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -5.08 0) (length 2.54) + (name "PB1" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 -17.78 90) (length 2.54) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 15.24 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 -5.08 180) (length 2.54) + (name "PA9" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 -7.62 180) (length 2.54) + (name "PA10" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 -10.16 180) (length 2.54) + (name "PA13" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 -12.7 180) (length 2.54) + (name "PA14" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -7.62 0) (length 2.54) + (name "PB6" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -10.16 0) (length 2.54) + (name "PB7" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 0 0) (length 2.54) + (name "PC15" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -12.7 0) (length 2.54) + (name "PB9" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 10.16 0) (length 2.54) + (name "NRST" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 15.24 270) (length 2.54) + (name "VDDA" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 10.16 180) (length 2.54) + (name "PA0" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 7.62 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 5.08 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 2.54 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 10.16 0 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (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 119.38 68.58) (diameter 0) (color 0 0 0 0) + (uuid 5dd4efad-1f0f-48fd-a6a1-8702537474d8) + ) + + (no_connect (at 109.22 83.82) (uuid 14fbefb8-c2d6-4018-995e-25981998a2be)) + (no_connect (at 109.22 99.06) (uuid 45631167-1974-495e-bfcb-301a78a8f570)) + (no_connect (at 109.22 86.36) (uuid 475a4648-1ead-43ef-aa89-87ecf6521726)) + (no_connect (at 132.08 91.44) (uuid a9ab7665-eaa7-44a9-a7c4-254e9e4bbb71)) + + (wire (pts (xy 121.92 68.58) (xy 121.92 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e0ba8d8-da50-450d-bf34-1b8fa12d669e) + ) + (wire (pts (xy 119.38 68.58) (xy 121.92 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95d90c4f-99e3-4fd2-91c7-d8ee9a259945) + ) + (wire (pts (xy 119.38 68.58) (xy 119.38 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc4b2c22-f62f-4901-9fef-44e40166f7f7) + ) + + (global_label "SWCLK" (shape input) (at 168.91 88.9 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2a8440ac-a4bd-4dfd-aeef-c786592fe58f) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 160.3568 88.9794 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SWDIO" (shape input) (at 132.08 96.52 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 89ba2ed1-6a09-4950-817d-ea7b0ee1d136) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 140.2704 96.4406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "SWDIO" (shape input) (at 168.91 83.82 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid bd6c0342-3388-4d34-b238-21fce9ff853c) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 160.7196 83.8994 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "SWCLK" (shape input) (at 132.08 99.06 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cae6ba1e-98f4-457a-8ae8-dc7866b116dc) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 140.6332 98.9806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (hierarchical_label "PWM_1" (shape bidirectional) (at 132.08 76.2 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 09dda284-01af-4411-a09c-bfffdeef708a) + ) + (hierarchical_label "~{RST}" (shape input) (at 109.22 76.2 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1159ed28-3687-4614-a557-5ef830c886e5) + ) + (hierarchical_label "INIT_{IN}" (shape input) (at 109.22 96.52 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1689d71f-b6a4-4b58-a5eb-9615eb9fd6b9) + ) + (hierarchical_label "PWM_3" (shape bidirectional) (at 132.08 93.98 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2063b78a-fe58-498b-9921-832c02ea4e38) + ) + (hierarchical_label "INIT_{OUT}" (shape output) (at 109.22 93.98 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 27a7ac3c-07d9-4152-9a5f-5f3384e62a4c) + ) + (hierarchical_label "~{INT}" (shape output) (at 132.08 81.28 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 29146129-3ece-42eb-bffc-d78d1caeb58c) + ) + (hierarchical_label "PWM_2" (shape bidirectional) (at 132.08 78.74 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4a76d23e-199d-4b9a-a60f-6b8de70132fb) + ) + (hierarchical_label "MOSI" (shape input) (at 132.08 88.9 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8c83168a-54a5-4b17-ba8a-156a29424698) + ) + (hierarchical_label "PWM_4" (shape bidirectional) (at 109.22 91.44 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 92e557e3-4902-45ee-a9b2-8a934786e57b) + ) + (hierarchical_label "SCLK" (shape input) (at 132.08 83.82 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b9ffdd97-158d-408d-be74-99814a35f84c) + ) + (hierarchical_label "MISO" (shape output) (at 132.08 86.36 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d87f4bcd-ee7b-4ad3-b8ca-2b54b159223c) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 173.99 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 64e0ac62-fdcf-46b8-a20f-7dceda5c04e8) + (property "Reference" "J15" (id 0) (at 174.7012 88.2396 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 175.26 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 173.99 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 173.99 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 173.99 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 57f0b3b8-50fe-4085-a1a6-1be235ede8e1)) + ) + + (symbol (lib_id "power:+3.3V") (at 119.38 68.58 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a345533b-d043-4357-be27-c8da228383fd) + (property "Reference" "#PWR036" (id 0) (at 119.38 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 120.65 64.77 0)) + (property "Footprint" "" (id 2) (at 119.38 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 119.38 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1334f1e4-c0f7-4b88-9eaf-57b54125dfe3)) + ) + + (symbol (lib_id "power:GND") (at 119.38 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a5348844-784d-4c6d-ade0-d4e7965e1b92) + (property "Reference" "#PWR037" (id 0) (at 119.38 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 119.507 108.5342 0)) + (property "Footprint" "" (id 2) (at 119.38 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 119.38 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e3cfddf6-28eb-4026-a87e-af8c8d4ff4ed)) + ) + + (symbol (lib_id "MCU_ST_STM32L0:STM32L011F4Ux") (at 121.92 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d407cf58-389b-4851-92ff-397556db00b8) + (property "Reference" "U4" (id 0) (at 121.3994 104.14 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "STM32L011F4Ux" (id 1) (at 121.3994 106.68 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm" (id 2) (at 111.76 101.6 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00206508.pdf" (id 3) (at 121.92 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C329283" (id 4) (at 121.92 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 82febc0a-a6fd-4826-aefd-60655b738b46)) + (pin "10" (uuid bee717ac-5b94-4b69-b609-f7f1cfd1f5a6)) + (pin "11" (uuid c9124730-e704-440e-b987-2b481d5f6fc8)) + (pin "12" (uuid 40e63566-6e33-4eaa-8037-4ab135469ac3)) + (pin "13" (uuid d6c0f0c1-966c-417d-b4b6-648ce0e1a718)) + (pin "14" (uuid e31e9465-327b-48d6-8357-2b181e5093bd)) + (pin "15" (uuid 094bd371-23f1-4ed9-89ab-ee584929477e)) + (pin "16" (uuid c460ae53-c1d6-4617-a2d0-358dd7204aa7)) + (pin "17" (uuid 78c041f7-933d-4b42-953b-4c7f296ee245)) + (pin "18" (uuid 8c1055a7-bbf8-41f8-9dab-4b107b6a0464)) + (pin "19" (uuid 834e203b-e3a6-499e-8412-f95849ce3122)) + (pin "2" (uuid 077a5cc4-b998-46e8-bb2e-fa427a550906)) + (pin "20" (uuid 1ce59efa-9109-4750-8d89-7e56963abe75)) + (pin "3" (uuid 3e1679d4-c805-4ece-ab82-36ee4e32fc51)) + (pin "4" (uuid 0d1248a4-31ca-4012-b6dd-b2280e5fa38f)) + (pin "5" (uuid 078eb106-eb52-468a-b5fe-edcdee575e9d)) + (pin "6" (uuid 0eab2365-52d2-4818-8763-168d3836b511)) + (pin "7" (uuid 251be416-a9c6-4543-a1fd-7894d84236a9)) + (pin "8" (uuid cffde4be-b4ae-40b6-8aaf-810e7f1d5007)) + (pin "9" (uuid 7656c665-c318-419e-ae02-0f31b8a40925)) + ) + + (symbol (lib_id "Connector:Conn_01x01_Female") (at 173.99 83.82 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f37d1b33-7634-4681-9508-814ad5a6a51e) + (property "Reference" "J14" (id 0) (at 174.7012 83.1596 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Testpoint_INIT" (id 1) (at 175.26 85.09 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (id 2) (at 173.99 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 173.99 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "-" (id 4) (at 173.99 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ee23359c-d76b-424b-800a-767e94b8be47)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/afedab57-ff9c-40ee-8aae-03af63886737" + (reference "#PWR0101") (unit 1) (value "GND") (footprint "") + ) + (path "/3303274a-cba7-4090-b7c9-6ad357198313" + (reference "#PWR0102") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/e431da71-e53a-4d43-9ffd-4e0057b90677" + (reference "#PWR0103") (unit 1) (value "GND") (footprint "") + ) + (path "/5d83d3d8-3dcb-43b4-b37d-0bbe1e88cfac" + (reference "#PWR0104") (unit 1) (value "GND") (footprint "") + ) + (path "/eff4aefb-bfa1-4abb-a50d-5d88bfa61f6a" + (reference "#PWR0105") (unit 1) (value "GND") (footprint "") + ) + (path "/3a4ff7a9-3fbf-47f0-ae7c-6841f64dde7a" + (reference "#PWR?") (unit 1) (value "GND") (footprint "") + ) + (path "/4fedae36-48e1-4362-82c6-94f07c093a54" + (reference "#PWR?") (unit 1) (value "GND") (footprint "") + ) + (path "/a345533b-d043-4357-be27-c8da228383fd" + (reference "#PWR?") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/a5348844-784d-4c6d-ade0-d4e7965e1b92" + (reference "#PWR?") (unit 1) (value "GND") (footprint "") + ) + (path "/c710fe33-5f8c-4db2-991d-befd81763f81" + (reference "#PWR?") (unit 1) (value "GND") (footprint "") + ) + (path "/6801e525-3830-4664-bb60-00a8c7a1c082" + (reference "D1") (unit 1) (value "LED_RGB") (footprint "LED_SMD:LED_RGB_5050-6") + ) + (path "/39003a7d-3114-4a25-9ab8-036706d3ebe9" + (reference "D?") (unit 1) (value "LED_RGB") (footprint "LED_SMD:LED_RGB_5050-6") + ) + (path "/a0b55039-1d75-4207-a887-4b9b89cd6a4f" + (reference "J1") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/761406f4-13fa-4c19-8252-e4370dda9ba0" + (reference "J2") (unit 1) (value "Testpoint_INIT") (footprint "TestPoint:TestPoint_Pad_D2.0mm") + ) + (path "/5bdea446-05f2-4669-8d2f-2fc67aa53b39" + (reference "J?") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/9d74152e-7191-42ca-a6ac-12dbe4241544" + (reference "R1") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/2265d06c-5de3-42c2-8f12-2e8783f51da0" + (reference "R2") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/21e76397-b06e-4e87-be57-622b34e6d8de" + (reference "R3") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/3de1ed64-aec7-4f03-b908-b69e125e051f" + (reference "R?") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/8cb290d4-df6d-4202-9b43-35a5b0fb6012" + (reference "R?") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/e1157838-b6cd-42d9-b2c5-68a1f54a091c" + (reference "R?") (unit 1) (value "51Ohm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/102280cb-52f1-4d00-a983-b7d0fff143e3" + (reference "U1") (unit 1) (value "STM32G031G8Ux") (footprint "Package_DFN_QFN:QFN-28_4x4mm_P0.5mm") + ) + (path "/d407cf58-389b-4851-92ff-397556db00b8" + (reference "U?") (unit 1) (value "STM32L011F4Ux") (footprint "Package_DFN_QFN:ST_UFQFPN-20_3x3mm_P0.5mm") + ) + ) +) diff --git a/pcb/sym-lib-table b/pcb/sym-lib-table new file mode 100644 index 0000000..25838b3 --- /dev/null +++ b/pcb/sym-lib-table @@ -0,0 +1,3 @@ +(sym_lib_table + (lib (name "fiatlux")(type "KiCad")(uri "${KIPRJMOD}/fiatlux.kicad_sym")(options "")(descr "")) +) diff --git a/pcb/usb_prog.kicad_sch b/pcb/usb_prog.kicad_sch new file mode 100644 index 0000000..d00eca1 --- /dev/null +++ b/pcb/usb_prog.kicad_sch @@ -0,0 +1,1260 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8f237dcf-48bd-49aa-9e74-a0d3645fff40) + + (paper "A4") + + (lib_symbols + (symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -5.08 11.43 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "USB_B_Micro" (id 1) (at -5.08 8.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 3.81 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector USB micro" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "USB Micro Type B connector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "USB*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "USB_B_Micro_0_1" + (rectangle (start -5.08 -7.62) (end 5.08 7.62) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (circle (center -3.81 2.159) (radius 0.635) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center -0.635 3.429) (radius 0.381) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.127 -7.62) (end 0.127 -6.858) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.905 2.159) + (xy 0.635 2.159) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.175 2.159) + (xy -2.54 2.159) + (xy -1.27 3.429) + (xy -0.635 3.429) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 2.159) + (xy -1.905 2.159) + (xy -1.27 0.889) + (xy 0 0.889) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 2.794) + (xy 0.635 1.524) + (xy 1.905 2.159) + (xy 0.635 2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.318 5.588) + (xy -1.778 5.588) + (xy -2.032 4.826) + (xy -4.064 4.826) + (xy -4.318 5.588) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -4.699 5.842) + (xy -4.699 5.588) + (xy -4.445 4.826) + (xy -4.445 4.572) + (xy -1.651 4.572) + (xy -1.651 4.826) + (xy -1.397 5.588) + (xy -1.397 5.842) + (xy -4.699 5.842) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.254 1.27) (end -0.508 0.508) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.08 -5.207) (end 4.318 -4.953) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -2.667) (end 4.318 -2.413) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 -0.127) (end 4.318 0.127) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 5.08 4.953) (end 4.318 5.207) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "USB_B_Micro_1_1" + (pin power_out line (at 7.62 5.08 180) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 -2.54 180) (length 2.54) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 7.62 0 180) (length 2.54) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 2.54) + (name "ID" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -10.16 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -10.16 90) (length 2.54) + (name "Shield" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at -1.27 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "LED_Small" (id 1) (at -4.445 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Light emitting diode, small symbol" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_Small_0_1" + (polyline + (pts + (xy -0.762 -1.016) + (xy -0.762 1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy -0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.016) + (xy -0.762 0) + (xy 0.762 1.016) + (xy 0.762 -1.016) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0.762) + (xy -0.508 1.27) + (xy -0.254 1.27) + (xy -0.508 1.27) + (xy -0.508 1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.508 1.27) + (xy 0 1.778) + (xy 0.254 1.778) + (xy 0 1.778) + (xy 0 1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LED_Small_1_1" + (pin passive line (at -2.54 0 0) (length 1.778) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 0 180) (length 1.778) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Q_NPN_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Q_NPN_BEC" (id 1) (at 5.08 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 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" "transistor NPN" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "NPN transistor, base/emitter/collector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Q_NPN_BEC_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Q_NPN_BEC_1_1" + (pin input line (at -5.08 0 0) (length 5.715) + (name "B" (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 "E" (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 "C" (effects (font (size 1.27 1.27)))) + (number "3" (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 "Interface_USB:CP2102N-A01-GQFN28" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -7.62 31.75 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Interface_USB_CP2102N-A01-GQFN28" (id 1) (at 26.67 31.75 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (id 2) (at 11.43 -30.48 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "" (id 3) (at 1.27 -19.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "QFN*1EP*5x5mm*P0.5mm*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CP2102N-A01-GQFN28_0_1" + (rectangle (start -10.16 30.48) (end 10.16 -30.48) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "CP2102N-A01-GQFN28_1_1" + (pin input line (at 12.7 12.7 180) (length 2.54) + (name "~{DCD}" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin no_connect line (at -10.16 -10.16 0) (length 2.54) hide + (name "NC" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 5.08 180) (length 2.54) + (name "~{SUSPENDb}" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 2.54 180) (length 2.54) + (name "SUSPEND" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -2.54 180) (length 2.54) + (name "CHREN" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -7.62 180) (length 2.54) + (name "CHR1" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -5.08 180) (length 2.54) + (name "CHR0" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -20.32 180) (length 2.54) + (name "~{WAKEUP}/GPIO.3" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -17.78 180) (length 2.54) + (name "RS485/GPIO.2" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -15.24 180) (length 2.54) + (name "~{RXT}/GPIO.1" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -12.7 180) (length 2.54) + (name "~{TXT}/GPIO.0" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 10.16 180) (length 2.54) + (name "~{RI}/CLK" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -27.94 180) (length 2.54) + (name "GPIO.6" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -25.4 180) (length 2.54) + (name "GPIO.5" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -22.86 180) (length 2.54) + (name "GPIO.4" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 27.94 180) (length 2.54) + (name "~{CTS}" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 25.4 180) (length 2.54) + (name "~{RTS}" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 22.86 180) (length 2.54) + (name "RXD" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 20.32 180) (length 2.54) + (name "TXD" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 17.78 180) (length 2.54) + (name "~{DSR}" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 15.24 180) (length 2.54) + (name "~{DTR}" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -33.02 90) (length 2.54) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -33.02 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 15.24 0) (length 2.54) + (name "D+" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 12.7 0) (length 2.54) + (name "D-" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 33.02 270) (length 2.54) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 33.02 270) (length 2.54) + (name "REGIN" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 17.78 0) (length 2.54) + (name "VBUS" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 22.86 0) (length 2.54) + (name "~{RSTb}" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (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 99.06 118.11) (diameter 0) (color 0 0 0 0) + (uuid 7cac7524-a6e4-4efb-9646-b914705c4f23) + ) + (junction (at 149.86 58.42) (diameter 0) (color 0 0 0 0) + (uuid aff2e155-a33f-4e7c-b522-fe3dbe045bf8) + ) + (junction (at 228.6 91.44) (diameter 0) (color 0 0 0 0) + (uuid b65f37a7-886e-44ec-bfde-12a58c4fa22f) + ) + (junction (at 100.33 139.7) (diameter 0) (color 0 0 0 0) + (uuid e778357c-3a9d-428e-84b1-b6d2b2574536) + ) + + (no_connect (at 191.77 83.82) (uuid 03e660d7-12b0-4e18-a348-216f8ab2f409)) + (no_connect (at 191.77 104.14) (uuid 0717ae2e-f636-4d15-ab95-945761ba1597)) + (no_connect (at 200.66 73.66) (uuid 0c081c73-df9b-46ba-906a-902d77c9d71f)) + (no_connect (at 191.77 106.68) (uuid 6418979d-bbf4-4eb2-8672-f0078cf131be)) + (no_connect (at 191.77 101.6) (uuid 835f30a1-e432-4655-8bf6-1722e3271175)) + (no_connect (at 200.66 50.8) (uuid 8d9ffe23-22c1-418d-943d-66e7703bef94)) + (no_connect (at 191.77 86.36) (uuid 94c337f3-e87d-48f6-8b18-c9559442666b)) + (no_connect (at 200.66 66.04) (uuid a1ccf9af-edf4-4337-a8b6-06e193532405)) + (no_connect (at 154.94 68.58) (uuid aae89730-77b8-4c0b-b2a2-3dd36574aea6)) + (no_connect (at 200.66 60.96) (uuid af942166-0648-422a-badb-ce296db95437)) + (no_connect (at 200.66 68.58) (uuid b11ba233-396f-46ba-aba6-9aaa5c52b7fb)) + (no_connect (at 191.77 99.06) (uuid b25fee18-1945-41f3-ac14-353d043e60f0)) + (no_connect (at 191.77 96.52) (uuid b30465e7-7343-48ca-8e9a-25477f4fd0a7)) + (no_connect (at 166.37 55.88) (uuid e5990cb7-e169-4fb3-b21f-eeca7a01f734)) + (no_connect (at 191.77 81.28) (uuid f4236d07-6452-4657-833a-70da3552c25e)) + (no_connect (at 191.77 76.2) (uuid fb8f551d-7f70-405a-82e0-7df22bec20bb)) + + (wire (pts (xy 82.55 139.7) (xy 87.63 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 086c6a5d-7d8c-4914-bee5-8125d04163cd) + ) + (wire (pts (xy 74.93 130.81) (xy 99.06 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09021aa9-652f-4644-aa03-647ffd90a863) + ) + (wire (pts (xy 149.86 58.42) (xy 149.86 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e7576c4-e2a9-411f-8aeb-9b1cfa344343) + ) + (wire (pts (xy 74.93 147.32) (xy 69.85 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21d17b75-bbfe-46a9-9d6f-e25b5461bc8c) + ) + (wire (pts (xy 218.44 58.42) (xy 212.09 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 272c8762-0e33-44c7-b250-477ff12aa416) + ) + (wire (pts (xy 100.33 128.27) (xy 100.33 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33084782-67f8-443e-b9b9-0542d9029afb) + ) + (wire (pts (xy 74.93 134.62) (xy 74.93 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41b7b04b-171b-4011-b015-f855dd8b24f1) + ) + (wire (pts (xy 149.86 60.96) (xy 166.37 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b9cc703-40fb-4e63-ad89-a6b0345e6426) + ) + (wire (pts (xy 74.93 110.49) (xy 69.85 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ba2eb6b-eb41-4049-89c8-a7712e312e18) + ) + (wire (pts (xy 191.77 60.96) (xy 200.66 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53170862-58f1-4eca-bfa7-7806878e98b0) + ) + (wire (pts (xy 144.78 58.42) (xy 149.86 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c12274-d9bf-46b3-9595-631e2137b5ae) + ) + (wire (pts (xy 191.77 93.98) (xy 205.74 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59927993-9b3b-4e52-b394-02cea512ce0c) + ) + (wire (pts (xy 166.37 66.04) (xy 144.78 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d0f03ba-f7f1-4805-b21e-7eaef833ceaa) + ) + (wire (pts (xy 204.47 58.42) (xy 191.77 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60120afd-fbf2-4712-b8fc-c9cda6d44576) + ) + (wire (pts (xy 191.77 66.04) (xy 200.66 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e52e95f-4d7e-45a2-a97c-4b9a940a7523) + ) + (wire (pts (xy 87.63 118.11) (xy 82.55 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97601688-be2a-4369-bd0b-686046b8fef4) + ) + (wire (pts (xy 74.93 144.78) (xy 74.93 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b2e48a6-0935-40db-8ce1-a73e9acbb0c6) + ) + (wire (pts (xy 228.6 91.44) (xy 228.6 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f2525ce-68cc-4c93-81d7-239e44241657) + ) + (wire (pts (xy 149.86 58.42) (xy 149.86 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a00b6da4-8c04-4705-b6e1-dac8dff34d1e) + ) + (wire (pts (xy 191.77 91.44) (xy 200.66 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9cad607-f030-46d8-aed3-8ce36596ebc9) + ) + (wire (pts (xy 74.93 123.19) (xy 74.93 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af4580c2-c111-4df8-98c2-f84bd7a31dce) + ) + (wire (pts (xy 191.77 50.8) (xy 200.66 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3e231f0-c84a-4977-919e-1f53ce4776ff) + ) + (wire (pts (xy 205.74 91.44) (xy 210.82 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bad48352-8ea2-4258-a190-f0e56db2c8cb) + ) + (wire (pts (xy 99.06 130.81) (xy 99.06 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd046fab-dd30-4f85-b319-4e32cf11ffa8) + ) + (wire (pts (xy 226.06 93.98) (xy 228.6 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf3262d6-4075-418a-a4ee-c4da61c9e6c2) + ) + (wire (pts (xy 99.06 118.11) (xy 95.25 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0766834-34e8-4c0f-8ec9-5c78bd3056b6) + ) + (wire (pts (xy 95.25 139.7) (xy 100.33 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c24ac258-e2a6-4334-bdf5-b678134e422a) + ) + (wire (pts (xy 191.77 68.58) (xy 200.66 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2a66610-9793-49ed-ac06-6e03e5458121) + ) + (wire (pts (xy 105.41 139.7) (xy 100.33 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c700a2a5-8017-4ff0-9f5f-7081437fa0fe) + ) + (wire (pts (xy 191.77 73.66) (xy 200.66 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc53dc4c-9b83-4c43-ae52-5d16f0384ce8) + ) + (wire (pts (xy 144.78 68.58) (xy 154.94 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7359ecb-fef8-4005-8a4f-c32a17ebc1c8) + ) + (wire (pts (xy 105.41 118.11) (xy 99.06 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da2e1440-2a60-4386-8ee6-9128e3a5a2ae) + ) + (wire (pts (xy 74.93 128.27) (xy 100.33 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d8db91-36f6-49e6-af16-987911f06ca3) + ) + (wire (pts (xy 218.44 91.44) (xy 228.6 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb9d5ffb-254d-4748-b6a0-b173739849a3) + ) + (wire (pts (xy 166.37 63.5) (xy 144.78 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0dbae16-d469-4de7-a01d-3ae93423ca74) + ) + (wire (pts (xy 228.6 93.98) (xy 228.6 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5c431e4-8292-4f6b-bd73-3a7a6e7cb309) + ) + (wire (pts (xy 74.93 113.03) (xy 74.93 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f643ce45-5519-421e-ac8a-e10d170b5940) + ) + (wire (pts (xy 210.82 93.98) (xy 218.44 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f699b040-9e44-4849-9472-106013b09ba9) + ) + + (label "RXLED" (at 193.04 93.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7d15c923-72b3-4597-a628-86f91ce5f046) + ) + (label "TXLED" (at 193.04 91.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d3d0fabc-fed8-40cd-ab88-52b8f92cb0d6) + ) + + (global_label "DTR" (shape input) (at 191.77 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0dbbcd6f-8cba-4ced-9d54-3239d8118d28) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 40.64 -63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "nRST" (shape input) (at 69.85 110.49 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 345ab3ef-d7d7-4368-a65e-7a70ecf096a4) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 39.37 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RTS" (shape input) (at 105.41 139.7 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5e3fbdd5-7169-4e8e-9a8d-2a72ed486a42) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 39.37 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RXD0" (shape input) (at 218.44 58.42 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 635e86ae-cc09-4b2b-86a7-8e62e2e97c35) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 40.64 -63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "TXD0" (shape input) (at 191.77 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9129f03e-9a06-4386-83c4-44168f277cc8) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 40.64 -63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "RTS" (shape input) (at 191.77 53.34 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ae8d8369-cfe8-40f8-a883-667ed24ced93) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 40.64 -63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "DTR" (shape input) (at 105.41 118.11 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b3355c0f-5c8b-4c04-bfda-b5ce2e94ec66) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 39.37 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + (global_label "FLSH" (shape input) (at 69.85 147.32 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid cd61bc3e-5a72-4016-bbbe-5d49514fc052) + (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 39.37 -38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + ) + + (symbol (lib_id "Device:R") (at 208.28 58.42 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 01f735fb-3377-414d-9c60-98273fa7ca07) + (property "Reference" "R24" (id 0) (at 208.28 53.1622 90)) + (property "Value" "470Ohm" (id 1) (at 208.28 55.4736 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 208.28 56.642 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 208.28 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C23179" (id 4) (at 208.28 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fb687e52-1a26-405b-ac5b-6c8831023c0d)) + (pin "2" (uuid 399b688c-1b57-4d85-885a-09c6159939d1)) + ) + + (symbol (lib_id "Device:Q_NPN_BEC") (at 77.47 118.11 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0cf62c31-0ac3-4d05-bf89-62074fa17567) + (property "Reference" "Q1" (id 0) (at 72.6186 116.9416 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "S8050" (id 1) (at 72.6186 119.253 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 72.39 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.unisonic.com.tw/datasheet/S8050.pdf" (id 3) (at 77.47 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2146" (id 4) (at 77.47 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3e58d776-b703-4def-9d05-26c639c52ddd)) + (pin "2" (uuid 7ed524d7-2a53-40f4-8553-09df659ef59a)) + (pin "3" (uuid a0009a77-e5a7-4980-9fe9-6277dbb61e9c)) + ) + + (symbol (lib_id "power:GND") (at 134.62 73.66 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 173f7bbd-3792-4d87-b12f-1933aa5a66bc) + (property "Reference" "#PWR068" (id 0) (at 134.62 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 134.747 78.0542 0)) + (property "Footprint" "" (id 2) (at 134.62 73.66 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 134.62 73.66 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a0a0e46f-7238-4aa9-89a9-be048a6a7c0f)) + ) + + (symbol (lib_id "Device:Q_NPN_BEC") (at 77.47 139.7 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1803c314-b0ab-4b15-b1b3-612552fa299c) + (property "Reference" "Q2" (id 0) (at 72.6186 138.5316 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "S8050" (id 1) (at 72.6186 140.843 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 72.39 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.unisonic.com.tw/datasheet/S8050.pdf" (id 3) (at 77.47 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2146" (id 4) (at 77.47 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8ec84536-e8cb-4fc4-8dfa-015909c99eb6)) + (pin "2" (uuid 606dff5f-4813-49ff-979d-5890ae43cd47)) + (pin "3" (uuid 686f4eda-1366-4855-9b0a-4a2f6221025b)) + ) + + (symbol (lib_id "Device:R") (at 214.63 91.44 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 19c9ccc0-cb8f-450c-a626-03f7bcc00cde) + (property "Reference" "R25" (id 0) (at 215.7984 93.218 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "220Ohm" (id 1) (at 213.487 93.218 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 214.63 93.218 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 214.63 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21189" (id 4) (at 214.63 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6eb18a5f-732c-40fc-972e-a645d4edfb81)) + (pin "2" (uuid cfa4e9c7-6685-4d61-9ce4-3ec48227ba14)) + ) + + (symbol (lib_id "Device:R") (at 222.25 93.98 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1d61f091-e74c-4ed6-9549-b886a70f8ed3) + (property "Reference" "R26" (id 0) (at 223.4184 95.758 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "220Ohm" (id 1) (at 221.107 95.758 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 222.25 95.758 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 222.25 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C21189" (id 4) (at 222.25 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ef65d8e5-3c74-4b69-b206-97d38c233e2e)) + (pin "2" (uuid 879beab8-a9e1-42dd-b666-b9447efe5122)) + ) + + (symbol (lib_id "power:+3.3V") (at 179.07 45.72 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1eb5a440-ef2d-4569-a646-b3059252bd80) + (property "Reference" "#PWR072" (id 0) (at 179.07 49.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 180.34 41.91 0)) + (property "Footprint" "" (id 2) (at 179.07 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 179.07 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d758ddcb-3dcb-4e2e-839f-f83075f873ef)) + ) + + (symbol (lib_id "power:+3.3V") (at 176.53 45.72 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3400d53f-63d8-48c2-b32e-9f1271b6e4fe) + (property "Reference" "#PWR071" (id 0) (at 176.53 49.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 173.99 41.91 0)) + (property "Footprint" "" (id 2) (at 176.53 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 176.53 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6fc9dded-bbab-416e-9d0c-88c64343f17c)) + ) + + (symbol (lib_id "Connector:USB_B_Micro") (at 137.16 63.5 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 34512155-0a28-4ad6-8bb7-7bf2306ecbaf) + (property "Reference" "J22" (id 0) (at 138.6078 51.6382 0)) + (property "Value" "USB_B_Micro" (id 1) (at 138.6078 53.9496 0)) + (property "Footprint" "stock:micro_usb" (id 2) (at 140.97 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 140.97 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C40943" (id 4) (at 137.16 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 84a75c58-5be1-42b6-b4fb-eab161250d25)) + (pin "2" (uuid def4d576-ebc6-4483-a83b-a28bc3de37dd)) + (pin "3" (uuid 45d770e8-ca64-468f-a66b-dc2ee79fd4a8)) + (pin "4" (uuid 458750d2-0925-4d97-ab1d-8d4cbac4e406)) + (pin "5" (uuid bfa9afda-d43d-4399-9076-dbf758323c40)) + (pin "6" (uuid e117065c-b03a-4af7-8d13-add947609dde)) + ) + + (symbol (lib_id "Interface_USB:CP2102N-A01-GQFN28") (at 179.07 78.74 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 37b43181-8204-44f6-9b7f-fa5d4dc75e9b) + (property "Reference" "U6" (id 0) (at 182.88 110.49 0)) + (property "Value" "CP2102-GMR" (id 1) (at 190.5 46.99 0)) + (property "Footprint" "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm" (id 2) (at 190.5 109.22 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf" (id 3) (at 180.34 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C6568" (id 4) (at 179.07 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 49616ba1-e7d2-412f-8c1a-d9de346452f0)) + (pin "10" (uuid ec69a4b3-fd6c-456d-a7cc-4fb17a8d846d)) + (pin "11" (uuid e043b340-1c87-49b8-b1c5-312cf77a5d7c)) + (pin "12" (uuid 0663b879-19c4-4dd1-8d71-74e0dc7e2df9)) + (pin "13" (uuid 6d6b9be4-ff01-400b-abd1-f496ce1261db)) + (pin "14" (uuid a90d24a1-4f47-4cfd-9fa8-5b45d3e20835)) + (pin "15" (uuid b4693501-758d-4a2c-84e7-529bd5984045)) + (pin "16" (uuid 9ac8c4a8-9fec-4be8-a8a4-c5e3eacac80e)) + (pin "17" (uuid 6db3454a-7de3-49f3-85fa-54c06e123388)) + (pin "18" (uuid 2fca9d01-db93-4819-a67d-53f50b99d9f7)) + (pin "19" (uuid 3bd480fd-a385-400a-9c26-5c292963fadc)) + (pin "2" (uuid e7a2af31-c482-452d-a9fa-dc2223dfa39e)) + (pin "20" (uuid 41a0eb73-4a48-4fc1-b2b8-f1c4f2f64bcd)) + (pin "21" (uuid 3349fee8-d14d-40a2-a413-7be5c4d1b3d6)) + (pin "22" (uuid 98a897e2-4aaa-4911-86fa-301f4374c199)) + (pin "23" (uuid 3476f89a-4eee-4505-a074-b942a0365b29)) + (pin "24" (uuid f2de9ab5-cc16-4a30-ac91-e50b9545c2a5)) + (pin "25" (uuid 53125cc2-3382-4709-9f0b-5890dab26604)) + (pin "26" (uuid 990932f0-1dd0-46e9-99fd-37dc9ed3c710)) + (pin "27" (uuid 5bfd93a8-f684-45e0-853c-ac38ed889659)) + (pin "28" (uuid 436a9033-6621-46cf-baa2-7d3e986a58a8)) + (pin "29" (uuid 05345a7d-458d-49c9-bcd7-1eb4ab1bd983)) + (pin "3" (uuid 19601779-a472-40e9-a71d-cf0a53edd476)) + (pin "4" (uuid ac3e4c5e-fcbc-475d-ad41-26df17e9e3b0)) + (pin "5" (uuid ff7893b8-007d-485d-b201-dc645ee7e0d2)) + (pin "6" (uuid 1e8a0d61-9d2e-4fe2-be27-0948d708041b)) + (pin "7" (uuid d726b812-4ac4-4e82-aedd-b4d7363f8ae9)) + (pin "8" (uuid 5ff1f3fb-81e2-48ea-8442-4f3550bcb5bb)) + (pin "9" (uuid 47bca611-71f9-4c98-b91c-c36fb1db6f85)) + ) + + (symbol (lib_id "Device:LED_Small") (at 203.2 91.44 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4493a54a-4171-4ae0-92d3-5d61270df441) + (property "Reference" "D10" (id 0) (at 204.3684 93.218 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 202.057 93.218 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 203.2 91.44 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 203.2 91.44 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 203.2 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 71cbbf39-696e-4de2-8706-dff1a5d523cc)) + (pin "2" (uuid 1c2f6e48-ea77-4005-a427-5d73c031dcbc)) + ) + + (symbol (lib_id "power:GND") (at 179.07 111.76 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5c7fa821-1767-4ef6-af7a-2fd7c754bcea) + (property "Reference" "#PWR073" (id 0) (at 179.07 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 179.197 116.1542 0)) + (property "Footprint" "" (id 2) (at 179.07 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 179.07 111.76 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8d573a79-9d05-4cf8-8f15-0a62059749f5)) + ) + + (symbol (lib_id "power:+5V") (at 149.86 55.88 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5f2fab8e-6673-4f5b-8609-cad8cbcb6551) + (property "Reference" "#PWR070" (id 0) (at 149.86 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 150.241 51.4858 0)) + (property "Footprint" "" (id 2) (at 149.86 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 149.86 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 34ef6445-f21a-47b2-9989-04e570aa8fe0)) + ) + + (symbol (lib_id "power:+3.3V") (at 228.6 88.9 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 67a4af1b-84d8-4627-813f-ec85fe3ec3d9) + (property "Reference" "#PWR074" (id 0) (at 228.6 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 229.87 85.09 0)) + (property "Footprint" "" (id 2) (at 228.6 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 228.6 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f5e2a621-0cc8-4e6d-80d4-3c0e40f12ba3)) + ) + + (symbol (lib_id "power:GND") (at 137.16 73.66 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7e435736-0375-4635-95c4-3c464a0cc8d8) + (property "Reference" "#PWR069" (id 0) (at 137.16 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 137.287 78.0542 0)) + (property "Footprint" "" (id 2) (at 137.16 73.66 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 137.16 73.66 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 11eaf3a9-2486-46f1-9399-302ef4fb01cc)) + ) + + (symbol (lib_id "Device:R") (at 91.44 118.11 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 80a59cad-3314-4ec4-9a84-35d9cfde0bbe) + (property "Reference" "R22" (id 0) (at 91.44 112.8522 90)) + (property "Value" "12kOhm" (id 1) (at 91.44 115.1636 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 91.44 116.332 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 91.44 118.11 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0149d213-ad5b-4474-9b2f-f134f1f794fe)) + (pin "2" (uuid e972deb8-bdac-4d3c-abd7-a17f2af396ce)) + ) + + (symbol (lib_id "Device:LED_Small") (at 208.28 93.98 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a82d064e-0436-457a-800f-f2af2ec55ea1) + (property "Reference" "D11" (id 0) (at 209.4484 95.758 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "RED" (id 1) (at 207.137 95.758 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 208.28 93.98 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 208.28 93.98 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C2286" (id 4) (at 208.28 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2f730f70-d40b-4610-8766-519958a6474e)) + (pin "2" (uuid c5c085a5-5876-401f-8860-17f12e184445)) + ) + + (symbol (lib_id "Device:R") (at 91.44 139.7 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid d1aabd28-4f24-4d71-a424-4453d83b1872) + (property "Reference" "R23" (id 0) (at 91.44 134.4422 90)) + (property "Value" "12kOhm" (id 1) (at 91.44 136.7536 90)) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 91.44 137.922 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 91.44 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "LCSC" "C22790" (id 4) (at 91.44 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0b1cce31-0db8-4053-96cd-d5b62f3e6041)) + (pin "2" (uuid 840ef6ae-9234-4ec8-bd63-3a45428a17c0)) + ) +)