From 67c0fba5cc8957e910077b142c59dc3ada1bde95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20K=C3=A1kona?= Date: Thu, 14 Nov 2024 10:45:12 +0100 Subject: [PATCH] Update project to KiCADv8. Resolve #7. --- .gitattributes | 2 + .github/workflows/kicad_outputs.yml | 219 +- .github/workflows/metadata_updater.yml | 45 + .github/workflows/release_assets.yml | 36 + .github/workflows/update_actions.yml | 41 + .gitignore | 22 + doc/assets | 2 +- doc_report/docs/TFPROBE01A-report.txt | 96 - hw/sch_pcb/TFPROBE01A.kicad_pcb | 4763 ++++++++++++---------- hw/sch_pcb/TFPROBE01A.kicad_prl | 24 +- hw/sch_pcb/TFPROBE01A.kicad_pro | 77 +- hw/sch_pcb/TFPROBE01A.kicad_sch | 5073 ++++++++++++++++-------- hw/sch_pcb/TFPROBE01A.pdf | Bin 51294 -> 0 bytes hw/sch_pcb/TFPROBE01A.ust_bom | 65 - 14 files changed, 6562 insertions(+), 3903 deletions(-) create mode 100644 .gitattributes create mode 100644 .github/workflows/metadata_updater.yml create mode 100644 .github/workflows/release_assets.yml create mode 100644 .github/workflows/update_actions.yml create mode 100644 .gitignore delete mode 100644 doc_report/docs/TFPROBE01A-report.txt delete mode 100644 hw/sch_pcb/TFPROBE01A.pdf delete mode 100644 hw/sch_pcb/TFPROBE01A.ust_bom diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0b3d9eb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +hw/cam_profi/* merge=theirs +doc/gen/* merge=theirs diff --git a/.github/workflows/kicad_outputs.yml b/.github/workflows/kicad_outputs.yml index 008fca2..561d4c3 100644 --- a/.github/workflows/kicad_outputs.yml +++ b/.github/workflows/kicad_outputs.yml @@ -1,17 +1,28 @@ name: Kicad - production files generator +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + on: push: + paths: + - '**.kicad_pcb' + - '**.kicad_sch' + - '**.kicad_pro' + - '**.yml' + - 'doc/assets' workflow_dispatch: env: - schema: "hw/sch_pcb/*.kicad_sch" - board: "hw/sch_pcb/*.kicad_pcb" + schema: "hw/sch_pcb/${{ github.event.repository.name }}.kicad_sch" + board: "hw/sch_pcb/${{ github.event.repository.name }}.kicad_pcb" + project: ${{ github.event.repository.name }} + branch: ${{ github.head_ref || github.ref_name }} dir: "hw/out" kibot: "doc/assets/kibot" jobs: -# checks ERC: runs-on: ubuntu-latest continue-on-error: true @@ -22,13 +33,14 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/erc.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }} + DRC: runs-on: ubuntu-latest continue-on-error: true @@ -39,37 +51,14 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/drc.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }} - - xml: - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive - token: ${{ secrets.pat }} - ref: ${{ github.head_ref }} - - - uses: MLAB-project/KiBot@master - with: - config: ${{ env.kibot }}/xml.kibot.yaml - schema: ${{ env.schema }} - board: ${{ env.board }} - dir: ${{ env.dir }} - - uses: actions/upload-artifact@v3 - if: ${{ success() }} - with: - name: doc_xml - path: hw/sch_pcb/*.xml - -# documentation + schematics: runs-on: ubuntu-latest continue-on-error: true @@ -80,23 +69,23 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/schematics.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }}_docs - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: doc_sch path: ${{ env.dir }}_docs/** - placement: + name: "Placement and XML" runs-on: ubuntu-latest - continue-on-error: true + #continue-on-error: true steps: - uses: actions/checkout@v3 with: @@ -104,24 +93,52 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/placement.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }}_docs + - uses: INTI-CMNB/KiBot@v2_dk8 + with: + config: ${{ env.kibot }}/xml.kibot.yaml + schema: ${{ env.schema }} + board: ${{ env.board }} + dir: ${{ env.dir }}_docs + +# - name: "Rename output" +# run: | +# for file in $(find ${{env.dir}} -type f); do sudo mv "${file}" "${file//${{env.project}}/${{env.branch}}}" ; done +# for file in $(find ${{env.dir}}_docs -type f); do sudo mv "${file}" "${file//${{env.project}}/${{env.branch}}}" ; done + + - name: "Collect files" + run: | + tree + mkdir doc_xml || true ; + mv hw/sch_pcb/*.xml doc_xml/ || true; + mv hw/out_docs/*.csv doc_xml/ || true; + + - uses: actions/upload-artifact@v4 + if: ${{ success() }} + with: + name: doc_xml + path: | + doc_xml + # Zde se zahazuji debugovaci videa - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: doc_placement - path: ${{ env.dir }}_docs/**/*.pdf - - - pnp: + path: | + ${{ env.dir }}_docs/**/*.pdf + ${{ env.dir }}_docs/**/*.svg + ${{ env.dir }}_docs/**/*.csv + + report: runs-on: ubuntu-latest - continue-on-error: true + #continue-on-error: true steps: - uses: actions/checkout@v3 with: @@ -129,21 +146,21 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: - config: ${{ env.kibot }}/pnp.kibot.yaml + config: ${{ env.kibot }}/report.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} - dir: ${{ env.dir }}_docs + dir: ${{ env.dir }}_report - # Zde se zahazuji debugovaci videa - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: - name: doc_pnp - path: ${{ env.dir }}_docs/ + name: doc_report + path: ${{ env.dir }}_report/ - report: + + ibom: runs-on: ubuntu-latest continue-on-error: true steps: @@ -153,21 +170,26 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: - config: ${{ env.kibot }}/report.kibot.yaml + config: ${{ env.kibot }}/ibom.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} - dir: ${{ env.dir }}_report + dir: ${{ env.dir }}_ibom + + - name: "Rename output" + run: for file in $(find ${{env.dir}} -type f); do sudo mv "${file}" "${file//${{env.project}}/${{env.branch}}}" ; done - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: - name: doc_report - path: ${{ env.dir }}_report/ + name: doc_ibom + path: ${{ env.dir }}_ibom/ + # fabrications gerbers: + name: "Fabrication: Gerebrs, Drill and PnP" runs-on: ubuntu-latest continue-on-error: true steps: @@ -177,24 +199,28 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/gerbers.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }}_gerbers verbose: 3 + + - name: "Rename output" + run: for file in $(find ${{env.dir}}_gerbers -type f); do sudo mv "${file}" "${file//${{env.project}}/${{env.branch}}}" || true ; done - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: hw_cam_profi path: ${{ env.dir }}_gerbers/gerbers/** - cad: + graphics: + name: "CAD and render" runs-on: ubuntu-latest - continue-on-error: true + #continue-on-error: true steps: - uses: actions/checkout@v3 with: @@ -202,62 +228,55 @@ jobs: token: ${{ secrets.pat }} ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/cad.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }}_cad - - - uses: actions/upload-artifact@v3 - if: ${{ success() }} - with: - name: doc_cad - path: ${{ env.dir }}_cad/** - - - render: - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v3 - with: - submodules: recursive - token: ${{ secrets.pat }} - ref: ${{ github.head_ref }} - - uses: MLAB-project/KiBot@master + - uses: INTI-CMNB/KiBot@v2_dk8 with: config: ${{ env.kibot }}/render.kibot.yaml schema: ${{ env.schema }} board: ${{ env.board }} dir: ${{ env.dir }}_img verbose: 3 + + - uses: actions/upload-artifact@v4 + if: ${{ success() }} + with: + name: doc_cad + path: ${{ env.dir }}_cad/** - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: name: doc_img path: ${{ env.dir }}_img/img/** + UPDATE_REPO: runs-on: ubuntu-latest - name: Update repozitory. - needs: [render, cad, gerbers, schematics, pnp, xml, placement] + name: Update repository + needs: [graphics, gerbers, schematics, placement, report, ibom] steps: - uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - - - run: git pull --force --rebase || true + token: ${{ secrets.pat }} + + - run: | + git pull --force --rebase || true + git submodule update --remote || true - name: Download a Build Artifact - uses: actions/download-artifact@v3.0.0 + uses: actions/download-artifact@v4 - name: Remove old manufarturing data run: | rm -r hw/cam_profi || true - rw -r doc/gen || true + rm -r doc/gen || true - name: Extract to right position run: | @@ -265,31 +284,39 @@ jobs: mkdir doc || true mkdir doc/gen || true mkdir doc/gen/img || true + mkdir doc/img || true mkdir doc/img/render || true mkdir hw || true mkdir hw/cam_profi || true - - cp doc/assets/kibot/autogenerated.md hw/cam_profi.readme.md || true - + mkdir hw/cam_profi/gbr || true + mkdir hw/cam_profi/assembly || true + mkdir hw/cam_profi/ibom || true + cp -r doc_img/* doc/gen/img || true cp -r doc_cad/cad/* doc/gen || true - cp -r hw_cam_profi/* hw/cam_profi || true + cp -r hw_cam_profi/* hw/cam_profi/gbr || true cp -r doc_sch/docs/* doc/gen || true - cp -r doc_xml/* doc/gen || true + cp -r doc_xml/* hw/cam_profi || true cp -r doc_sch/img/pcb/* doc/gen/img || true - cp -r doc_placement/doc* hw/cam_profi || true - cp -r doc_pnp/* hw/cam_profi || true - + mv -r doc_placement/PnP/* hw/cam_profi/assembly || true + cp -r doc_placement/* hw/cam_profi/assembly || true + cp -r doc_report/* doc/gen || true + cp -r doc_ibom/docs/* hw/cam_profi || true + + mv hw/cam_profi/gbr/PnP/ hw/cam_profi/assembly || true + rm -r doc_img || true rm -r doc_cad || true rm -r hw_cam_profi || true rm -r doc_sch || true rm -r doc_placement || true - rm -r doc_pnp || true rm -r doc_xml || true + rm -r doc_report || true + rm -r doc_ibom || true + + git add . -f - - uses: stefanzweifel/git-auto-commit-action@v4 + - uses: stefanzweifel/git-auto-commit-action@v4.16.0 with: commit_message: Update actions products - add_options: '-A' - commit_options: '-a' + add_options: '-A -f' diff --git a/.github/workflows/metadata_updater.yml b/.github/workflows/metadata_updater.yml new file mode 100644 index 0000000..128eae7 --- /dev/null +++ b/.github/workflows/metadata_updater.yml @@ -0,0 +1,45 @@ +name: Metadata updater + +on: + push: + workflow_dispatch: + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + submodules: 'recursive' + + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f doc/assets/workflows/requirements.txt ]; then pip install -r doc/assets/workflows/requirements.txt; fi + + - name: Update metadata + env: + gh_repo: ${{ github.event.repository.name }} + gh_url: ${{ github.server_url }}/${{ github.repository }} + gh_branch: ${{ github.head_ref || github.ref_name }} + gh_description: ${{ github.event.repository.name }} + gh_repository: ${{ github.repository }} + gh_token: ${{ secrets.GITHUB_TOKEN }} + run: | + python3 doc/assets/workflows/update_metadata.py + python3 doc/assets/workflows/update_kitspace.py + + - uses: stefanzweifel/git-auto-commit-action@v4.16.0 + with: + commit_message: Update metadata files + commit_options: '-a' diff --git a/.github/workflows/release_assets.yml b/.github/workflows/release_assets.yml new file mode 100644 index 0000000..87b24d2 --- /dev/null +++ b/.github/workflows/release_assets.yml @@ -0,0 +1,36 @@ +name: Release Assets + +permissions: write-all + +on: + release: + types: [edited, prereleased, released] + +jobs: + upload-gerber-assets: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up variables + run: | + REPO_NAME=$(basename -s .git `git config --get remote.origin.url`) + COMMIT_SHA=$(git rev-parse --short HEAD) + ZIP_NAME="${REPO_NAME}-${COMMIT_SHA}.gerber.zip" + echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV + + - name: Create ZIP archive of Gerber files + run: | + zip -j ${{ env.ZIP_NAME }} hw/cam_profi/gbr/* + + - name: Upload ZIP as release asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ${{ env.ZIP_NAME }} + asset_name: ${{ env.ZIP_NAME }} + asset_content_type: application/zip diff --git a/.github/workflows/update_actions.yml b/.github/workflows/update_actions.yml new file mode 100644 index 0000000..e97addb --- /dev/null +++ b/.github/workflows/update_actions.yml @@ -0,0 +1,41 @@ +name: Update actions and assets repository +on: + schedule: + - cron: "0 */24 * * *" + + push: + paths: + - '.gitmodules' + + workflow_dispatch: + +jobs: + Aktualizace: + name: Update repository actions and other tools + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + token: ${{ secrets.pat }} + ref: ${{ github.head_ref }} + + - name: Update submodules + run: | + git -C doc/assets config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*' + git submodule sync doc/assets + git submodule update --init --remote doc/assets + + - name: Update submodules + run: | + git submodule update --remote doc/assets/ + + - name: Zaktualizovat skripty + run: | + cd doc/assets/workflows/ && ./copy_workflow_to_repo.sh && cd ${GITHUB_WORKSPACE} + + - uses: stefanzweifel/git-auto-commit-action@v4.16.0 + with: + commit_message: Update workflow files + add_options: '-A' + commit_options: '-a' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e4e29f --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ + +*~ +*.000 +_autosave-* +*auto_saved_files# +*backup* +*-backups +*.bak +*.bck +*.dsn +*fp-info-cache +fp-info-cache +*.kicad_pcb-bak +*.kicad_prl +*.kicad_sch-bak +*.lck +*.orig +*-save.kicad_pcb +*-save.pro +*.sch-bak +*.ses +*.tmp diff --git a/doc/assets b/doc/assets index 542d90f..eb90d9e 160000 --- a/doc/assets +++ b/doc/assets @@ -1 +1 @@ -Subproject commit 542d90f5eb93246245064e343e4f8c2eafcd4d97 +Subproject commit eb90d9ec3ed30bec2a90d9ae3f955cf7b3a76c39 diff --git a/doc_report/docs/TFPROBE01A-report.txt b/doc_report/docs/TFPROBE01A-report.txt deleted file mode 100644 index 0d55a81..0000000 --- a/doc_report/docs/TFPROBE01A-report.txt +++ /dev/null @@ -1,96 +0,0 @@ -# PCB - -Board size: 14.0x10.0 mm (0.55x0.39 inches) - -- This is the size of the rectangle that contains the board -- Thickness: 1.6 mm (63 mils) -- Material: FR4 -- Finish: None -- Layers: 2 -- Copper thickness: 35 µm - -Solder mask: TOP / BOTTOM - -- Color: Green - -Silk screen: TOP / BOTTOM - -- Color: White - - -Stackup: - -| Name | Type | Color | Thickness | Material | Epsilon_r | Loss tangent | -|----------------------|----------------------|----------|-----------|-----------------|-----------|--------------| -| F.SilkS | Top Silk Screen | | | | | | -| F.Paste | Top Solder Paste | | | | | | -| F.Mask | Top Solder Mask | Green | 10 | | | | -| F.Cu | copper | | 35 | | | | -| dielectric 1 | core | | 1510 | FR4 | 4.5 | 0.02 | -| B.Cu | copper | | 35 | | | | -| B.Mask | Bottom Solder Mask | Green | 10 | | | | -| B.Paste | Bottom Solder Paste | | | | | | -| B.SilkS | Bottom Silk Screen | | | | | | - -# Important sizes - -Clearance: 0.2 mm (8 mils) - -Track width: 0.2 mm (8 mils) - -- By design rules: 0.2 mm (8 mils) - -Drill: 0.4 mm (16 mils) - -- Vias: 0.4 mm (16 mils) [Design: 0.3 mm (12 mils)] -- Pads: 0.89 mm (35 mils) - -Via: 0.8/0.4 mm (31/16 mils) - -- By design rules: 0.4/0.3 mm (16/12 mils) -- Micro via: no [0.2/0.1 mm (8/4 mils)] -- Burried/blind via: no - -Outer Annular Ring: 0.4 mm (16 mils) - -- By design rules: 0.4 mm (16 mils) - -Eurocircuits class: 4C - - -# General stats - -Components count: (SMD/THT) - -- Top: 0/3 (THT) -- Bottom: 4/1 (SMD + THT) - -Defined tracks: - -- 0.2 mm (8 mils) -- 0.3 mm (12 mils) -- 0.4 mm (16 mils) -- 0.5 mm (20 mils) - -Used tracks: - -- 0.2 mm (8 mils) (5) defined: yes -- 0.3 mm (12 mils) (3) defined: yes -- 0.5 mm (20 mils) (30) defined: yes - -Defined vias: - -- 0.8/0.4 mm (31/16 mils) - -Used vias: - -- 0.8/0.4 mm (31/16 mils) (Count: 10, Aspect: 2.0 A) defined: yes - -Holes (excluding vias): - -- 0.89 mm (35 mils) (3) -- 3.0 mm (118 mils) (2) - - - - diff --git a/hw/sch_pcb/TFPROBE01A.kicad_pcb b/hw/sch_pcb/TFPROBE01A.kicad_pcb index e67718a..40521cf 100644 --- a/hw/sch_pcb/TFPROBE01A.kicad_pcb +++ b/hw/sch_pcb/TFPROBE01A.kicad_pcb @@ -1,2088 +1,2677 @@ -(kicad_pcb (version 20221018) (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 - (stackup - (layer "F.SilkS" (type "Top Silk Screen")) - (layer "F.Paste" (type "Top Solder Paste")) - (layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01)) - (layer "F.Cu" (type "copper") (thickness 0.035)) - (layer "dielectric 1" (type "core") (thickness 1.51) (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 "Green") (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.2) - (pcbplotparams - (layerselection 0x00012e0_ffffffff) - (plot_on_all_layers_selection 0x0000000_00000000) - (disableapertmacros false) - (usegerberextensions false) - (usegerberattributes true) - (usegerberadvancedattributes true) - (creategerberjobfile true) - (dashed_line_dash_ratio 12.000000) - (dashed_line_gap_ratio 3.000000) - (svgprecision 6) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin true) - (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 0) - (scaleselection 1) - (outputdirectory "../cam_profi/") - ) - ) - - (net 0 "") - (net 1 "+5V") - (net 2 "GND") - (net 3 "/COUNT") - (net 4 "Net-(R1-Pad2)") - - (footprint "Mlab_Mechanical:dira_3mm" (layer "F.Cu") - (tstamp 56e47677-8c0b-43f7-9577-991844c98171) - (at 8.89 -10.033) - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/196227d8-be2a-4b6f-852b-6ff909ae9882") - (attr through_hole) - (fp_text reference "M3" (at 0 -0.5 unlocked) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9fac237d-9e9b-4dc0-b00b-2c9abe972b3b) - ) - (fp_text value "HOLE" (at 0 1 unlocked) (layer "F.Fab") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aaf139c8-ea2d-4130-9d27-cbe20278733a) - ) - (fp_text user "2" (at 0 2.5 unlocked) (layer "F.Fab") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f8c1cee2-3e07-4f10-8cd9-250d96709fee) - ) - (pad "" np_thru_hole circle (at 0.11 0.033) (size 3 3) (drill 3) (layers "*.Mask") (tstamp 9a595313-588a-409f-a7ba-9085dc25255a)) - ) - - (footprint "Mlab_Mechanical:dira_3mm" (layer "F.Cu") - (tstamp 90077a77-46dd-45fb-9269-10e0de11cc16) - (at 9 0) - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/3b547b03-2d6f-403a-a314-16fe37d96cd6") - (attr through_hole) - (fp_text reference "M4" (at 0 -0.5 unlocked) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 64fe6498-d04e-4d0f-97c7-65ee0ea80220) - ) - (fp_text value "HOLE" (at 0 1 unlocked) (layer "F.Fab") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp abe4326c-62a9-4647-8cb8-2809f814037d) - ) - (fp_text user "1" (at 0 2.5 unlocked) (layer "F.Fab") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c93808a1-ee21-479d-a3ae-c1f3fdc396ed) - ) - (pad "" np_thru_hole circle (at 0 0) (size 3 3) (drill 3) (layers "*.Mask") (tstamp 113c40a2-e9ee-49e8-b67a-aca9655a0a53)) - ) - - (footprint "Mlab_Pin_Headers:Straight_1x03" locked (layer "F.Cu") - (tstamp b2df6ceb-bfd6-46da-9391-f6208d3257be) - (at 4.069 -5) - (descr "pin header straight 1x03") - (tags "pin header straight 1x03") - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/d81e7dca-ab0d-4e13-984a-1c5b00f3383c") - (attr through_hole) - (fp_text reference "J1" (at 0 -5.08 180) (layer "F.SilkS") hide - (effects (font (size 1.5 1.5) (thickness 0.15))) - (tstamp 0360a17e-7a6b-45c7-bc4c-1d531836c780) - ) - (fp_text value "HEADER_1x03" (at 0 5.08 180) (layer "F.SilkS") hide - (effects (font (size 1.5 1.5) (thickness 0.15))) - (tstamp a7786078-3591-4f5c-bc0f-439c5de19227) - ) - (fp_line (start -1.27 -3.81) (end 1.27 -3.81) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cd100654-35d9-467f-ab85-7b6312a33e1e)) - (fp_line (start -1.27 3.81) (end -1.27 -3.81) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f2ff51e8-a90b-4000-87b1-7fe02801de4c)) - (fp_line (start 1.27 -3.81) (end 1.27 3.81) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b4b62924-490c-4c3e-80ea-21066469a747)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 394926cc-b756-470f-8661-e2d69a43ff17)) - (fp_line (start -1.27 -3.81) (end 1.27 -3.81) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp da9ea73a-8a78-44c1-bbd3-a04dd4c338c9)) - (fp_line (start -1.27 3.81) (end -1.27 -3.81) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 6c0cfadf-9ac4-4c32-97ec-618b1832ceb7)) - (fp_line (start 1.27 -3.81) (end 1.27 3.81) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp ca574c21-1024-45bd-bae5-b9194f0557f1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp a981c5e2-1ec3-44df-9c3f-7bc50fa7f04c)) - (pad "1" thru_hole rect locked (at 0 -2.54) (size 1.524 1.524) (drill 0.889) (layers "*.Cu" "*.Mask") - (net 3 "/COUNT") (tstamp 6421529e-ac37-431c-998b-2bd433a938b4)) - (pad "2" thru_hole rect locked (at 0 0) (size 1.524 1.524) (drill 0.889) (layers "*.Cu" "*.Mask") - (net 1 "+5V") (tstamp bc978b75-fa51-4e2e-8049-ac07e59b8b53)) - (pad "3" thru_hole rect locked (at 0 2.54) (size 1.524 1.524) (drill 0.889) (layers "*.Cu" "*.Mask") - (net 2 "GND") (tstamp c91e0e5c-384f-4a83-baa3-31710cdcd2ae)) - (model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 2.54 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Mlab_R:SMD-0603" (layer "B.Cu") - (tstamp 12a804ff-ed16-49d2-95ce-8a2ac0f88c8c) - (at 8.89 -5.0545 -90) - (descr "Resistor 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 "resistor") - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/9e12790b-cec9-4dd8-a3af-c20d5c11d549") - (attr smd) - (fp_text reference "R1" (at 0 1.43 -270) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 440ec7f5-e431-4034-a5c7-0e92d58b2e50) - ) - (fp_text value "180R" (at 0 -1.43 -270) (layer "B.Fab") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 79e89948-a5d1-417a-8e1c-6e2dcc53e584) - ) - (fp_text user "${REFERENCE}" (at 0 0 -270) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp d690b4eb-8ea8-476b-a9de-f20b6a80069c) - ) - (fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d01c8536-c85a-4fea-98ef-91e46216a433)) - (fp_line (start -0.162779 0.51) (end 0.162779 0.51) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e4c738f4-3ea7-4863-b6e2-830ecf12461e)) - (fp_line (start -1.48 -0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 13548af9-0718-4b3b-8268-d3b2380f6863)) - (fp_line (start -1.48 0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d24779a3-9ba0-4043-9927-9284d29b3303)) - (fp_line (start 1.48 -0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7ff0ae96-3a8f-4a0e-9e21-df025741190f)) - (fp_line (start 1.48 0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fd0d56e8-072e-4202-8c6d-82d51b796640)) - (fp_line (start -0.8 -0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d31383b7-4cc7-4e71-870b-a3f4ec759b12)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 80eaccaa-be8e-403d-892f-86215f4b7ad0)) - (fp_line (start 0.8 -0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c3deb94c-cb6e-4f2d-b8cf-37aed962696f)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 264435ff-e1f7-41f1-ae96-df086ca60f6d)) - (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (tstamp 2e33f2d8-5221-48e9-b0fc-d8ea06070b12)) - (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 4 "Net-(R1-Pad2)") (tstamp a65c2f43-854f-4762-b1c8-f934b201500e)) - (model "${KISYS3DMOD}/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-23" (layer "B.Cu") - (tstamp 1e069433-40c3-442c-a0ab-5d3593c99531) - (at 12 -3.048 180) - (descr "SOT-23, Standard") - (tags "SOT-23") - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/a7f3953c-82c9-48f9-af66-14b131e92525") - (attr smd) - (fp_text reference "U1" (at -0.065 0 90) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 3af7ab49-cd6b-45fc-8812-348ddb7b8e8f) - ) - (fp_text value "AH3572" (at 0 -2.5) (layer "B.Fab") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp fede6f46-15cf-4924-af0f-a402fa97f73e) - ) - (fp_text user "${REFERENCE}" (at 0 -0.159 270) (layer "B.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror)) - (tstamp 8688ca3b-c82d-456b-af2b-7145723a4c4a) - ) - (fp_line (start 0.76 -1.58) (end -0.7 -1.58) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 677910b6-820a-4bf7-9c66-df77d2f1dbb2)) - (fp_line (start 0.76 -1.58) (end 0.76 -0.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a1c30acc-bb97-496e-9330-ec1b1d8fe572)) - (fp_line (start 0.76 1.58) (end -1.4 1.58) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cdca18ab-c2e1-440b-a4de-f146c25a74f3)) - (fp_line (start 0.76 1.58) (end 0.76 0.65) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bfe30c4b-6207-472c-b2d4-1773560c2ef5)) - (fp_line (start -1.7 -1.75) (end -1.7 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dfff2472-c0d2-4d07-a016-926ea119ce2d)) - (fp_line (start -1.7 1.75) (end 1.7 1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 14682707-d394-4f25-8a05-8ced152b198d)) - (fp_line (start 1.7 -1.75) (end -1.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8cc2c447-77a4-408c-8b37-ab75758b5941)) - (fp_line (start 1.7 1.75) (end 1.7 -1.75) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5e5eb852-78ac-477b-8e1f-6c1fc2cc4e8f)) - (fp_line (start -0.7 -1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c6407950-b3e1-4beb-96dc-6173458a2f34)) - (fp_line (start -0.7 0.95) (end -0.7 -1.5) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 45820504-c6a3-4c79-8fba-ccd2bad782b2)) - (fp_line (start -0.7 0.95) (end -0.15 1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5f6db468-0a91-454a-bdae-747ce27770f8)) - (fp_line (start -0.15 1.52) (end 0.7 1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a438cfee-4749-4d45-b851-0c7cf672f6ae)) - (fp_line (start 0.7 1.52) (end 0.7 -1.52) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b1f6106c-1377-4df9-9cb7-cf984341cdec)) - (pad "1" smd rect (at -1 0.95 180) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 1 "+5V") (pinfunction "VDD") (tstamp 924acfd4-a450-4dc3-be76-de89152f7c10)) - (pad "2" smd rect (at -1 -0.95 180) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 3 "/COUNT") (pinfunction "OUT") (tstamp f4199b9d-0e96-490c-a96e-922cdb32cc56)) - (pad "3" smd rect (at 1 0 180) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask") - (net 2 "GND") (pinfunction "GND") (tstamp 4e002ea0-f972-47a8-a3f0-245d77b07ed0)) - (model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Mlab_R:SMD-0603" (layer "B.Cu") - (tstamp 378994b2-6a2d-4498-98e7-656d84b6070d) - (at 6.985 -3.0225 -90) - (descr "Resistor 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 "resistor") - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/ac907e1c-aaef-41d8-ab58-f926b0e3502f") - (attr smd) - (fp_text reference "C1" (at 0 1.43 -270) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 28a9c17a-f213-4c98-87e8-3b88fc15444b) - ) - (fp_text value "100nF" (at 0 -1.43 -270) (layer "B.Fab") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 19138f9a-eae5-4b50-b6d1-21c975b94c4d) - ) - (fp_text user "${REFERENCE}" (at 0 0 -270) (layer "B.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) - (tstamp febf9e36-03a6-4c5b-a566-b4a6e2bd32e0) - ) - (fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a150d794-5aa0-4d49-8dbf-414f38d89c14)) - (fp_line (start -0.162779 0.51) (end 0.162779 0.51) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bbaacbc5-5bcb-4f68-9e38-19033a2f6f8d)) - (fp_line (start -1.48 -0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8c15edb8-05b2-4c96-9b72-c5c808e49c85)) - (fp_line (start -1.48 0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50f57b36-991f-449b-be38-d50a31064a60)) - (fp_line (start 1.48 -0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 00254b0e-279e-4d79-9ffd-a8e7048fc811)) - (fp_line (start 1.48 0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d02ffcf0-16b5-499c-a3a5-b2c55f16963c)) - (fp_line (start -0.8 -0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp edd8f77d-e2f5-4313-aef5-b75ad17a367e)) - (fp_line (start -0.8 0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f5b54bff-26d5-407b-8f2a-73578e7c6a4f)) - (fp_line (start 0.8 -0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 766f635f-4060-4e41-9d6a-b4bc6872c5ad)) - (fp_line (start 0.8 0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c25e6102-aa41-49c0-8124-ebd365db4294)) - (pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 1 "+5V") (tstamp 0a3d5979-1671-47e4-b8d5-6047eaf539ae)) - (pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (tstamp 7d0f52c7-4b61-4088-b9ef-9e730085efeb)) - (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Mlab_R:SMD-0805" (layer "B.Cu") - (tstamp 72d28d2f-2919-4936-a9ba-66e8379edab3) - (at 6.858 -6.858 90) - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/dc0b4ba4-1c58-4194-aa69-1071feb9bfda") - (attr smd) - (fp_text reference "R2" (at 0 0.3175 90) (layer "B.Fab") - (effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror)) - (tstamp 51df30c3-f317-4460-b30a-5fb8540dcfe5) - ) - (fp_text value "-" (at 0.127 -0.381 90) (layer "B.Fab") - (effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror)) - (tstamp 74ee4263-ab77-4d9b-a83c-4df479caa04f) - ) - (fp_line (start -1.524 -0.762) (end -1.524 0.762) - (stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp e7362c91-620d-4a08-b6cb-0dbfe7426385)) - (fp_line (start -0.381 -0.762) (end 0.381 -0.762) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f5cacfe6-e6f9-4126-8a9e-c1b2b81b19e4)) - (fp_line (start -0.381 0.762) (end 0.381 0.762) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 004d0136-e250-4920-8de2-a0be0b37f2f3)) - (fp_line (start 1.524 0.762) (end 1.524 -0.762) - (stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 18a9ce20-fe79-4601-9f26-cf3bc87d9b74)) - (fp_line (start -1.524 -0.762) (end -1.524 0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp bd0b4caf-e65d-49f6-af89-00fb97a8e220)) - (fp_line (start -1.524 0.762) (end -0.508 0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp 2490cb6d-5b6d-406e-a4c4-164dbbc2d118)) - (fp_line (start -0.508 -0.762) (end -1.524 -0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp 5ef757f3-70ef-4a9c-950f-f5e045b739f1)) - (fp_line (start 0.508 0.762) (end 1.524 0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp b633bf51-d9a1-4dde-9bd0-301ea59c2062)) - (fp_line (start 1.524 -0.762) (end 0.508 -0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp afe3f7e2-31af-42a4-85bc-a7048e5357ad)) - (fp_line (start 1.524 0.762) (end 1.524 -0.762) - (stroke (width 0.15) (type solid)) (layer "B.Fab") (tstamp 0f0c5b2a-c56b-4888-8d6f-85f61b683ad4)) - (pad "1" smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers "B.Cu" "B.Paste" "B.Mask") - (net 1 "+5V") (tstamp 57be02fb-07a0-451f-b2ef-4f89874c2e8b)) - (pad "2" smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers "B.Cu" "B.Paste" "B.Mask") - (net 3 "/COUNT") (tstamp b532a92a-6a41-43fe-aea5-1d932d1d9141)) - (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Mlab_IO:XDCR_VCNT2020" (layer "B.Cu") - (tstamp 8c35d8f4-72e8-4872-a7c3-44fef395efd7) - (at 12 -7.048) - (property "Field4" "Vishay") - (property "Field5" "Manufacturer Recommendation") - (property "Sheet file" "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") - (property "Sheet name" "") - (path "/08989b57-1670-408e-a8a9-fe966c7c308b") - (attr through_hole) - (fp_text reference "U2" (at 0.635 2.667) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.015)) (justify mirror)) - (tstamp 06d7efb7-581f-444c-a287-e7a058a88768) - ) - (fp_text value "VCNT2020" (at 5.715 -2.667) (layer "B.Fab") hide - (effects (font (size 1 1) (thickness 0.015)) (justify mirror)) - (tstamp 2094c04a-25ba-404f-80d9-3eb6fcf92658) - ) - (fp_text user "${REFERENCE}" (at -0.062 0 unlocked) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 60873b21-8a1a-4991-ae84-82ff4427844c) - ) - (fp_line (start -1.37 1) (end -1.37 -1) - (stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 6ee949e3-6042-4b84-bb2b-26050c73a44b)) - (fp_line (start 1.37 1) (end 1.37 -1) - (stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp c66a3c58-de0a-4c78-8bbd-491b766a3871)) - (fp_circle (center -1.91352 0.769763) (end -1.81352 0.769763) - (stroke (width 0.2) (type solid)) (fill none) (layer "B.SilkS") (tstamp 67d95976-95e6-4981-9c08-55ff6f3f676b)) - (fp_line (start -1.5 1.45) (end -1.5 -1.45) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f94579a6-5e99-47bd-8cb9-5589eae95764)) - (fp_line (start 1.5 -1.45) (end -1.5 -1.45) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8c1ed25d-231b-4144-8f27-f9d867e68c99)) - (fp_line (start 1.5 1.45) (end -1.5 1.45) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8960d03c-adb1-484a-8ca3-46e7f83f9cdf)) - (fp_line (start 1.5 1.45) (end 1.5 -1.45) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7c0991c8-8660-4274-b5ff-2b14e9ac9381)) - (fp_line (start -1.25 1) (end -1.25 -1) - (stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 4a318709-f9b6-4b98-a5cd-e47c02069514)) - (fp_line (start 1.25 -1) (end -1.25 -1) - (stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 25853a44-b42a-42d3-8109-05389cff52ed)) - (fp_line (start 1.25 1) (end -1.25 1) - (stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 809b28aa-e40b-45df-bc8e-3e67aaa57c2b)) - (fp_line (start 1.25 1) (end 1.25 -1) - (stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp f30fd9a9-29ea-403b-8206-968002d9b171)) - (fp_circle (center -1.91352 0.769763) (end -1.81352 0.769763) - (stroke (width 0.2) (type solid)) (fill none) (layer "B.Fab") (tstamp 02b27281-e9ab-4c66-8802-18d69a22f8cf)) - (pad "1" smd rect (at -0.57 0.725) (size 0.97 0.95) (layers "B.Cu" "B.Paste" "B.Mask") - (net 2 "GND") (tstamp 02a5e088-7b54-41a1-975d-f5c648890013)) - (pad "2" smd rect (at -0.57 -0.625) (size 0.97 1.15) (layers "B.Cu" "B.Paste" "B.Mask") - (net 3 "/COUNT") (tstamp 15121333-5aee-40b7-a66c-99d1d6fd9f82)) - (pad "3" smd rect (at 0.63 0.725) (size 0.85 0.95) (layers "B.Cu" "B.Paste" "B.Mask") - (net 4 "Net-(R1-Pad2)") (tstamp 6f32d9bc-fad5-4bb0-adcc-b211c604f277)) - (pad "4" smd rect (at 0.63 -0.625) (size 0.85 1.15) (layers "B.Cu" "B.Paste" "B.Mask") - (net 2 "GND") (tstamp 6c2a87b7-0639-4006-b0fc-bb9eeeb1c515)) - (model "${KISYS3DMOD_MLAB}/VISHAY_VCNT2020.step" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (gr_line (start 9.906 -8.001) (end 10.668 -8.001) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 194a0d38-a366-4c37-88d9-72fd0aa5a0c3)) - (gr_line (start 9.271 -7.112) (end 9.906 -7.112) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 31761ebf-8981-4546-919c-bcd25f2f52c2)) - (gr_line (start 10.668 -8.001) (end 10.668 -7.112) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 63308f9c-9348-4e02-b073-6269fa6b78a5)) - (gr_line (start 9.906 -7.112) (end 9.906 -8.001) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 785573a0-3be5-4a94-bdad-7d51dc8ea8da)) - (gr_line (start 10.668 -7.112) (end 11.43 -7.112) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f5166085-455a-4b21-b152-20fa42cd1e82)) - (gr_rect (start 0 -10) (end 14 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "Edge.Cuts") (tstamp 4b58e704-cec7-425c-8f75-4487ded1d908)) - (gr_text "TFPROBE01A" (at 1.1 -5 90) (layer "F.Cu") (tstamp cf5b2775-b1f4-4526-9290-f41c8e2b95bb) - (effects (font (size 1.3 1) (thickness 0.15))) - ) - (gr_text "ThunderFly" (at 1.397 -5 90) (layer "B.Cu") (tstamp 77f9dc0a-1e99-4f08-8c82-0902854ebda1) - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - ) - (gr_text "GND" (at 5.3 -2.3) (layer "F.SilkS") (tstamp 9ce32d00-c99e-409e-8bf0-d6b07bb491f7) - (effects (font (size 1.3 1.3) (thickness 0.2)) (justify left)) - ) - (gr_text "OUT" (at 5.5 -7.4) (layer "F.SilkS") (tstamp b7b729fd-563d-427e-bf01-c516982f5600) - (effects (font (size 1.3 1.3) (thickness 0.2)) (justify left)) - ) - (gr_text "+5V" (at 5.339 -4.9) (layer "F.SilkS") (tstamp cd988095-883a-4c4d-a0cf-2717a2a286dc) - (effects (font (size 1.3 1.3) (thickness 0.2)) (justify left)) - ) - (dimension (type aligned) (layer "Cmts.User") (tstamp 13bd75d2-c0f6-4713-bd86-1e9d144c22e5) - (pts (xy 14 0) (xy 14 -3.048)) - (height 3.89) - (gr_text "3,048 mm" (at 16.74 -1.524 90) (layer "Cmts.User") (tstamp 13bd75d2-c0f6-4713-bd86-1e9d144c22e5) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4) suppress_zeroes) - (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 "Cmts.User") (tstamp 2908213f-c696-41a7-9ce3-d10d54757d7c) - (pts (xy 16.8194 -10) (xy 16.8194 0)) - (height -2.637) - (gr_text "10 mm" (at 19.4564 -5 90) (layer "Cmts.User") (tstamp 2908213f-c696-41a7-9ce3-d10d54757d7c) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4) suppress_zeroes) - (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 1) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) - ) - (dimension (type aligned) (layer "Cmts.User") (tstamp 4ec67df4-b3f4-4e3d-ac3d-4d2b6a092f28) - (pts (xy 2.799 -1.19) (xy 2.799 -8.81)) - (height -4.099) - (gr_text "7,6200 mm" (at -2.45 -5 90) (layer "Cmts.User") (tstamp 4ec67df4-b3f4-4e3d-ac3d-4d2b6a092f28) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (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 "Cmts.User") (tstamp d13963cf-687e-4261-985e-299390312a2c) - (pts (xy 0 0) (xy 14 0)) - (height 2.921) - (gr_text "14 mm" (at 7 1.771) (layer "Cmts.User") (tstamp d13963cf-687e-4261-985e-299390312a2c) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4) suppress_zeroes) - (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 "Cmts.User") (tstamp e01ba0fb-8437-425c-9dc5-36d42c6c4ecf) - (pts (xy 12 -7.048) (xy 14 -7.048)) - (height -4.942) - (gr_text "2 mm" (at 13 -13.14) (layer "Cmts.User") (tstamp e01ba0fb-8437-425c-9dc5-36d42c6c4ecf) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4) suppress_zeroes) - (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 "Cmts.User") (tstamp e442bfb5-9b34-498e-8321-0d6b4fdb4862) - (pts (xy 14 -10) (xy 14 -7.048)) - (height -2.59) - (gr_text "2,952 mm" (at 15.44 -8.524 90) (layer "Cmts.User") (tstamp e442bfb5-9b34-498e-8321-0d6b4fdb4862) - (effects (font (size 1 1) (thickness 0.15))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4) suppress_zeroes) - (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 10.16 -5.842) (end 10.033 -5.969) (width 0.5) (layer "F.Cu") (net 1) (tstamp 52a97bce-c725-49b1-b185-c610fdbf16b9)) - (segment (start 10.16 -4.23) (end 10.16 -5.842) (width 0.5) (layer "F.Cu") (net 1) (tstamp b87b835e-48d1-4f69-ae29-a2ab8febdf48)) - (via (at 10.033 -5.969) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 08fa310c-ea53-4895-b53d-2e386d0dd562)) - (via (at 10.16 -4.23) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp f1960701-c8c0-42ca-91ee-6400b8e17ee2)) - (segment (start 8.89 -5.842) (end 6.9215 -5.842) (width 0.5) (layer "B.Cu") (net 1) (tstamp 30d322b7-fe07-4a7e-8bbd-816b74d364b7)) - (segment (start 10.392 -3.998) (end 10.16 -4.23) (width 0.5) (layer "B.Cu") (net 1) (tstamp 3cb40ed5-dd5d-4fad-bbdf-e64ee5038085)) - (segment (start 6.985 -5.7785) (end 6.858 -5.9055) (width 0.5) (layer "B.Cu") (net 1) (tstamp 835125df-9e27-4a01-96d7-a50f170b7227)) - (segment (start 13 -3.998) (end 10.392 -3.998) (width 0.5) (layer "B.Cu") (net 1) (tstamp 888e8e5b-32f4-42d6-abed-1618cc91b268)) - (segment (start 6.9215 -5.842) (end 6.858 -5.9055) (width 0.5) (layer "B.Cu") (net 1) (tstamp 981003a1-66a7-4f38-a835-c5138027db19)) - (segment (start 9.017 -5.969) (end 8.89 -5.842) (width 0.5) (layer "B.Cu") (net 1) (tstamp a5fd9a40-d260-46a1-8924-25095f574076)) - (segment (start 6.985 -3.81) (end 6.985 -5.7785) (width 0.5) (layer "B.Cu") (net 1) (tstamp ae38ed9f-a9c2-4453-8214-9642ef83719f)) - (segment (start 4.9745 -5.9055) (end 4.069 -5) (width 0.5) (layer "B.Cu") (net 1) (tstamp b9adf2cb-5da8-4513-96b5-f2a8c3ce8b3c)) - (segment (start 6.858 -5.9055) (end 4.9745 -5.9055) (width 0.5) (layer "B.Cu") (net 1) (tstamp cfca5d06-ec5f-4f94-8921-94b8a27e1c1f)) - (segment (start 10.033 -5.969) (end 9.017 -5.969) (width 0.5) (layer "B.Cu") (net 1) (tstamp d8225fce-d206-4f39-a212-79e793d6a54b)) - (via (at 11.303 -0.762) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 194b1269-4e1f-403d-b2a8-58e23d4531c2)) - (via (at 9.525 -2.794) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 319499be-e9c2-4ab4-a4fd-8227066a5c22)) - (via (at 11.303 -9.144) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 6562ba55-9eb9-466a-9d0a-ecd06e76cb67)) - (via (at 12.7 -9.144) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 83858109-2b28-4cf7-b47d-90a600b60a10)) - (via (at 12.573 -0.762) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp bd650164-899c-4773-b358-be8c9b99a7a3)) - (via (at 6.858 -0.889) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp c324e412-fad3-4239-a3db-395ee1fdea92)) - (segment (start 13.75001 -8.72899) (end 13.75001 -0.66901) (width 0.2) (layer "B.Cu") (net 2) (tstamp 7268d5da-1062-4e9b-b54a-5b8ef2cb9879)) - (segment (start 10.822 -6.323) (end 10.414 -6.731) (width 0.3) (layer "B.Cu") (net 2) (tstamp 75598147-22a2-4147-a41c-1e976a606aaa)) - (segment (start 11.43 -6.323) (end 10.822 -6.323) (width 0.3) (layer "B.Cu") (net 2) (tstamp 9c7435a1-5d31-4a71-8edd-f18357391aca)) - (segment (start 13.335 -9.144) (end 13.75001 -8.72899) (width 0.2) (layer "B.Cu") (net 2) (tstamp a3aa46c5-b75e-4709-b563-a19ecbab012d)) - (segment (start 10.414 -6.731) (end 9.271 -6.731) (width 0.3) (layer "B.Cu") (net 2) (tstamp aa1ff164-ebd2-421c-9217-39ca6393d836)) - (segment (start 13.65702 -0.762) (end 12.573 -0.762) (width 0.2) (layer "B.Cu") (net 2) (tstamp e26b366b-484b-4b65-8b7a-6a7a2d306947)) - (segment (start 13.75001 -0.66901) (end 13.65702 -0.762) (width 0.2) (layer "B.Cu") (net 2) (tstamp f2b1712f-5788-45a0-be2b-0086f00276c3)) - (segment (start 12.7 -9.144) (end 13.335 -9.144) (width 0.2) (layer "B.Cu") (net 2) (tstamp fc9bf196-44a6-4f4b-abbb-ec79da7f0c83)) - (segment (start 11.176 -7.366) (end 8.763 -7.366) (width 0.5) (layer "F.Cu") (net 3) (tstamp 0c7bf5b9-6cb2-477b-a2ec-f5c0cddb70bd)) - (segment (start 11.938 -2.159) (end 11.938 -6.604) (width 0.5) (layer "F.Cu") (net 3) (tstamp 5aeee9ea-2f13-4468-bd7c-e4021a63c0c8)) - (segment (start 11.938 -6.604) (end 11.176 -7.366) (width 0.5) (layer "F.Cu") (net 3) (tstamp b02e324a-e61b-478d-b5d4-2d7a060c08d2)) - (via (at 8.763 -7.366) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 32f833d1-2343-4c7a-a526-0a70d6278f45)) - (via (at 11.938 -2.159) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 7eb3b75a-9f9d-4345-b693-f02528c72222)) - (segment (start 6.858 -7.8105) (end 4.3395 -7.8105) (width 0.5) (layer "B.Cu") (net 3) (tstamp 15cd9b73-ea02-426d-9445-9ad7c3667e61)) - (segment (start 7.3025 -7.8105) (end 7.747 -7.366) (width 0.5) (layer "B.Cu") (net 3) (tstamp 1d37d859-84af-41cf-85ca-733ae5dd1da1)) - (segment (start 11.2925 -7.8105) (end 11.43 -7.673) (width 0.5) (layer "B.Cu") (net 3) (tstamp 35e33bf7-b707-4d32-b855-9b003dfa8b91)) - (segment (start 6.858 -7.8105) (end 7.3025 -7.8105) (width 0.5) (layer "B.Cu") (net 3) (tstamp 3ea057b1-c403-4889-a633-cfa0bb46ce0d)) - (segment (start 13 -2.098) (end 11.999 -2.098) (width 0.5) (layer "B.Cu") (net 3) (tstamp 5137dca4-cb12-46db-87bc-19e472a2aee8)) - (segment (start 11.999 -2.098) (end 11.938 -2.159) (width 0.5) (layer "B.Cu") (net 3) (tstamp 866f9119-2078-436b-86c3-8c6a1044ddd3)) - (segment (start 4.3395 -7.8105) (end 4.069 -7.54) (width 0.5) (layer "B.Cu") (net 3) (tstamp a1acd0c3-0025-4577-bbd3-866f467f9168)) - (segment (start 8.763 -7.366) (end 11.123 -7.366) (width 0.5) (layer "B.Cu") (net 3) (tstamp bd27212a-429f-49d4-bf30-458cd54ddece)) - (segment (start 7.747 -7.366) (end 8.763 -7.366) (width 0.5) (layer "B.Cu") (net 3) (tstamp c7efa3ef-d5e8-4a04-aade-1670cb66ee7e)) - (segment (start 11.123 -7.366) (end 11.43 -7.673) (width 0.5) (layer "B.Cu") (net 3) (tstamp f8d76482-e088-414f-bc2e-d7a140c900fc)) - (segment (start 11.684 -5.08) (end 9.703 -5.08) (width 0.5) (layer "B.Cu") (net 4) (tstamp 14850230-0aeb-4940-911e-a046014bbdf8)) - (segment (start 11.684 -5.08) (end 12.319 -5.08) (width 0.5) (layer "B.Cu") (net 4) (tstamp 20f80cc9-af37-436a-9048-421fc3406bb6)) - (segment (start 12.63 -5.391) (end 12.63 -6.323) (width 0.5) (layer "B.Cu") (net 4) (tstamp 38b11f66-0c07-46b4-90df-b68a98471020)) - (segment (start 9.703 -5.08) (end 8.89 -4.267) (width 0.5) (layer "B.Cu") (net 4) (tstamp a0094807-7be6-4ca6-b2cc-09ca21e1ba62)) - (segment (start 12.319 -5.08) (end 12.63 -5.391) (width 0.5) (layer "B.Cu") (net 4) (tstamp eb93a205-0578-4c7a-9889-012d571a42b4)) - - (zone (net 2) (net_name "GND") (layers "F&B.Cu") (tstamp 277822f0-1422-41cd-8395-efe02d6e09e9) (hatch edge 0.508) - (connect_pads (clearance 0.2)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.4) (thermal_bridge_width 0.4)) - (polygon - (pts - (xy 15.494 1.524) - (xy -3.048 1.524) - (xy -2.159 -12.319) - (xy 15.24 -12.319) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 7.283551 -9.781093) - (xy 7.319515 -9.731593) - (xy 7.322841 -9.718276) - (xy 7.347424 -9.579563) - (xy 7.347426 -9.579556) - (xy 7.348081 -9.575859) - (xy 7.431244 -9.330869) - (xy 7.432974 -9.327538) - (xy 7.432976 -9.327534) - (xy 7.516151 -9.167417) - (xy 7.550508 -9.101277) - (xy 7.703128 -8.892366) - (xy 7.885591 -8.708945) - (xy 7.88861 -8.706715) - (xy 7.888616 -8.70671) - (xy 8.036311 -8.597622) - (xy 8.0937 -8.555234) - (xy 8.210542 -8.49376) - (xy 8.319337 -8.436519) - (xy 8.319342 -8.436517) - (xy 8.322664 -8.434769) - (xy 8.567216 -8.350325) - (xy 8.570913 -8.34965) - (xy 8.57092 -8.349648) - (xy 8.782393 -8.311027) - (xy 8.821727 -8.303843) - (xy 8.904595 -8.2995) - (xy 9.065729 -8.2995) - (xy 9.142768 -8.30536) - (xy 9.254221 -8.313838) - (xy 9.254227 -8.313839) - (xy 9.257975 -8.314124) - (xy 9.510014 -8.372543) - (xy 9.750316 -8.468414) - (xy 9.973352 -8.59953) - (xy 10.173989 -8.762874) - (xy 10.291199 -8.892366) - (xy 10.345086 -8.951899) - (xy 10.345089 -8.951903) - (xy 10.347609 -8.954687) - (xy 10.490219 -9.170555) - (xy 10.598534 -9.40551) - (xy 10.670065 -9.654146) - (xy 10.677743 -9.713666) - (xy 10.703938 -9.768958) - (xy 10.757632 -9.798295) - (xy 10.775929 -9.8) - (xy 13.701 -9.8) - (xy 13.759191 -9.781093) - (xy 13.795155 -9.731593) - (xy 13.8 -9.701) - (xy 13.8 -0.299) - (xy 13.781093 -0.240809) - (xy 13.731593 -0.204845) - (xy 13.701 -0.2) - (xy 10.77464 -0.2) - (xy 10.716449 -0.218907) - (xy 10.680485 -0.268407) - (xy 10.677159 -0.281724) - (xy 10.652576 -0.420437) - (xy 10.652574 -0.420444) - (xy 10.651919 -0.424141) - (xy 10.568756 -0.669131) - (xy 10.487254 -0.826029) - (xy 10.451228 -0.895382) - (xy 10.451225 -0.895387) - (xy 10.449492 -0.898723) - (xy 10.296872 -1.107634) - (xy 10.114409 -1.291055) - (xy 10.11139 -1.293285) - (xy 10.111384 -1.29329) - (xy 9.90933 -1.442528) - (xy 9.9063 -1.444766) - (xy 9.741284 -1.531586) - (xy 9.680663 -1.563481) - (xy 9.680658 -1.563483) - (xy 9.677336 -1.565231) - (xy 9.654012 -1.573285) - (xy 9.436343 -1.648446) - (xy 9.436344 -1.648446) - (xy 9.432784 -1.649675) - (xy 9.429087 -1.65035) - (xy 9.42908 -1.650352) - (xy 9.181399 -1.695586) - (xy 9.1814 -1.695586) - (xy 9.178273 -1.696157) - (xy 9.095405 -1.7005) - (xy 8.934271 -1.7005) - (xy 8.857232 -1.69464) - (xy 8.745779 -1.686162) - (xy 8.745773 -1.686161) - (xy 8.742025 -1.685876) - (xy 8.489986 -1.627457) - (xy 8.249684 -1.531586) - (xy 8.026648 -1.40047) - (xy 8.02373 -1.398094) - (xy 8.023728 -1.398093) - (xy 7.923332 -1.316358) - (xy 7.826011 -1.237126) - (xy 7.823491 -1.234342) - (xy 7.823489 -1.23434) - (xy 7.654914 -1.048101) - (xy 7.654911 -1.048097) - (xy 7.652391 -1.045313) - (xy 7.509781 -0.829445) - (xy 7.401466 -0.59449) - (xy 7.329935 -0.345854) - (xy 7.323892 -0.299) - (xy 7.322258 -0.286335) - (xy 7.296062 -0.231042) - (xy 7.242368 -0.201705) - (xy 7.224071 -0.2) - (xy 2.5955 -0.2) - (xy 2.537309 -0.218907) - (xy 2.501345 -0.268407) - (xy 2.4965 -0.299) - (xy 2.4965 -2.251757) - (xy 2.902 -2.251757) - (xy 2.902 -1.701893) - (xy 2.902609 -1.694154) - (xy 2.920603 -1.580543) - (xy 2.925358 -1.565908) - (xy 2.975812 -1.466886) - (xy 2.984854 -1.454441) - (xy 3.063441 -1.375854) - (xy 3.075886 -1.366812) - (xy 3.174908 -1.316358) - (xy 3.189543 -1.311603) - (xy 3.303154 -1.293609) - (xy 3.310893 -1.293) - (xy 3.85332 -1.293) - (xy 3.866005 -1.297122) - (xy 3.869 -1.301243) - (xy 3.869 -2.24432) - (xy 3.866583 -2.251757) - (xy 4.269 -2.251757) - (xy 4.269 -1.30868) - (xy 4.273122 -1.295995) - (xy 4.277243 -1.293) - (xy 4.827107 -1.293) - (xy 4.834846 -1.293609) - (xy 4.948457 -1.311603) - (xy 4.963092 -1.316358) - (xy 5.062114 -1.366812) - (xy 5.074559 -1.375854) - (xy 5.153146 -1.454441) - (xy 5.162188 -1.466886) - (xy 5.212642 -1.565908) - (xy 5.217397 -1.580543) - (xy 5.235391 -1.694154) - (xy 5.236 -1.701893) - (xy 5.236 -2.24432) - (xy 5.231878 -2.257005) - (xy 5.227757 -2.26) - (xy 4.28468 -2.26) - (xy 4.271995 -2.255878) - (xy 4.269 -2.251757) - (xy 3.866583 -2.251757) - (xy 3.864878 -2.257005) - (xy 3.860757 -2.26) - (xy 2.91768 -2.26) - (xy 2.904995 -2.255878) - (xy 2.902 -2.251757) - (xy 2.4965 -2.251757) - (xy 2.4965 -3.218107) - (xy 2.902 -3.218107) - (xy 2.902 -2.67568) - (xy 2.906122 -2.662995) - (xy 2.910243 -2.66) - (xy 3.85332 -2.66) - (xy 3.866005 -2.664122) - (xy 3.869 -2.668243) - (xy 3.869 -3.61132) - (xy 3.866583 -3.618757) - (xy 4.269 -3.618757) - (xy 4.269 -2.67568) - (xy 4.273122 -2.662995) - (xy 4.277243 -2.66) - (xy 5.22032 -2.66) - (xy 5.233005 -2.664122) - (xy 5.236 -2.668243) - (xy 5.236 -3.218107) - (xy 5.235391 -3.225846) - (xy 5.217397 -3.339457) - (xy 5.212642 -3.354092) - (xy 5.162188 -3.453114) - (xy 5.153146 -3.465559) - (xy 5.074559 -3.544146) - (xy 5.062114 -3.553188) - (xy 4.963092 -3.603642) - (xy 4.948457 -3.608397) - (xy 4.834846 -3.626391) - (xy 4.827107 -3.627) - (xy 4.28468 -3.627) - (xy 4.271995 -3.622878) - (xy 4.269 -3.618757) - (xy 3.866583 -3.618757) - (xy 3.864878 -3.624005) - (xy 3.860757 -3.627) - (xy 3.310893 -3.627) - (xy 3.303154 -3.626391) - (xy 3.189543 -3.608397) - (xy 3.174908 -3.603642) - (xy 3.075886 -3.553188) - (xy 3.063441 -3.544146) - (xy 2.984854 -3.465559) - (xy 2.975812 -3.453114) - (xy 2.925358 -3.354092) - (xy 2.920603 -3.339457) - (xy 2.902609 -3.225846) - (xy 2.902 -3.218107) - (xy 2.4965 -3.218107) - (xy 2.4965 -5.762) - (xy 3.1015 -5.762) - (xy 3.1015 -4.238) - (xy 3.117143 -4.159359) - (xy 3.16169 -4.09269) - (xy 3.1698 -4.087271) - (xy 3.195024 -4.070417) - (xy 3.228359 -4.048143) - (xy 3.237922 -4.046241) - (xy 3.237924 -4.04624) - (xy 3.2632 -4.041213) - (xy 3.307 -4.0325) - (xy 4.831 -4.0325) - (xy 4.8748 -4.041213) - (xy 4.900076 -4.04624) - (xy 4.900078 -4.046241) - (xy 4.909641 -4.048143) - (xy 4.942976 -4.070417) - (xy 4.9682 -4.087271) - (xy 4.97631 -4.09269) - (xy 5.020857 -4.159359) - (xy 5.0365 -4.238) - (xy 5.0365 -5.762) - (xy 5.02769 -5.806288) - (xy 5.02276 -5.831076) - (xy 5.022759 -5.831078) - (xy 5.020857 -5.840641) - (xy 4.97631 -5.90731) - (xy 4.909641 -5.951857) - (xy 4.900078 -5.953759) - (xy 4.900076 -5.95376) - (xy 4.8748 -5.958787) - (xy 4.831 -5.9675) - (xy 3.307 -5.9675) - (xy 3.2632 -5.958787) - (xy 3.237924 -5.95376) - (xy 3.237922 -5.953759) - (xy 3.228359 -5.951857) - (xy 3.16169 -5.90731) - (xy 3.117143 -5.840641) - (xy 3.115241 -5.831078) - (xy 3.11524 -5.831076) - (xy 3.11031 -5.806288) - (xy 3.1015 -5.762) - (xy 2.4965 -5.762) - (xy 2.4965 -5.969) - (xy 9.4275 -5.969) - (xy 9.448132 -5.812285) - (xy 9.508622 -5.66625) - (xy 9.604847 -5.540847) - (xy 9.61 -5.536893) - (xy 9.670767 -5.490265) - (xy 9.705423 -5.439841) - (xy 9.7095 -5.411723) - (xy 9.7095 -4.662636) - (xy 9.689042 -4.602369) - (xy 9.635622 -4.53275) - (xy 9.575132 -4.386715) - (xy 9.5545 -4.23) - (xy 9.575132 -4.073285) - (xy 9.635622 -3.92725) - (xy 9.731847 -3.801847) - (xy 9.85725 -3.705622) - (xy 10.003285 -3.645132) - (xy 10.16 -3.6245) - (xy 10.316715 -3.645132) - (xy 10.46275 -3.705622) - (xy 10.588153 -3.801847) - (xy 10.684378 -3.92725) - (xy 10.744868 -4.073285) - (xy 10.7655 -4.23) - (xy 10.744868 -4.386715) - (xy 10.684378 -4.53275) - (xy 10.630958 -4.602369) - (xy 10.6105 -4.662636) - (xy 10.6105 -5.775026) - (xy 10.613873 -5.800649) - (xy 10.615384 -5.806288) - (xy 10.617868 -5.812285) - (xy 10.6385 -5.969) - (xy 10.617868 -6.125715) - (xy 10.557378 -6.27175) - (xy 10.461153 -6.397153) - (xy 10.33575 -6.493378) - (xy 10.189715 -6.553868) - (xy 10.051063 -6.572122) - (xy 10.039434 -6.573653) - (xy 10.033 -6.5745) - (xy 10.026566 -6.573653) - (xy 10.014937 -6.572122) - (xy 9.876285 -6.553868) - (xy 9.73025 -6.493378) - (xy 9.604847 -6.397153) - (xy 9.508622 -6.27175) - (xy 9.448132 -6.125715) - (xy 9.4275 -5.969) - (xy 2.4965 -5.969) - (xy 2.4965 -8.302) - (xy 3.1015 -8.302) - (xy 3.1015 -6.778) - (xy 3.117143 -6.699359) - (xy 3.16169 -6.63269) - (xy 3.228359 -6.588143) - (xy 3.237922 -6.586241) - (xy 3.237924 -6.58624) - (xy 3.2632 -6.581213) - (xy 3.307 -6.5725) - (xy 4.831 -6.5725) - (xy 4.8748 -6.581213) - (xy 4.900076 -6.58624) - (xy 4.900078 -6.586241) - (xy 4.909641 -6.588143) - (xy 4.97631 -6.63269) - (xy 5.020857 -6.699359) - (xy 5.0365 -6.778) - (xy 5.0365 -7.366) - (xy 8.1575 -7.366) - (xy 8.178132 -7.209285) - (xy 8.238622 -7.06325) - (xy 8.334847 -6.937847) - (xy 8.46025 -6.841622) - (xy 8.606285 -6.781132) - (xy 8.763 -6.7605) - (xy 8.919715 -6.781132) - (xy 9.06575 -6.841622) - (xy 9.096647 -6.86533) - (xy 9.135369 -6.895042) - (xy 9.195636 -6.9155) - (xy 10.948389 -6.9155) - (xy 11.00658 -6.896593) - (xy 11.018393 -6.886504) - (xy 11.458504 -6.446393) - (xy 11.486281 -6.391876) - (xy 11.4875 -6.376389) - (xy 11.4875 -2.591636) - (xy 11.467042 -2.531369) - (xy 11.413622 -2.46175) - (xy 11.353132 -2.315715) - (xy 11.3325 -2.159) - (xy 11.353132 -2.002285) - (xy 11.413622 -1.85625) - (xy 11.509847 -1.730847) - (xy 11.63525 -1.634622) - (xy 11.650496 -1.628307) - (xy 11.765808 -1.580543) - (xy 11.781285 -1.574132) - (xy 11.938 -1.5535) - (xy 12.094715 -1.574132) - (xy 12.110193 -1.580543) - (xy 12.225504 -1.628307) - (xy 12.24075 -1.634622) - (xy 12.366153 -1.730847) - (xy 12.462378 -1.85625) - (xy 12.522868 -2.002285) - (xy 12.5435 -2.159) - (xy 12.522868 -2.315715) - (xy 12.462378 -2.46175) - (xy 12.408958 -2.531369) - (xy 12.3885 -2.591636) - (xy 12.3885 -6.572122) - (xy 12.389186 -6.583758) - (xy 12.392405 -6.610959) - (xy 12.393275 -6.618307) - (xy 12.382656 -6.676453) - (xy 12.382151 -6.679485) - (xy 12.380383 -6.691249) - (xy 12.373364 -6.737935) - (xy 12.370239 -6.744443) - (xy 12.368942 -6.751545) - (xy 12.364291 -6.7605) - (xy 12.341707 -6.803975) - (xy 12.340317 -6.806756) - (xy 12.314735 -6.860029) - (xy 12.310632 -6.864468) - (xy 12.309108 -6.866729) - (xy 12.306507 -6.871736) - (xy 12.301475 -6.877628) - (xy 12.263048 -6.916055) - (xy 12.260354 -6.918858) - (xy 12.227822 -6.954051) - (xy 12.222798 -6.959486) - (xy 12.216923 -6.962899) - (xy 12.210042 -6.969061) - (xy 11.517081 -7.662023) - (xy 11.509339 -7.670737) - (xy 11.492394 -7.692232) - (xy 11.492393 -7.692233) - (xy 11.487811 -7.698045) - (xy 11.461544 -7.7162) - (xy 11.439217 -7.731631) - (xy 11.436688 -7.733438) - (xy 11.395097 -7.764157) - (xy 11.395095 -7.764158) - (xy 11.389142 -7.768555) - (xy 11.382332 -7.770946) - (xy 11.376392 -7.775052) - (xy 11.369339 -7.777283) - (xy 11.369334 -7.777285) - (xy 11.331559 -7.789231) - (xy 11.320029 -7.792878) - (xy 11.317144 -7.79384) - (xy 11.261352 -7.813432) - (xy 11.255312 -7.813669) - (xy 11.252633 -7.814191) - (xy 11.247256 -7.815892) - (xy 11.241635 -7.816334) - (xy 11.241632 -7.816335) - (xy 11.241546 -7.816341) - (xy 11.239531 -7.8165) - (xy 11.185213 -7.8165) - (xy 11.181327 -7.816576) - (xy 11.13341 -7.818459) - (xy 11.133407 -7.818459) - (xy 11.126016 -7.818749) - (xy 11.119449 -7.817008) - (xy 11.110224 -7.8165) - (xy 9.195636 -7.8165) - (xy 9.135369 -7.836958) - (xy 9.070899 -7.886427) - (xy 9.06575 -7.890378) - (xy 8.919715 -7.950868) - (xy 8.763 -7.9715) - (xy 8.606285 -7.950868) - (xy 8.46025 -7.890378) - (xy 8.334847 -7.794153) - (xy 8.238622 -7.66875) - (xy 8.178132 -7.522715) - (xy 8.1575 -7.366) - (xy 5.0365 -7.366) - (xy 5.0365 -8.302) - (xy 5.020857 -8.380641) - (xy 4.97631 -8.44731) - (xy 4.909641 -8.491857) - (xy 4.900078 -8.493759) - (xy 4.900076 -8.49376) - (xy 4.8748 -8.498787) - (xy 4.831 -8.5075) - (xy 3.307 -8.5075) - (xy 3.2632 -8.498787) - (xy 3.237924 -8.49376) - (xy 3.237922 -8.493759) - (xy 3.228359 -8.491857) - (xy 3.16169 -8.44731) - (xy 3.117143 -8.380641) - (xy 3.1015 -8.302) - (xy 2.4965 -8.302) - (xy 2.4965 -9.701) - (xy 2.515407 -9.759191) - (xy 2.564907 -9.795155) - (xy 2.5955 -9.8) - (xy 7.22536 -9.8) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 7.283551 -9.781093) - (xy 7.319515 -9.731593) - (xy 7.322841 -9.718276) - (xy 7.347424 -9.579563) - (xy 7.347426 -9.579556) - (xy 7.348081 -9.575859) - (xy 7.431244 -9.330869) - (xy 7.432974 -9.327538) - (xy 7.432976 -9.327534) - (xy 7.516151 -9.167417) - (xy 7.550508 -9.101277) - (xy 7.703128 -8.892366) - (xy 7.885591 -8.708945) - (xy 7.88861 -8.706715) - (xy 7.888616 -8.70671) - (xy 8.036311 -8.597622) - (xy 8.0937 -8.555234) - (xy 8.210542 -8.49376) - (xy 8.319337 -8.436519) - (xy 8.319342 -8.436517) - (xy 8.322664 -8.434769) - (xy 8.326219 -8.433542) - (xy 8.32622 -8.433541) - (xy 8.422458 -8.40031) - (xy 8.567216 -8.350325) - (xy 8.570913 -8.34965) - (xy 8.57092 -8.349648) - (xy 8.782393 -8.311027) - (xy 8.821727 -8.303843) - (xy 8.904595 -8.2995) - (xy 9.065729 -8.2995) - (xy 9.142768 -8.30536) - (xy 9.254221 -8.313838) - (xy 9.254227 -8.313839) - (xy 9.257975 -8.314124) - (xy 9.510014 -8.372543) - (xy 9.579613 -8.40031) - (xy 9.69604 -8.44676) - (xy 9.750316 -8.468414) - (xy 9.973352 -8.59953) - (xy 10.01618 -8.634397) - (xy 10.171074 -8.760501) - (xy 10.173989 -8.762874) - (xy 10.291199 -8.892366) - (xy 10.345086 -8.951899) - (xy 10.345089 -8.951903) - (xy 10.347609 -8.954687) - (xy 10.490219 -9.170555) - (xy 10.598534 -9.40551) - (xy 10.670065 -9.654146) - (xy 10.677743 -9.713666) - (xy 10.703938 -9.768958) - (xy 10.757632 -9.798295) - (xy 10.775929 -9.8) - (xy 13.701 -9.8) - (xy 13.759191 -9.781093) - (xy 13.795155 -9.731593) - (xy 13.8 -9.701) - (xy 13.8 -4.563329) - (xy 13.781093 -4.505138) - (xy 13.731593 -4.469174) - (xy 13.670407 -4.469174) - (xy 13.618685 -4.508327) - (xy 13.600729 -4.5352) - (xy 13.59531 -4.54331) - (xy 13.528641 -4.587857) - (xy 13.519078 -4.589759) - (xy 13.519076 -4.58976) - (xy 13.4938 -4.594787) - (xy 13.45 -4.6035) - (xy 12.720047 -4.6035) - (xy 12.661856 -4.622407) - (xy 12.625892 -4.671907) - (xy 12.625892 -4.733093) - (xy 12.652844 -4.775196) - (xy 12.674486 -4.795202) - (xy 12.677899 -4.801077) - (xy 12.684061 -4.807958) - (xy 12.926018 -5.049915) - (xy 12.934724 -5.057651) - (xy 12.962045 -5.079189) - (xy 12.995655 -5.127819) - (xy 12.997436 -5.13031) - (xy 13.028158 -5.171903) - (xy 13.02816 -5.171907) - (xy 13.032555 -5.177857) - (xy 13.034947 -5.184669) - (xy 13.039052 -5.190608) - (xy 13.056875 -5.246965) - (xy 13.057843 -5.249868) - (xy 13.077431 -5.305648) - (xy 13.077668 -5.311681) - (xy 13.078191 -5.314366) - (xy 13.079892 -5.319744) - (xy 13.0805 -5.327469) - (xy 13.0805 -5.381797) - (xy 13.080576 -5.385684) - (xy 13.080592 -5.386083) - (xy 13.082749 -5.440984) - (xy 13.081008 -5.447551) - (xy 13.0805 -5.456776) - (xy 13.0805 -5.572041) - (xy 13.099407 -5.630232) - (xy 13.134045 -5.657538) - (xy 13.133641 -5.658143) - (xy 13.141331 -5.663281) - (xy 13.141334 -5.663283) - (xy 13.20031 -5.70269) - (xy 13.244857 -5.769359) - (xy 13.2605 -5.848) - (xy 13.2605 -6.69776) - (xy 13.279407 -6.755951) - (xy 13.293429 -6.769972) - (xy 13.293053 -6.770348) - (xy 13.377146 -6.854441) - (xy 13.386188 -6.866886) - (xy 13.436642 -6.965908) - (xy 13.441397 -6.980543) - (xy 13.459391 -7.094154) - (xy 13.46 -7.101893) - (xy 13.46 -7.45732) - (xy 13.455878 -7.470005) - (xy 13.451757 -7.473) - (xy 12.529 -7.473) - (xy 12.470809 -7.491907) - (xy 12.434845 -7.541407) - (xy 12.43 -7.572) - (xy 12.43 -8.63732) - (xy 12.427583 -8.644757) - (xy 12.83 -8.644757) - (xy 12.83 -7.88868) - (xy 12.834122 -7.875995) - (xy 12.838243 -7.873) - (xy 13.44432 -7.873) - (xy 13.457005 -7.877122) - (xy 13.46 -7.881243) - (xy 13.46 -8.244107) - (xy 13.459391 -8.251846) - (xy 13.441397 -8.365457) - (xy 13.436642 -8.380092) - (xy 13.386188 -8.479114) - (xy 13.377146 -8.491559) - (xy 13.298559 -8.570146) - (xy 13.286114 -8.579188) - (xy 13.187092 -8.629642) - (xy 13.172457 -8.634397) - (xy 13.058846 -8.652391) - (xy 13.051107 -8.653) - (xy 12.84568 -8.653) - (xy 12.832995 -8.648878) - (xy 12.83 -8.644757) - (xy 12.427583 -8.644757) - (xy 12.425878 -8.650005) - (xy 12.421757 -8.653) - (xy 12.208893 -8.653) - (xy 12.201154 -8.652391) - (xy 12.087543 -8.634397) - (xy 12.072908 -8.629642) - (xy 11.973886 -8.579188) - (xy 11.961441 -8.570146) - (xy 11.877348 -8.486053) - (xy 11.875723 -8.487678) - (xy 11.835358 -8.458347) - (xy 11.80476 -8.4535) - (xy 10.945 -8.4535) - (xy 10.90155 -8.444857) - (xy 10.875924 -8.43976) - (xy 10.875922 -8.439759) - (xy 10.866359 -8.437857) - (xy 10.79969 -8.39331) - (xy 10.755143 -8.326641) - (xy 10.753241 -8.317078) - (xy 10.75324 -8.317076) - (xy 10.750608 -8.303843) - (xy 10.7395 -8.248) - (xy 10.7395 -7.9155) - (xy 10.720593 -7.857309) - (xy 10.671093 -7.821345) - (xy 10.6405 -7.8165) - (xy 9.195636 -7.8165) - (xy 9.135369 -7.836958) - (xy 9.070899 -7.886427) - (xy 9.06575 -7.890378) - (xy 8.919715 -7.950868) - (xy 8.763 -7.9715) - (xy 8.606285 -7.950868) - (xy 8.46025 -7.890378) - (xy 8.455101 -7.886427) - (xy 8.390631 -7.836958) - (xy 8.330364 -7.8165) - (xy 7.97461 -7.8165) - (xy 7.916419 -7.835407) - (xy 7.904606 -7.845497) - (xy 7.790996 -7.959108) - (xy 7.763219 -8.013624) - (xy 7.762 -8.029111) - (xy 7.762 -8.255) - (xy 7.752171 -8.304414) - (xy 7.74826 -8.324076) - (xy 7.748259 -8.324078) - (xy 7.746357 -8.333641) - (xy 7.70181 -8.40031) - (xy 7.635141 -8.444857) - (xy 7.625578 -8.446759) - (xy 7.625576 -8.44676) - (xy 7.596456 -8.452552) - (xy 7.5565 -8.4605) - (xy 6.1595 -8.4605) - (xy 6.119544 -8.452552) - (xy 6.090424 -8.44676) - (xy 6.090422 -8.446759) - (xy 6.080859 -8.444857) - (xy 6.01419 -8.40031) - (xy 5.969643 -8.333641) - (xy 5.967741 -8.324079) - (xy 5.966926 -8.322112) - (xy 5.927189 -8.275588) - (xy 5.875463 -8.261) - (xy 5.125903 -8.261) - (xy 5.067712 -8.279907) - (xy 5.031748 -8.329407) - (xy 5.028805 -8.340685) - (xy 5.023877 -8.365457) - (xy 5.020857 -8.380641) - (xy 4.97631 -8.44731) - (xy 4.909641 -8.491857) - (xy 4.900078 -8.493759) - (xy 4.900076 -8.49376) - (xy 4.8748 -8.498787) - (xy 4.831 -8.5075) - (xy 3.307 -8.5075) - (xy 3.2632 -8.498787) - (xy 3.237924 -8.49376) - (xy 3.237922 -8.493759) - (xy 3.228359 -8.491857) - (xy 3.16169 -8.44731) - (xy 3.117143 -8.380641) - (xy 3.115241 -8.371078) - (xy 3.11524 -8.371076) - (xy 3.111357 -8.351554) - (xy 3.1015 -8.302) - (xy 3.1015 -6.778) - (xy 3.117143 -6.699359) - (xy 3.16169 -6.63269) - (xy 3.228359 -6.588143) - (xy 3.237922 -6.586241) - (xy 3.237924 -6.58624) - (xy 3.2632 -6.581213) - (xy 3.307 -6.5725) - (xy 4.831 -6.5725) - (xy 4.8748 -6.581213) - (xy 4.900076 -6.58624) - (xy 4.900078 -6.586241) - (xy 4.909641 -6.588143) - (xy 4.97631 -6.63269) - (xy 5.020857 -6.699359) - (xy 5.0365 -6.778) - (xy 5.0365 -7.261) - (xy 5.055407 -7.319191) - (xy 5.104907 -7.355155) - (xy 5.1355 -7.36) - (xy 5.875463 -7.36) - (xy 5.933654 -7.341093) - (xy 5.966926 -7.298888) - (xy 5.967741 -7.296921) - (xy 5.969643 -7.287359) - (xy 6.01419 -7.22069) - (xy 6.080859 -7.176143) - (xy 6.090422 -7.174241) - (xy 6.090424 -7.17424) - (xy 6.1157 -7.169213) - (xy 6.1595 -7.1605) - (xy 7.274388 -7.1605) - (xy 7.332579 -7.141593) - (xy 7.344392 -7.131504) - (xy 7.405915 -7.069981) - (xy 7.413656 -7.061269) - (xy 7.435189 -7.033955) - (xy 7.441276 -7.029748) - (xy 7.441277 -7.029747) - (xy 7.483783 -7.000369) - (xy 7.486312 -6.998562) - (xy 7.527903 -6.967843) - (xy 7.533858 -6.963445) - (xy 7.540668 -6.961054) - (xy 7.546608 -6.956948) - (xy 7.553661 -6.954717) - (xy 7.553666 -6.954715) - (xy 7.58973 -6.94331) - (xy 7.602971 -6.939122) - (xy 7.605856 -6.93816) - (xy 7.661648 -6.918568) - (xy 7.667688 -6.918331) - (xy 7.670367 -6.917809) - (xy 7.675744 -6.916108) - (xy 7.681365 -6.915666) - (xy 7.681368 -6.915665) - (xy 7.681454 -6.915659) - (xy 7.683469 -6.9155) - (xy 7.737787 -6.9155) - (xy 7.741673 -6.915424) - (xy 7.78959 -6.913541) - (xy 7.789593 -6.913541) - (xy 7.796984 -6.913251) - (xy 7.803551 -6.914992) - (xy 7.812776 -6.9155) - (xy 8.330364 -6.9155) - (xy 8.390632 -6.895042) - (xy 8.46025 -6.841622) - (xy 8.606285 -6.781132) - (xy 8.763 -6.7605) - (xy 8.919715 -6.781132) - (xy 9.06575 -6.841622) - (xy 9.135368 -6.895042) - (xy 9.195636 -6.9155) - (xy 10.442696 -6.9155) - (xy 10.500887 -6.896593) - (xy 10.536851 -6.847093) - (xy 10.540103 -6.805783) - (xy 10.540914 -6.805719) - (xy 10.54 -6.794107) - (xy 10.54 -6.537403) - (xy 10.521093 -6.479212) - (xy 10.471593 -6.443248) - (xy 10.410407 -6.443248) - (xy 10.380737 -6.458859) - (xy 10.33575 -6.493378) - (xy 10.189715 -6.553868) - (xy 10.060737 -6.570848) - (xy 10.039434 -6.573653) - (xy 10.033 -6.5745) - (xy 10.026566 -6.573653) - (xy 10.005263 -6.570848) - (xy 9.876285 -6.553868) - (xy 9.73025 -6.493378) - (xy 9.725101 -6.489427) - (xy 9.660631 -6.439958) - (xy 9.600364 -6.4195) - (xy 9.388918 -6.4195) - (xy 9.343973 -6.43029) - (xy 9.28429 -6.4607) - (xy 9.284289 -6.4607) - (xy 9.27735 -6.464236) - (xy 9.269656 -6.465455) - (xy 9.269655 -6.465455) - (xy 9.181665 -6.479391) - (xy 9.181663 -6.479391) - (xy 9.177819 -6.48) - (xy 8.602181 -6.48) - (xy 8.598337 -6.479391) - (xy 8.598335 -6.479391) - (xy 8.510345 -6.465455) - (xy 8.510344 -6.465455) - (xy 8.50265 -6.464236) - (xy 8.495711 -6.4607) - (xy 8.49571 -6.4607) - (xy 8.391321 -6.407511) - (xy 8.391319 -6.40751) - (xy 8.384382 -6.403975) - (xy 8.301903 -6.321496) - (xy 8.247386 -6.293719) - (xy 8.231899 -6.2925) - (xy 7.854685 -6.2925) - (xy 7.796494 -6.311407) - (xy 7.76053 -6.360907) - (xy 7.757587 -6.372185) - (xy 7.75262 -6.397153) - (xy 7.746357 -6.428641) - (xy 7.70181 -6.49531) - (xy 7.635141 -6.539857) - (xy 7.625578 -6.541759) - (xy 7.625576 -6.54176) - (xy 7.6003 -6.546787) - (xy 7.5565 -6.5555) - (xy 6.1595 -6.5555) - (xy 6.1157 -6.546787) - (xy 6.090424 -6.54176) - (xy 6.090422 -6.541759) - (xy 6.080859 -6.539857) - (xy 6.01419 -6.49531) - (xy 5.969643 -6.428641) - (xy 5.967741 -6.419079) - (xy 5.966926 -6.417112) - (xy 5.927189 -6.370588) - (xy 5.875463 -6.356) - (xy 5.006377 -6.356) - (xy 4.994741 -6.356686) - (xy 4.993268 -6.35686) - (xy 4.960192 -6.360775) - (xy 4.952915 -6.359446) - (xy 4.952912 -6.359446) - (xy 4.922248 -6.353846) - (xy 4.902065 -6.350159) - (xy 4.899029 -6.349654) - (xy 4.840565 -6.340864) - (xy 4.834057 -6.337739) - (xy 4.826955 -6.336442) - (xy 4.820389 -6.333031) - (xy 4.820388 -6.333031) - (xy 4.774525 -6.309207) - (xy 4.771746 -6.307818) - (xy 4.718471 -6.282235) - (xy 4.714033 -6.278133) - (xy 4.711768 -6.276607) - (xy 4.706764 -6.274007) - (xy 4.702479 -6.270348) - (xy 4.702476 -6.270346) - (xy 4.702348 -6.270237) - (xy 4.702337 -6.270227) - (xy 4.700871 -6.268975) - (xy 4.662433 -6.230537) - (xy 4.659631 -6.227844) - (xy 4.619014 -6.190298) - (xy 4.615602 -6.184423) - (xy 4.609444 -6.177548) - (xy 4.428392 -5.996496) - (xy 4.373875 -5.968719) - (xy 4.358388 -5.9675) - (xy 3.307 -5.9675) - (xy 3.2632 -5.958787) - (xy 3.237924 -5.95376) - (xy 3.237922 -5.953759) - (xy 3.228359 -5.951857) - (xy 3.16169 -5.90731) - (xy 3.117143 -5.840641) - (xy 3.115241 -5.831078) - (xy 3.11524 -5.831076) - (xy 3.110213 -5.8058) - (xy 3.1015 -5.762) - (xy 3.1015 -4.238) - (xy 3.117143 -4.159359) - (xy 3.16169 -4.09269) - (xy 3.1698 -4.087271) - (xy 3.195024 -4.070417) - (xy 3.228359 -4.048143) - (xy 3.237922 -4.046241) - (xy 3.237924 -4.04624) - (xy 3.2632 -4.041213) - (xy 3.307 -4.0325) - (xy 4.831 -4.0325) - (xy 4.8748 -4.041213) - (xy 4.900076 -4.04624) - (xy 4.900078 -4.046241) - (xy 4.909641 -4.048143) - (xy 4.942976 -4.070417) - (xy 4.9682 -4.087271) - (xy 4.97631 -4.09269) - (xy 5.020857 -4.159359) - (xy 5.0365 -4.238) - (xy 5.0365 -5.289389) - (xy 5.055407 -5.34758) - (xy 5.065496 -5.359393) - (xy 5.132107 -5.426004) - (xy 5.186624 -5.453781) - (xy 5.202111 -5.455) - (xy 5.875463 -5.455) - (xy 5.933654 -5.436093) - (xy 5.966926 -5.393888) - (xy 5.967741 -5.391921) - (xy 5.969643 -5.382359) - (xy 6.01419 -5.31569) - (xy 6.080859 -5.271143) - (xy 6.090422 -5.269241) - (xy 6.090424 -5.26924) - (xy 6.1157 -5.264213) - (xy 6.1595 -5.2555) - (xy 6.4355 -5.2555) - (xy 6.493691 -5.236593) - (xy 6.529655 -5.187093) - (xy 6.5345 -5.1565) - (xy 6.5345 -4.460727) - (xy 6.515593 -4.402536) - (xy 6.491361 -4.381834) - (xy 6.492627 -4.380092) - (xy 6.486321 -4.375511) - (xy 6.479382 -4.371975) - (xy 6.385525 -4.278118) - (xy 6.38199 -4.271181) - (xy 6.381989 -4.271179) - (xy 6.362657 -4.233237) - (xy 6.325264 -4.15985) - (xy 6.324045 -4.152156) - (xy 6.324045 -4.152155) - (xy 6.310109 -4.064165) - (xy 6.3095 -4.060319) - (xy 6.3095 -3.559681) - (xy 6.325264 -3.46015) - (xy 6.3288 -3.453211) - (xy 6.3288 -3.45321) - (xy 6.379304 -3.354092) - (xy 6.385525 -3.341882) - (xy 6.479382 -3.248025) - (xy 6.48632 -3.24449) - (xy 6.486324 -3.244487) - (xy 6.535204 -3.219581) - (xy 6.578468 -3.176316) - (xy 6.588039 -3.115884) - (xy 6.560261 -3.061368) - (xy 6.526702 -3.039324) - (xy 6.434046 -3.002639) - (xy 6.423221 -2.996688) - (xy 6.3068 -2.912103) - (xy 6.297795 -2.903646) - (xy 6.206069 -2.79277) - (xy 6.199448 -2.782337) - (xy 6.138179 -2.652133) - (xy 6.134362 -2.640384) - (xy 6.110874 -2.517257) - (xy 6.11 -2.508005) - (xy 6.11 -2.45068) - (xy 6.114122 -2.437995) - (xy 6.118243 -2.435) - (xy 7.84432 -2.435) - (xy 7.857005 -2.439122) - (xy 7.86 -2.443243) - (xy 7.86 -2.490225) - (xy 7.85961 -2.496413) - (xy 7.846185 -2.602692) - (xy 7.843112 -2.614658) - (xy 7.790137 -2.748457) - (xy 7.784188 -2.759279) - (xy 7.725717 -2.839757) - (xy 10.145 -2.839757) - (xy 10.145 -2.651893) - (xy 10.145609 -2.644154) - (xy 10.163603 -2.530543) - (xy 10.168358 -2.515908) - (xy 10.218812 -2.416886) - (xy 10.227854 -2.404441) - (xy 10.306441 -2.325854) - (xy 10.318886 -2.316812) - (xy 10.417908 -2.266358) - (xy 10.432543 -2.261603) - (xy 10.546154 -2.243609) - (xy 10.553893 -2.243) - (xy 10.78432 -2.243) - (xy 10.797005 -2.247122) - (xy 10.8 -2.251243) - (xy 10.8 -2.83232) - (xy 10.795878 -2.845005) - (xy 10.791757 -2.848) - (xy 10.16068 -2.848) - (xy 10.147995 -2.843878) - (xy 10.145 -2.839757) - (xy 7.725717 -2.839757) - (xy 7.699603 -2.8757) - (xy 7.691146 -2.884705) - (xy 7.58027 -2.976431) - (xy 7.569837 -2.983052) - (xy 7.441148 -3.043608) - (xy 7.396546 -3.085492) - (xy 7.385081 -3.145594) - (xy 7.411132 -3.200956) - (xy 7.438353 -3.221394) - (xy 7.464736 -3.234838) - (xy 7.483679 -3.244489) - (xy 7.483681 -3.24449) - (xy 7.490618 -3.248025) - (xy 7.584475 -3.341882) - (xy 7.590697 -3.354092) - (xy 7.6412 -3.45321) - (xy 7.6412 -3.453211) - (xy 7.644736 -3.46015) - (xy 7.6605 -3.559681) - (xy 7.6605 -4.060319) - (xy 7.659891 -4.064165) - (xy 7.645955 -4.152155) - (xy 7.645955 -4.152156) - (xy 7.644736 -4.15985) - (xy 7.607343 -4.233237) - (xy 7.588011 -4.271179) - (xy 7.58801 -4.271181) - (xy 7.584475 -4.278118) - (xy 7.490618 -4.371975) - (xy 7.483679 -4.375511) - (xy 7.477373 -4.380092) - (xy 7.479309 -4.382757) - (xy 7.446278 -4.415807) - (xy 7.4355 -4.460727) - (xy 7.4355 -5.1565) - (xy 7.454407 -5.214691) - (xy 7.503907 -5.250655) - (xy 7.5345 -5.2555) - (xy 7.5565 -5.2555) - (xy 7.6003 -5.264213) - (xy 7.625576 -5.26924) - (xy 7.625578 -5.269241) - (xy 7.635141 -5.271143) - (xy 7.70181 -5.31569) - (xy 7.723066 -5.347502) - (xy 7.771115 -5.385381) - (xy 7.805381 -5.3915) - (xy 8.231899 -5.3915) - (xy 8.29009 -5.372593) - (xy 8.301903 -5.362504) - (xy 8.384382 -5.280025) - (xy 8.391319 -5.27649) - (xy 8.391321 -5.276489) - (xy 8.449277 -5.246959) - (xy 8.50265 -5.219764) - (xy 8.510344 -5.218545) - (xy 8.510345 -5.218545) - (xy 8.598335 -5.204609) - (xy 8.598337 -5.204609) - (xy 8.602181 -5.204) - (xy 8.950889 -5.204) - (xy 9.00908 -5.185093) - (xy 9.045044 -5.135593) - (xy 9.045044 -5.074407) - (xy 9.020894 -5.034997) - (xy 8.919891 -4.933995) - (xy 8.865376 -4.906219) - (xy 8.849889 -4.905) - (xy 8.602181 -4.905) - (xy 8.598337 -4.904391) - (xy 8.598335 -4.904391) - (xy 8.510345 -4.890455) - (xy 8.510344 -4.890455) - (xy 8.50265 -4.889236) - (xy 8.495711 -4.8857) - (xy 8.49571 -4.8857) - (xy 8.391321 -4.832511) - (xy 8.391319 -4.83251) - (xy 8.384382 -4.828975) - (xy 8.290525 -4.735118) - (xy 8.28699 -4.728181) - (xy 8.286989 -4.728179) - (xy 8.2338 -4.62379) - (xy 8.230264 -4.61685) - (xy 8.229045 -4.609156) - (xy 8.229045 -4.609155) - (xy 8.217332 -4.5352) - (xy 8.2145 -4.517319) - (xy 8.2145 -4.016681) - (xy 8.230264 -3.91715) - (xy 8.2338 -3.910211) - (xy 8.2338 -3.91021) - (xy 8.286389 -3.807) - (xy 8.290525 -3.798882) - (xy 8.384382 -3.705025) - (xy 8.391319 -3.70149) - (xy 8.391321 -3.701489) - (xy 8.49571 -3.6483) - (xy 8.50265 -3.644764) - (xy 8.510344 -3.643545) - (xy 8.510345 -3.643545) - (xy 8.598335 -3.629609) - (xy 8.598337 -3.629609) - (xy 8.602181 -3.629) - (xy 9.177819 -3.629) - (xy 9.181663 -3.629609) - (xy 9.181665 -3.629609) - (xy 9.269655 -3.643545) - (xy 9.269656 -3.643545) - (xy 9.27735 -3.644764) - (xy 9.28429 -3.6483) - (xy 9.388679 -3.701489) - (xy 9.388681 -3.70149) - (xy 9.395618 -3.705025) - (xy 9.489475 -3.798882) - (xy 9.493612 -3.807) - (xy 9.501885 -3.823238) - (xy 9.515868 -3.850681) - (xy 9.559131 -3.893944) - (xy 9.619563 -3.903516) - (xy 9.67408 -3.875739) - (xy 9.682619 -3.866002) - (xy 9.731847 -3.801847) - (xy 9.85725 -3.705622) - (xy 10.003285 -3.645132) - (xy 10.058243 -3.637897) - (xy 10.071934 -3.636094) - (xy 10.127158 -3.609753) - (xy 10.156353 -3.555982) - (xy 10.156792 -3.522454) - (xy 10.145609 -3.451846) - (xy 10.145 -3.444107) - (xy 10.145 -3.26368) - (xy 10.149122 -3.250995) - (xy 10.153243 -3.248) - (xy 11.83932 -3.248) - (xy 11.852005 -3.252122) - (xy 11.855 -3.256243) - (xy 11.855 -3.448) - (xy 11.856995 -3.448) - (xy 11.869586 -3.500286) - (xy 11.916139 -3.53999) - (xy 11.953961 -3.5475) - (xy 12.288423 -3.5475) - (xy 12.346614 -3.528593) - (xy 12.370738 -3.503502) - (xy 12.40469 -3.45269) - (xy 12.471359 -3.408143) - (xy 12.480922 -3.406241) - (xy 12.480924 -3.40624) - (xy 12.5062 -3.401213) - (xy 12.55 -3.3925) - (xy 13.45 -3.3925) - (xy 13.4938 -3.401213) - (xy 13.519076 -3.40624) - (xy 13.519078 -3.406241) - (xy 13.528641 -3.408143) - (xy 13.59531 -3.45269) - (xy 13.618685 -3.487673) - (xy 13.666735 -3.525552) - (xy 13.727873 -3.527954) - (xy 13.778747 -3.493961) - (xy 13.8 -3.432671) - (xy 13.8 -2.663329) - (xy 13.781093 -2.605138) - (xy 13.731593 -2.569174) - (xy 13.670407 -2.569174) - (xy 13.618685 -2.608327) - (xy 13.600729 -2.6352) - (xy 13.59531 -2.64331) - (xy 13.528641 -2.687857) - (xy 13.519078 -2.689759) - (xy 13.519076 -2.68976) - (xy 13.4938 -2.694787) - (xy 13.45 -2.7035) - (xy 12.55 -2.7035) - (xy 12.5062 -2.694787) - (xy 12.480924 -2.68976) - (xy 12.480922 -2.689759) - (xy 12.471359 -2.687857) - (xy 12.40469 -2.64331) - (xy 12.402509 -2.646574) - (xy 12.36458 -2.627249) - (xy 12.304148 -2.63682) - (xy 12.288826 -2.646488) - (xy 12.288714 -2.646574) - (xy 12.24075 -2.683378) - (xy 12.094715 -2.743868) - (xy 11.938 -2.7645) - (xy 11.938354 -2.76719) - (xy 11.891048 -2.78256) - (xy 11.855084 -2.832061) - (xy 11.850878 -2.845005) - (xy 11.846757 -2.848) - (xy 11.21568 -2.848) - (xy 11.202995 -2.843878) - (xy 11.2 -2.839757) - (xy 11.2 -2.25868) - (xy 11.204122 -2.245995) - (xy 11.208243 -2.243) - (xy 11.234621 -2.243) - (xy 11.292812 -2.224093) - (xy 11.328776 -2.174593) - (xy 11.332773 -2.156926) - (xy 11.353132 -2.002285) - (xy 11.413622 -1.85625) - (xy 11.509847 -1.730847) - (xy 11.63525 -1.634622) - (xy 11.650496 -1.628307) - (xy 11.765808 -1.580543) - (xy 11.781285 -1.574132) - (xy 11.938 -1.5535) - (xy 12.094715 -1.574132) - (xy 12.100712 -1.576616) - (xy 12.234757 -1.632139) - (xy 12.234761 -1.632141) - (xy 12.24075 -1.634622) - (xy 12.241244 -1.635001) - (xy 12.287888 -1.6475) - (xy 12.288423 -1.6475) - (xy 12.346614 -1.628593) - (xy 12.370738 -1.603502) - (xy 12.40469 -1.55269) - (xy 12.471359 -1.508143) - (xy 12.480922 -1.506241) - (xy 12.480924 -1.50624) - (xy 12.5062 -1.501213) - (xy 12.55 -1.4925) - (xy 13.45 -1.4925) - (xy 13.4938 -1.501213) - (xy 13.519076 -1.50624) - (xy 13.519078 -1.506241) - (xy 13.528641 -1.508143) - (xy 13.59531 -1.55269) - (xy 13.618685 -1.587673) - (xy 13.666735 -1.625552) - (xy 13.727873 -1.627954) - (xy 13.778747 -1.593961) - (xy 13.8 -1.532671) - (xy 13.8 -0.299) - (xy 13.781093 -0.240809) - (xy 13.731593 -0.204845) - (xy 13.701 -0.2) - (xy 10.77464 -0.2) - (xy 10.716449 -0.218907) - (xy 10.680485 -0.268407) - (xy 10.677159 -0.281724) - (xy 10.652576 -0.420437) - (xy 10.652574 -0.420444) - (xy 10.651919 -0.424141) - (xy 10.568756 -0.669131) - (xy 10.487254 -0.826029) - (xy 10.451228 -0.895382) - (xy 10.451225 -0.895387) - (xy 10.449492 -0.898723) - (xy 10.296872 -1.107634) - (xy 10.114409 -1.291055) - (xy 10.11139 -1.293285) - (xy 10.111384 -1.29329) - (xy 9.90933 -1.442528) - (xy 9.9063 -1.444766) - (xy 9.739222 -1.532671) - (xy 9.680663 -1.563481) - (xy 9.680658 -1.563483) - (xy 9.677336 -1.565231) - (xy 9.654012 -1.573285) - (xy 9.497128 -1.627457) - (xy 9.432784 -1.649675) - (xy 9.429087 -1.65035) - (xy 9.42908 -1.650352) - (xy 9.181399 -1.695586) - (xy 9.1814 -1.695586) - (xy 9.178273 -1.696157) - (xy 9.095405 -1.7005) - (xy 8.934271 -1.7005) - (xy 8.857232 -1.69464) - (xy 8.745779 -1.686162) - (xy 8.745773 -1.686161) - (xy 8.742025 -1.685876) - (xy 8.489986 -1.627457) - (xy 8.486491 -1.626063) - (xy 8.486489 -1.626062) - (xy 8.406028 -1.593961) - (xy 8.249684 -1.531586) - (xy 8.026648 -1.40047) - (xy 8.02373 -1.398094) - (xy 8.023728 -1.398093) - (xy 7.923332 -1.316358) - (xy 7.826011 -1.237126) - (xy 7.823491 -1.234342) - (xy 7.823489 -1.23434) - (xy 7.654914 -1.048101) - (xy 7.654911 -1.048097) - (xy 7.652391 -1.045313) - (xy 7.509781 -0.829445) - (xy 7.401466 -0.59449) - (xy 7.329935 -0.345854) - (xy 7.323892 -0.299) - (xy 7.322258 -0.286335) - (xy 7.296062 -0.231042) - (xy 7.242368 -0.201705) - (xy 7.224071 -0.2) - (xy 0.299 -0.2) - (xy 0.240809 -0.218907) - (xy 0.204845 -0.268407) - (xy 0.2 -0.299) - (xy 0.2 -0.476) - (xy 0.218907 -0.534191) - (xy 0.268407 -0.570155) - (xy 0.299 -0.575) - (xy 2.552 -0.575) - (xy 2.552 -2.251757) - (xy 2.902 -2.251757) - (xy 2.902 -1.701893) - (xy 2.902609 -1.694154) - (xy 2.920603 -1.580543) - (xy 2.925358 -1.565908) - (xy 2.975812 -1.466886) - (xy 2.984854 -1.454441) - (xy 3.063441 -1.375854) - (xy 3.075886 -1.366812) - (xy 3.174908 -1.316358) - (xy 3.189543 -1.311603) - (xy 3.303154 -1.293609) - (xy 3.310893 -1.293) - (xy 3.85332 -1.293) - (xy 3.866005 -1.297122) - (xy 3.869 -1.301243) - (xy 3.869 -2.24432) - (xy 3.866583 -2.251757) - (xy 4.269 -2.251757) - (xy 4.269 -1.30868) - (xy 4.273122 -1.295995) - (xy 4.277243 -1.293) - (xy 4.827107 -1.293) - (xy 4.834846 -1.293609) - (xy 4.948457 -1.311603) - (xy 4.963092 -1.316358) - (xy 5.062114 -1.366812) - (xy 5.074559 -1.375854) - (xy 5.153146 -1.454441) - (xy 5.162188 -1.466886) - (xy 5.212642 -1.565908) - (xy 5.217397 -1.580543) - (xy 5.235391 -1.694154) - (xy 5.236 -1.701893) - (xy 5.236 -2.026757) - (xy 6.11 -2.026757) - (xy 6.11 -1.979775) - (xy 6.11039 -1.973587) - (xy 6.123815 -1.867308) - (xy 6.126888 -1.855342) - (xy 6.179863 -1.721543) - (xy 6.185812 -1.710721) - (xy 6.270397 -1.5943) - (xy 6.278854 -1.585295) - (xy 6.38973 -1.493569) - (xy 6.400163 -1.486948) - (xy 6.530367 -1.425679) - (xy 6.542116 -1.421862) - (xy 6.665243 -1.398374) - (xy 6.674495 -1.3975) - (xy 6.76932 -1.3975) - (xy 6.782005 -1.401622) - (xy 6.785 -1.405743) - (xy 6.785 -2.01932) - (xy 6.782583 -2.026757) - (xy 7.185 -2.026757) - (xy 7.185 -1.41318) - (xy 7.189122 -1.400495) - (xy 7.193243 -1.3975) - (xy 7.277725 -1.3975) - (xy 7.283913 -1.39789) - (xy 7.390192 -1.411315) - (xy 7.402158 -1.414388) - (xy 7.535957 -1.467363) - (xy 7.546779 -1.473312) - (xy 7.6632 -1.557897) - (xy 7.672205 -1.566354) - (xy 7.763931 -1.67723) - (xy 7.770552 -1.687663) - (xy 7.831821 -1.817867) - (xy 7.835638 -1.829616) - (xy 7.859126 -1.952743) - (xy 7.86 -1.961995) - (xy 7.86 -2.01932) - (xy 7.855878 -2.032005) - (xy 7.851757 -2.035) - (xy 7.20068 -2.035) - (xy 7.187995 -2.030878) - (xy 7.185 -2.026757) - (xy 6.782583 -2.026757) - (xy 6.780878 -2.032005) - (xy 6.776757 -2.035) - (xy 6.12568 -2.035) - (xy 6.112995 -2.030878) - (xy 6.11 -2.026757) - (xy 5.236 -2.026757) - (xy 5.236 -2.24432) - (xy 5.231878 -2.257005) - (xy 5.227757 -2.26) - (xy 4.28468 -2.26) - (xy 4.271995 -2.255878) - (xy 4.269 -2.251757) - (xy 3.866583 -2.251757) - (xy 3.864878 -2.257005) - (xy 3.860757 -2.26) - (xy 2.91768 -2.26) - (xy 2.904995 -2.255878) - (xy 2.902 -2.251757) - (xy 2.552 -2.251757) - (xy 2.552 -3.218107) - (xy 2.902 -3.218107) - (xy 2.902 -2.67568) - (xy 2.906122 -2.662995) - (xy 2.910243 -2.66) - (xy 3.85332 -2.66) - (xy 3.866005 -2.664122) - (xy 3.869 -2.668243) - (xy 3.869 -3.61132) - (xy 3.866583 -3.618757) - (xy 4.269 -3.618757) - (xy 4.269 -2.67568) - (xy 4.273122 -2.662995) - (xy 4.277243 -2.66) - (xy 5.22032 -2.66) - (xy 5.233005 -2.664122) - (xy 5.236 -2.668243) - (xy 5.236 -3.218107) - (xy 5.235391 -3.225846) - (xy 5.217397 -3.339457) - (xy 5.212642 -3.354092) - (xy 5.162188 -3.453114) - (xy 5.153146 -3.465559) - (xy 5.074559 -3.544146) - (xy 5.062114 -3.553188) - (xy 4.963092 -3.603642) - (xy 4.948457 -3.608397) - (xy 4.834846 -3.626391) - (xy 4.827107 -3.627) - (xy 4.28468 -3.627) - (xy 4.271995 -3.622878) - (xy 4.269 -3.618757) - (xy 3.866583 -3.618757) - (xy 3.864878 -3.624005) - (xy 3.860757 -3.627) - (xy 3.310893 -3.627) - (xy 3.303154 -3.626391) - (xy 3.189543 -3.608397) - (xy 3.174908 -3.603642) - (xy 3.075886 -3.553188) - (xy 3.063441 -3.544146) - (xy 2.984854 -3.465559) - (xy 2.975812 -3.453114) - (xy 2.925358 -3.354092) - (xy 2.920603 -3.339457) - (xy 2.902609 -3.225846) - (xy 2.902 -3.218107) - (xy 2.552 -3.218107) - (xy 2.552 -9.425) - (xy 0.299 -9.425) - (xy 0.240809 -9.443907) - (xy 0.204845 -9.493407) - (xy 0.2 -9.524) - (xy 0.2 -9.701) - (xy 0.218907 -9.759191) - (xy 0.268407 -9.795155) - (xy 0.299 -9.8) - (xy 7.22536 -9.8) - ) - ) - ) +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (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 + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (color "Green") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (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 "Green") + (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.2) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00012e0_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 6) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin yes) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 0) + (scaleselection 1) + (outputdirectory "../cam_profi/") + ) + ) + (net 0 "") + (net 1 "+5V") + (net 2 "GND") + (net 3 "/COUNT") + (net 4 "Net-(R1-Pad2)") + (footprint "Mlab_Mechanical:dira_3mm" + (layer "F.Cu") + (uuid "56e47677-8c0b-43f7-9577-991844c98171") + (at 8.89 -10.033) + (property "Reference" "M3" + (at 0 -0.5 0) + (unlocked yes) + (layer "F.SilkS") + (hide yes) + (uuid "9fac237d-9e9b-4dc0-b00b-2c9abe972b3b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "HOLE" + (at 0 1 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aaf139c8-ea2d-4130-9d27-cbe20278733a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d55b581d-521f-49f2-b778-a73dc04cde03") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a619e8c7-82db-4447-9968-d8bc52572529") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "deb11b78-f42d-499a-95ba-af2818a23ea6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/196227d8-be2a-4b6f-852b-6ff909ae9882") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr through_hole) + (fp_text user "2" + (at 0 2.5 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f8c1cee2-3e07-4f10-8cd9-250d96709fee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0.11 0.033) + (size 3 3) + (drill 3) + (layers "*.Mask") + (uuid "9a595313-588a-409f-a7ba-9085dc25255a") + ) + ) + (footprint "Mlab_Mechanical:dira_3mm" + (layer "F.Cu") + (uuid "90077a77-46dd-45fb-9269-10e0de11cc16") + (at 9 0) + (property "Reference" "M4" + (at 0 -0.5 0) + (unlocked yes) + (layer "F.SilkS") + (hide yes) + (uuid "64fe6498-d04e-4d0f-97c7-65ee0ea80220") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "HOLE" + (at 0 1 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abe4326c-62a9-4647-8cb8-2809f814037d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "11ff3a35-148a-4fdb-9a16-9970b83b846f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "336b153f-85a8-4904-a599-c6120a85bdab") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "95e09112-7375-4148-b622-17041e927e72") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/3b547b03-2d6f-403a-a314-16fe37d96cd6") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr through_hole) + (fp_text user "1" + (at 0 2.5 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c93808a1-ee21-479d-a3ae-c1f3fdc396ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 3 3) + (drill 3) + (layers "*.Mask") + (uuid "113c40a2-e9ee-49e8-b67a-aca9655a0a53") + ) + ) + (footprint "Mlab_Pin_Headers:Straight_1x03" + (locked yes) + (layer "F.Cu") + (uuid "b2df6ceb-bfd6-46da-9391-f6208d3257be") + (at 4.069 -5) + (descr "pin header straight 1x03") + (tags "pin header straight 1x03") + (property "Reference" "J1" + (at 0 -5.08 180) + (layer "F.SilkS") + (hide yes) + (uuid "0360a17e-7a6b-45c7-bc4c-1d531836c780") + (effects + (font + (size 1.5 1.5) + (thickness 0.15) + ) + ) + ) + (property "Value" "HEADER_1x03" + (at 0 5.08 180) + (layer "F.SilkS") + (hide yes) + (uuid "a7786078-3591-4f5c-bc0f-439c5de19227") + (effects + (font + (size 1.5 1.5) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ce485338-9dc6-4656-9f1d-b11bdc1dcc8b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f04d7a53-cece-4cf8-85bf-e2bf20e586e3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4d5ab8a9-c703-460e-a317-06ef6771e75c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/d81e7dca-ab0d-4e13-984a-1c5b00f3383c") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr through_hole) + (fp_line + (start -1.27 -3.81) + (end 1.27 -3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd100654-35d9-467f-ab85-7b6312a33e1e") + ) + (fp_line + (start -1.27 3.81) + (end -1.27 -3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "f2ff51e8-a90b-4000-87b1-7fe02801de4c") + ) + (fp_line + (start 1.27 -3.81) + (end 1.27 3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b4b62924-490c-4c3e-80ea-21066469a747") + ) + (fp_line + (start 1.27 3.81) + (end -1.27 3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "394926cc-b756-470f-8661-e2d69a43ff17") + ) + (fp_line + (start -1.27 -3.81) + (end 1.27 -3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "da9ea73a-8a78-44c1-bbd3-a04dd4c338c9") + ) + (fp_line + (start -1.27 3.81) + (end -1.27 -3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "6c0cfadf-9ac4-4c32-97ec-618b1832ceb7") + ) + (fp_line + (start 1.27 -3.81) + (end 1.27 3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "ca574c21-1024-45bd-bae5-b9194f0557f1") + ) + (fp_line + (start 1.27 3.81) + (end -1.27 3.81) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "a981c5e2-1ec3-44df-9c3f-7bc50fa7f04c") + ) + (pad "1" thru_hole rect + (at 0 -2.54) + (size 1.524 1.524) + (drill 0.889) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/COUNT") + (uuid "6421529e-ac37-431c-998b-2bd433a938b4") + ) + (pad "2" thru_hole rect + (at 0 0) + (size 1.524 1.524) + (drill 0.889) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "+5V") + (uuid "bc978b75-fa51-4e2e-8049-ac07e59b8b53") + ) + (pad "3" thru_hole rect + (at 0 2.54) + (size 1.524 1.524) + (drill 0.889) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (uuid "c91e0e5c-384f-4a83-baa3-31710cdcd2ae") + ) + (model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 2.54 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Mlab_R:SMD-0603" + (layer "B.Cu") + (uuid "12a804ff-ed16-49d2-95ce-8a2ac0f88c8c") + (at 8.89 -5.0545 -90) + (descr "Resistor 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 "resistor") + (property "Reference" "R1" + (at 0 1.43 90) + (layer "B.SilkS") + (hide yes) + (uuid "440ec7f5-e431-4034-a5c7-0e92d58b2e50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "180R" + (at 0 -1.43 90) + (layer "B.Fab") + (hide yes) + (uuid "79e89948-a5d1-417a-8e1c-6e2dcc53e584") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "2f11b65f-dc62-477c-a0e5-13865ff6ac6b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "b34e21e5-ce1f-4536-8f8b-d33135105752") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "8ec81b87-fea6-44b7-928c-f2f46038df67") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/9e12790b-cec9-4dd8-a3af-c20d5c11d549") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr smd) + (fp_line + (start -0.162779 0.51) + (end 0.162779 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e4c738f4-3ea7-4863-b6e2-830ecf12461e") + ) + (fp_line + (start -0.162779 -0.51) + (end 0.162779 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d01c8536-c85a-4fea-98ef-91e46216a433") + ) + (fp_line + (start -1.48 0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d24779a3-9ba0-4043-9927-9284d29b3303") + ) + (fp_line + (start 1.48 0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fd0d56e8-072e-4202-8c6d-82d51b796640") + ) + (fp_line + (start -1.48 -0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "13548af9-0718-4b3b-8268-d3b2380f6863") + ) + (fp_line + (start 1.48 -0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7ff0ae96-3a8f-4a0e-9e21-df025741190f") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "80eaccaa-be8e-403d-892f-86215f4b7ad0") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "264435ff-e1f7-41f1-ae96-df086ca60f6d") + ) + (fp_line + (start -0.8 -0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d31383b7-4cc7-4e71-870b-a3f4ec759b12") + ) + (fp_line + (start 0.8 -0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c3deb94c-cb6e-4f2d-b8cf-37aed962696f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "d690b4eb-8ea8-476b-a9de-f20b6a80069c") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0 270) + (size 0.875 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (uuid "2e33f2d8-5221-48e9-b0fc-d8ea06070b12") + ) + (pad "2" smd roundrect + (at 0.7875 0 270) + (size 0.875 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 4 "Net-(R1-Pad2)") + (uuid "a65c2f43-854f-4762-b1c8-f934b201500e") + ) + (model "${KISYS3DMOD}/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-23" + (layer "B.Cu") + (uuid "1e069433-40c3-442c-a0ab-5d3593c99531") + (at 12 -3.048 180) + (descr "SOT-23, Standard") + (tags "SOT-23") + (property "Reference" "U1" + (at -0.065 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "3af7ab49-cd6b-45fc-8812-348ddb7b8e8f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "AH3572" + (at 0 -2.5 0) + (layer "B.Fab") + (hide yes) + (uuid "fede6f46-15cf-4924-af0f-a402fa97f73e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "cc7ef6c6-dd63-49ff-a492-b936f4118f85") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "f131bffd-df11-4e0f-9795-82334baf2b84") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "b00b7aa6-8490-4a4b-8e65-4dc65a6e0af8") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/a7f3953c-82c9-48f9-af66-14b131e92525") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr smd) + (fp_line + (start 0.76 1.58) + (end 0.76 0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "bfe30c4b-6207-472c-b2d4-1773560c2ef5") + ) + (fp_line + (start 0.76 1.58) + (end -1.4 1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "cdca18ab-c2e1-440b-a4de-f146c25a74f3") + ) + (fp_line + (start 0.76 -1.58) + (end 0.76 -0.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a1c30acc-bb97-496e-9330-ec1b1d8fe572") + ) + (fp_line + (start 0.76 -1.58) + (end -0.7 -1.58) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "677910b6-820a-4bf7-9c66-df77d2f1dbb2") + ) + (fp_line + (start 1.7 1.75) + (end 1.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5e5eb852-78ac-477b-8e1f-6c1fc2cc4e8f") + ) + (fp_line + (start 1.7 -1.75) + (end -1.7 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8cc2c447-77a4-408c-8b37-ab75758b5941") + ) + (fp_line + (start -1.7 1.75) + (end 1.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "14682707-d394-4f25-8a05-8ced152b198d") + ) + (fp_line + (start -1.7 -1.75) + (end -1.7 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "dfff2472-c0d2-4d07-a016-926ea119ce2d") + ) + (fp_line + (start 0.7 1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "b1f6106c-1377-4df9-9cb7-cf984341cdec") + ) + (fp_line + (start -0.15 1.52) + (end 0.7 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "a438cfee-4749-4d45-b851-0c7cf672f6ae") + ) + (fp_line + (start -0.7 0.95) + (end -0.15 1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5f6db468-0a91-454a-bdae-747ce27770f8") + ) + (fp_line + (start -0.7 0.95) + (end -0.7 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "45820504-c6a3-4c79-8fba-ccd2bad782b2") + ) + (fp_line + (start -0.7 -1.52) + (end 0.7 -1.52) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c6407950-b3e1-4beb-96dc-6173458a2f34") + ) + (fp_text user "${REFERENCE}" + (at 0 -0.159 -90) + (layer "B.Fab") + (uuid "8688ca3b-c82d-456b-af2b-7145723a4c4a") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + (justify mirror) + ) + ) + (pad "1" smd rect + (at -1 0.95 180) + (size 0.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "+5V") + (pinfunction "VDD") + (uuid "924acfd4-a450-4dc3-be76-de89152f7c10") + ) + (pad "2" smd rect + (at -1 -0.95 180) + (size 0.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 3 "/COUNT") + (pinfunction "OUT") + (uuid "f4199b9d-0e96-490c-a96e-922cdb32cc56") + ) + (pad "3" smd rect + (at 1 0 180) + (size 0.9 0.8) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 2 "GND") + (pinfunction "GND") + (uuid "4e002ea0-f972-47a8-a3f0-245d77b07ed0") + ) + (model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Mlab_R:SMD-0603" + (layer "B.Cu") + (uuid "378994b2-6a2d-4498-98e7-656d84b6070d") + (at 6.985 -3.0225 -90) + (descr "Resistor 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 "resistor") + (property "Reference" "C1" + (at 0 1.43 90) + (layer "B.SilkS") + (hide yes) + (uuid "28a9c17a-f213-4c98-87e8-3b88fc15444b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.43 90) + (layer "B.Fab") + (hide yes) + (uuid "19138f9a-eae5-4b50-b6d1-21c975b94c4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "4ed47fa4-de43-4167-8047-1544b27dd4b8") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "174b8675-73d7-4769-8b4c-59f1ff02bd54") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (layer "F.Fab") + (hide yes) + (uuid "4d374c2b-d550-4075-b9b4-0399b71c16bd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/ac907e1c-aaef-41d8-ab58-f926b0e3502f") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr smd) + (fp_line + (start -0.162779 0.51) + (end 0.162779 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "bbaacbc5-5bcb-4f68-9e38-19033a2f6f8d") + ) + (fp_line + (start -0.162779 -0.51) + (end 0.162779 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a150d794-5aa0-4d49-8dbf-414f38d89c14") + ) + (fp_line + (start -1.48 0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "50f57b36-991f-449b-be38-d50a31064a60") + ) + (fp_line + (start 1.48 0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d02ffcf0-16b5-499c-a3a5-b2c55f16963c") + ) + (fp_line + (start -1.48 -0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8c15edb8-05b2-4c96-9b72-c5c808e49c85") + ) + (fp_line + (start 1.48 -0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "00254b0e-279e-4d79-9ffd-a8e7048fc811") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f5b54bff-26d5-407b-8f2a-73578e7c6a4f") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c25e6102-aa41-49c0-8124-ebd365db4294") + ) + (fp_line + (start -0.8 -0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "edd8f77d-e2f5-4313-aef5-b75ad17a367e") + ) + (fp_line + (start 0.8 -0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "766f635f-4060-4e41-9d6a-b4bc6872c5ad") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "febf9e36-03a6-4c5b-a566-b4a6e2bd32e0") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0 270) + (size 0.875 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 1 "+5V") + (uuid "0a3d5979-1671-47e4-b8d5-6047eaf539ae") + ) + (pad "2" smd roundrect + (at 0.7875 0 270) + (size 0.875 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (uuid "7d0f52c7-4b61-4088-b9ef-9e730085efeb") + ) + (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Mlab_R:SMD-0805" + (layer "B.Cu") + (uuid "72d28d2f-2919-4936-a9ba-66e8379edab3") + (at 6.858 -6.858 90) + (property "Reference" "R2" + (at 0 0.3175 90) + (layer "B.Fab") + (uuid "51df30c3-f317-4460-b30a-5fb8540dcfe5") + (effects + (font + (size 0.50038 0.50038) + (thickness 0.10922) + ) + (justify mirror) + ) + ) + (property "Value" "-" + (at 0.127 -0.381 90) + (layer "B.Fab") + (uuid "74ee4263-ab77-4d9b-a83c-4df479caa04f") + (effects + (font + (size 0.50038 0.50038) + (thickness 0.10922) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4f0ecdca-4a2a-42f3-915a-d543326fb395") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "21032b7e-eda6-4128-9179-2db814eb3de4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "3efa95d6-f0af-471d-b351-d535cc3e0ad2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (path "/dc0b4ba4-1c58-4194-aa69-1071feb9bfda") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr smd) + (fp_line + (start -0.381 -0.762) + (end 0.381 -0.762) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "f5cacfe6-e6f9-4126-8a9e-c1b2b81b19e4") + ) + (fp_line + (start -1.524 -0.762) + (end -1.524 0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.SilkS") + (uuid "e7362c91-620d-4a08-b6cb-0dbfe7426385") + ) + (fp_line + (start 1.524 0.762) + (end 1.524 -0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.SilkS") + (uuid "18a9ce20-fe79-4601-9f26-cf3bc87d9b74") + ) + (fp_line + (start -0.381 0.762) + (end 0.381 0.762) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "004d0136-e250-4920-8de2-a0be0b37f2f3") + ) + (fp_line + (start 1.524 -0.762) + (end 0.508 -0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "afe3f7e2-31af-42a4-85bc-a7048e5357ad") + ) + (fp_line + (start -0.508 -0.762) + (end -1.524 -0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "5ef757f3-70ef-4a9c-950f-f5e045b739f1") + ) + (fp_line + (start -1.524 -0.762) + (end -1.524 0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "bd0b4caf-e65d-49f6-af89-00fb97a8e220") + ) + (fp_line + (start 1.524 0.762) + (end 1.524 -0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "0f0c5b2a-c56b-4888-8d6f-85f61b683ad4") + ) + (fp_line + (start 0.508 0.762) + (end 1.524 0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "b633bf51-d9a1-4dde-9bd0-301ea59c2062") + ) + (fp_line + (start -1.524 0.762) + (end -0.508 0.762) + (stroke + (width 0.15) + (type solid) + ) + (layer "B.Fab") + (uuid "2490cb6d-5b6d-406e-a4c4-164dbbc2d118") + ) + (pad "1" smd rect + (at -0.9525 0 90) + (size 0.889 1.397) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "+5V") + (uuid "57be02fb-07a0-451f-b2ef-4f89874c2e8b") + ) + (pad "2" smd rect + (at 0.9525 0 90) + (size 0.889 1.397) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 3 "/COUNT") + (uuid "b532a92a-6a41-43fe-aea5-1d932d1d9141") + ) + (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Mlab_IO:XDCR_VCNT2020" + (layer "B.Cu") + (uuid "8c35d8f4-72e8-4872-a7c3-44fef395efd7") + (at 12 -7.048) + (property "Reference" "U2" + (at 0.635 2.667 0) + (layer "B.SilkS") + (hide yes) + (uuid "06d7efb7-581f-444c-a287-e7a058a88768") + (effects + (font + (size 1 1) + (thickness 0.015) + ) + (justify mirror) + ) + ) + (property "Value" "VCNT2020" + (at 5.715 -2.667 0) + (layer "B.Fab") + (hide yes) + (uuid "2094c04a-25ba-404f-80d9-3eb6fcf92658") + (effects + (font + (size 1 1) + (thickness 0.015) + ) + (justify mirror) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "956b9dc1-60fb-4ae7-bfbc-4a48857f56b9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e1942ff0-3191-470e-b543-35dbd825a4cc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1df1faf7-684d-4d43-9d81-0bd0edb4e792") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Field4" "Vishay" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "b879b638-df2c-4981-a234-5a94c76b408c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Field5" "Manufacturer Recommendation" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "7d325269-5e02-4ed7-b129-704bc5bcac4f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/08989b57-1670-408e-a8a9-fe966c7c308b") + (sheetfile "C:/Chroust/stare/TF_G/OPTMAGPROBE01/hw/sch_pcb/OPTMAGPROBE01A.kicad_sch") + (attr through_hole) + (fp_line + (start -1.37 1) + (end -1.37 -1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.SilkS") + (uuid "6ee949e3-6042-4b84-bb2b-26050c73a44b") + ) + (fp_line + (start 1.37 1) + (end 1.37 -1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.SilkS") + (uuid "c66a3c58-de0a-4c78-8bbd-491b766a3871") + ) + (fp_circle + (center -1.91352 0.769763) + (end -1.81352 0.769763) + (stroke + (width 0.2) + (type solid) + ) + (fill none) + (layer "B.SilkS") + (uuid "67d95976-95e6-4981-9c08-55ff6f3f676b") + ) + (fp_line + (start -1.5 1.45) + (end -1.5 -1.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f94579a6-5e99-47bd-8cb9-5589eae95764") + ) + (fp_line + (start 1.5 -1.45) + (end -1.5 -1.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8c1ed25d-231b-4144-8f27-f9d867e68c99") + ) + (fp_line + (start 1.5 1.45) + (end -1.5 1.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8960d03c-adb1-484a-8ca3-46e7f83f9cdf") + ) + (fp_line + (start 1.5 1.45) + (end 1.5 -1.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7c0991c8-8660-4274-b5ff-2b14e9ac9381") + ) + (fp_line + (start -1.25 1) + (end -1.25 -1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.Fab") + (uuid "4a318709-f9b6-4b98-a5cd-e47c02069514") + ) + (fp_line + (start 1.25 -1) + (end -1.25 -1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.Fab") + (uuid "25853a44-b42a-42d3-8109-05389cff52ed") + ) + (fp_line + (start 1.25 1) + (end -1.25 1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.Fab") + (uuid "809b28aa-e40b-45df-bc8e-3e67aaa57c2b") + ) + (fp_line + (start 1.25 1) + (end 1.25 -1) + (stroke + (width 0.127) + (type solid) + ) + (layer "B.Fab") + (uuid "f30fd9a9-29ea-403b-8206-968002d9b171") + ) + (fp_circle + (center -1.91352 0.769763) + (end -1.81352 0.769763) + (stroke + (width 0.2) + (type solid) + ) + (fill none) + (layer "B.Fab") + (uuid "02b27281-e9ab-4c66-8802-18d69a22f8cf") + ) + (fp_text user "${REFERENCE}" + (at -0.062 0 0) + (unlocked yes) + (layer "B.Fab") + (uuid "60873b21-8a1a-4991-ae84-82ff4427844c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd rect + (at -0.57 0.725) + (size 0.97 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 2 "GND") + (uuid "02a5e088-7b54-41a1-975d-f5c648890013") + ) + (pad "2" smd rect + (at -0.57 -0.625) + (size 0.97 1.15) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 3 "/COUNT") + (uuid "15121333-5aee-40b7-a66c-99d1d6fd9f82") + ) + (pad "3" smd rect + (at 0.63 0.725) + (size 0.85 0.95) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 4 "Net-(R1-Pad2)") + (uuid "6f32d9bc-fad5-4bb0-adcc-b211c604f277") + ) + (pad "4" smd rect + (at 0.63 -0.625) + (size 0.85 1.15) + (layers "B.Cu" "B.Paste" "B.Mask") + (net 2 "GND") + (uuid "6c2a87b7-0639-4006-b0fc-bb9eeeb1c515") + ) + (model "${KISYS3DMOD_MLAB}/VISHAY_VCNT2020.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_line + (start 9.906 -8.001) + (end 10.668 -8.001) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "194a0d38-a366-4c37-88d9-72fd0aa5a0c3") + ) + (gr_line + (start 9.271 -7.112) + (end 9.906 -7.112) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "31761ebf-8981-4546-919c-bcd25f2f52c2") + ) + (gr_line + (start 10.668 -8.001) + (end 10.668 -7.112) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "63308f9c-9348-4e02-b073-6269fa6b78a5") + ) + (gr_line + (start 9.906 -7.112) + (end 9.906 -8.001) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "785573a0-3be5-4a94-bdad-7d51dc8ea8da") + ) + (gr_line + (start 10.668 -7.112) + (end 11.43 -7.112) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "f5166085-455a-4b21-b152-20fa42cd1e82") + ) + (gr_rect + (start 0 -10) + (end 14 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "Edge.Cuts") + (uuid "4b58e704-cec7-425c-8f75-4487ded1d908") + ) + (gr_text "TFPROBE01A" + (at 1.1 -5 90) + (layer "F.Cu") + (uuid "cf5b2775-b1f4-4526-9290-f41c8e2b95bb") + (effects + (font + (size 1.3 1) + (thickness 0.15) + ) + ) + ) + (gr_text "ThunderFly" + (at 1.397 -5 90) + (layer "B.Cu") + (uuid "77f9dc0a-1e99-4f08-8c82-0902854ebda1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (gr_text "GND" + (at 5.3 -2.3 0) + (layer "F.SilkS") + (uuid "9ce32d00-c99e-409e-8bf0-d6b07bb491f7") + (effects + (font + (size 1.3 1.3) + (thickness 0.2) + ) + (justify left) + ) + ) + (gr_text "OUT" + (at 5.5 -7.4 0) + (layer "F.SilkS") + (uuid "b7b729fd-563d-427e-bf01-c516982f5600") + (effects + (font + (size 1.3 1.3) + (thickness 0.2) + ) + (justify left) + ) + ) + (gr_text "+5V" + (at 5.339 -4.9 0) + (layer "F.SilkS") + (uuid "cd988095-883a-4c4d-a0cf-2717a2a286dc") + (effects + (font + (size 1.3 1.3) + (thickness 0.2) + ) + (justify left) + ) + ) + (dimension + (type aligned) + (layer "Cmts.User") + (uuid "13bd75d2-c0f6-4713-bd86-1e9d144c22e5") + (pts + (xy 14 0) (xy 14 -3.048) + ) + (height 3.89) + (gr_text "3,048" + (at 18 2.5 90) + (layer "Cmts.User") + (uuid "13bd75d2-c0f6-4713-bd86-1e9d144c22e5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 0) + (precision 4) suppress_zeroes) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 2) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (dimension + (type aligned) + (layer "Cmts.User") + (uuid "2908213f-c696-41a7-9ce3-d10d54757d7c") + (pts + (xy 16.8194 -10) (xy 16.8194 0) + ) + (height -2.637) + (gr_text "10 mm" + (at 19.4564 -5 90) + (layer "Cmts.User") + (uuid "2908213f-c696-41a7-9ce3-d10d54757d7c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 1) + (precision 4) suppress_zeroes) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 1) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (dimension + (type aligned) + (layer "Cmts.User") + (uuid "4ec67df4-b3f4-4e3d-ac3d-4d2b6a092f28") + (pts + (xy 2.799 -1.19) (xy 2.799 -8.81) + ) + (height -4.099) + (gr_text "7,62" + (at -2.45 -5 90) + (layer "Cmts.User") + (uuid "4ec67df4-b3f4-4e3d-ac3d-4d2b6a092f28") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 3) + (units_format 0) + (precision 4) suppress_zeroes) + (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 "Cmts.User") + (uuid "d13963cf-687e-4261-985e-299390312a2c") + (pts + (xy 0 0) (xy 14 0) + ) + (height 2.921) + (gr_text "14 mm" + (at 7 1.771 0) + (layer "Cmts.User") + (uuid "d13963cf-687e-4261-985e-299390312a2c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 1) + (precision 4) suppress_zeroes) + (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 "Cmts.User") + (uuid "e01ba0fb-8437-425c-9dc5-36d42c6c4ecf") + (pts + (xy 12 -7.048) (xy 14 -7.048) + ) + (height -4.942) + (gr_text "2" + (at 13 -13.14 0) + (layer "Cmts.User") + (uuid "e01ba0fb-8437-425c-9dc5-36d42c6c4ecf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 0) + (precision 4) suppress_zeroes) + (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 "Cmts.User") + (uuid "e442bfb5-9b34-498e-8321-0d6b4fdb4862") + (pts + (xy 14 -10) (xy 14 -7.048) + ) + (height -2.59) + (gr_text "2,952" + (at 16.5 -12.5 90) + (layer "Cmts.User") + (uuid "e442bfb5-9b34-498e-8321-0d6b4fdb4862") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 0) + (precision 4) suppress_zeroes) + (style + (thickness 0.15) + (arrow_length 1.27) + (text_position_mode 2) + (extension_height 0.58642) + (extension_offset 0.5) keep_text_aligned) + ) + (segment + (start 10.16 -5.842) + (end 10.033 -5.969) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "52a97bce-c725-49b1-b185-c610fdbf16b9") + ) + (segment + (start 10.16 -4.23) + (end 10.16 -5.842) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "b87b835e-48d1-4f69-ae29-a2ab8febdf48") + ) + (via + (at 10.033 -5.969) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "08fa310c-ea53-4895-b53d-2e386d0dd562") + ) + (via + (at 10.16 -4.23) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "f1960701-c8c0-42ca-91ee-6400b8e17ee2") + ) + (segment + (start 8.89 -5.842) + (end 6.9215 -5.842) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "30d322b7-fe07-4a7e-8bbd-816b74d364b7") + ) + (segment + (start 10.392 -3.998) + (end 10.16 -4.23) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "3cb40ed5-dd5d-4fad-bbdf-e64ee5038085") + ) + (segment + (start 6.985 -5.7785) + (end 6.858 -5.9055) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "835125df-9e27-4a01-96d7-a50f170b7227") + ) + (segment + (start 13 -3.998) + (end 10.392 -3.998) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "888e8e5b-32f4-42d6-abed-1618cc91b268") + ) + (segment + (start 6.9215 -5.842) + (end 6.858 -5.9055) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "981003a1-66a7-4f38-a835-c5138027db19") + ) + (segment + (start 9.017 -5.969) + (end 8.89 -5.842) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "a5fd9a40-d260-46a1-8924-25095f574076") + ) + (segment + (start 6.985 -3.81) + (end 6.985 -5.7785) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "ae38ed9f-a9c2-4453-8214-9642ef83719f") + ) + (segment + (start 4.9745 -5.9055) + (end 4.069 -5) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "b9adf2cb-5da8-4513-96b5-f2a8c3ce8b3c") + ) + (segment + (start 6.858 -5.9055) + (end 4.9745 -5.9055) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "cfca5d06-ec5f-4f94-8921-94b8a27e1c1f") + ) + (segment + (start 10.033 -5.969) + (end 9.017 -5.969) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "d8225fce-d206-4f39-a212-79e793d6a54b") + ) + (via + (at 11.303 -0.762) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "194b1269-4e1f-403d-b2a8-58e23d4531c2") + ) + (via + (at 9.525 -2.794) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "319499be-e9c2-4ab4-a4fd-8227066a5c22") + ) + (via + (at 11.303 -9.144) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "6562ba55-9eb9-466a-9d0a-ecd06e76cb67") + ) + (via + (at 12.7 -9.144) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "83858109-2b28-4cf7-b47d-90a600b60a10") + ) + (via + (at 12.573 -0.762) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "bd650164-899c-4773-b358-be8c9b99a7a3") + ) + (via + (at 6.858 -0.889) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "c324e412-fad3-4239-a3db-395ee1fdea92") + ) + (segment + (start 13.75001 -8.72899) + (end 13.75001 -0.66901) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "7268d5da-1062-4e9b-b54a-5b8ef2cb9879") + ) + (segment + (start 10.822 -6.323) + (end 10.414 -6.731) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "75598147-22a2-4147-a41c-1e976a606aaa") + ) + (segment + (start 11.43 -6.323) + (end 10.822 -6.323) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "9c7435a1-5d31-4a71-8edd-f18357391aca") + ) + (segment + (start 13.335 -9.144) + (end 13.75001 -8.72899) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "a3aa46c5-b75e-4709-b563-a19ecbab012d") + ) + (segment + (start 10.414 -6.731) + (end 9.271 -6.731) + (width 0.3) + (layer "B.Cu") + (net 2) + (uuid "aa1ff164-ebd2-421c-9217-39ca6393d836") + ) + (segment + (start 13.65702 -0.762) + (end 12.573 -0.762) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "e26b366b-484b-4b65-8b7a-6a7a2d306947") + ) + (segment + (start 13.75001 -0.66901) + (end 13.65702 -0.762) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "f2b1712f-5788-45a0-be2b-0086f00276c3") + ) + (segment + (start 12.7 -9.144) + (end 13.335 -9.144) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "fc9bf196-44a6-4f4b-abbb-ec79da7f0c83") + ) + (segment + (start 11.176 -7.366) + (end 8.763 -7.366) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "0c7bf5b9-6cb2-477b-a2ec-f5c0cddb70bd") + ) + (segment + (start 11.938 -2.159) + (end 11.938 -6.604) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "5aeee9ea-2f13-4468-bd7c-e4021a63c0c8") + ) + (segment + (start 11.938 -6.604) + (end 11.176 -7.366) + (width 0.5) + (layer "F.Cu") + (net 3) + (uuid "b02e324a-e61b-478d-b5d4-2d7a060c08d2") + ) + (via + (at 8.763 -7.366) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "32f833d1-2343-4c7a-a526-0a70d6278f45") + ) + (via + (at 11.938 -2.159) + (size 0.8) + (drill 0.4) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "7eb3b75a-9f9d-4345-b693-f02528c72222") + ) + (segment + (start 6.858 -7.8105) + (end 4.3395 -7.8105) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "15cd9b73-ea02-426d-9445-9ad7c3667e61") + ) + (segment + (start 7.3025 -7.8105) + (end 7.747 -7.366) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "1d37d859-84af-41cf-85ca-733ae5dd1da1") + ) + (segment + (start 11.2925 -7.8105) + (end 11.43 -7.673) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "35e33bf7-b707-4d32-b855-9b003dfa8b91") + ) + (segment + (start 6.858 -7.8105) + (end 7.3025 -7.8105) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "3ea057b1-c403-4889-a633-cfa0bb46ce0d") + ) + (segment + (start 13 -2.098) + (end 11.999 -2.098) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "5137dca4-cb12-46db-87bc-19e472a2aee8") + ) + (segment + (start 11.999 -2.098) + (end 11.938 -2.159) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "866f9119-2078-436b-86c3-8c6a1044ddd3") + ) + (segment + (start 4.3395 -7.8105) + (end 4.069 -7.54) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "a1acd0c3-0025-4577-bbd3-866f467f9168") + ) + (segment + (start 8.763 -7.366) + (end 11.123 -7.366) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "bd27212a-429f-49d4-bf30-458cd54ddece") + ) + (segment + (start 7.747 -7.366) + (end 8.763 -7.366) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "c7efa3ef-d5e8-4a04-aade-1670cb66ee7e") + ) + (segment + (start 11.123 -7.366) + (end 11.43 -7.673) + (width 0.5) + (layer "B.Cu") + (net 3) + (uuid "f8d76482-e088-414f-bc2e-d7a140c900fc") + ) + (segment + (start 11.684 -5.08) + (end 9.703 -5.08) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "14850230-0aeb-4940-911e-a046014bbdf8") + ) + (segment + (start 11.684 -5.08) + (end 12.319 -5.08) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "20f80cc9-af37-436a-9048-421fc3406bb6") + ) + (segment + (start 12.63 -5.391) + (end 12.63 -6.323) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "38b11f66-0c07-46b4-90df-b68a98471020") + ) + (segment + (start 9.703 -5.08) + (end 8.89 -4.267) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "a0094807-7be6-4ca6-b2cc-09ca21e1ba62") + ) + (segment + (start 12.319 -5.08) + (end 12.63 -5.391) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "eb93a205-0578-4c7a-9889-012d571a42b4") + ) + (zone + (net 2) + (net_name "GND") + (layers "F&B.Cu") + (uuid "277822f0-1422-41cd-8395-efe02d6e09e9") + (hatch edge 0.508) + (connect_pads + (clearance 0.2) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.4) + (thermal_bridge_width 0.4) + ) + (polygon + (pts + (xy 15.494 1.524) (xy -3.048 1.524) (xy -2.159 -12.319) (xy 15.24 -12.319) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 7.283551 -9.781093) (xy 7.319515 -9.731593) (xy 7.322841 -9.718276) (xy 7.347424 -9.579563) + (xy 7.347426 -9.579556) (xy 7.348081 -9.575859) (xy 7.431244 -9.330869) (xy 7.432974 -9.327538) + (xy 7.432976 -9.327534) (xy 7.516151 -9.167417) (xy 7.550508 -9.101277) (xy 7.703128 -8.892366) + (xy 7.885591 -8.708945) (xy 7.88861 -8.706715) (xy 7.888616 -8.70671) (xy 8.036311 -8.597622) (xy 8.0937 -8.555234) + (xy 8.210542 -8.49376) (xy 8.319337 -8.436519) (xy 8.319342 -8.436517) (xy 8.322664 -8.434769) (xy 8.567216 -8.350325) + (xy 8.570913 -8.34965) (xy 8.57092 -8.349648) (xy 8.782393 -8.311027) (xy 8.821727 -8.303843) (xy 8.904595 -8.2995) + (xy 9.065729 -8.2995) (xy 9.142768 -8.30536) (xy 9.254221 -8.313838) (xy 9.254227 -8.313839) (xy 9.257975 -8.314124) + (xy 9.510014 -8.372543) (xy 9.750316 -8.468414) (xy 9.973352 -8.59953) (xy 10.173989 -8.762874) + (xy 10.291199 -8.892366) (xy 10.345086 -8.951899) (xy 10.345089 -8.951903) (xy 10.347609 -8.954687) + (xy 10.490219 -9.170555) (xy 10.598534 -9.40551) (xy 10.670065 -9.654146) (xy 10.677743 -9.713666) + (xy 10.703938 -9.768958) (xy 10.757632 -9.798295) (xy 10.775929 -9.8) (xy 13.701 -9.8) (xy 13.759191 -9.781093) + (xy 13.795155 -9.731593) (xy 13.8 -9.701) (xy 13.8 -0.299) (xy 13.781093 -0.240809) (xy 13.731593 -0.204845) + (xy 13.701 -0.2) (xy 10.77464 -0.2) (xy 10.716449 -0.218907) (xy 10.680485 -0.268407) (xy 10.677159 -0.281724) + (xy 10.652576 -0.420437) (xy 10.652574 -0.420444) (xy 10.651919 -0.424141) (xy 10.568756 -0.669131) + (xy 10.487254 -0.826029) (xy 10.451228 -0.895382) (xy 10.451225 -0.895387) (xy 10.449492 -0.898723) + (xy 10.296872 -1.107634) (xy 10.114409 -1.291055) (xy 10.11139 -1.293285) (xy 10.111384 -1.29329) + (xy 9.90933 -1.442528) (xy 9.9063 -1.444766) (xy 9.741284 -1.531586) (xy 9.680663 -1.563481) (xy 9.680658 -1.563483) + (xy 9.677336 -1.565231) (xy 9.654012 -1.573285) (xy 9.436343 -1.648446) (xy 9.436344 -1.648446) + (xy 9.432784 -1.649675) (xy 9.429087 -1.65035) (xy 9.42908 -1.650352) (xy 9.181399 -1.695586) (xy 9.1814 -1.695586) + (xy 9.178273 -1.696157) (xy 9.095405 -1.7005) (xy 8.934271 -1.7005) (xy 8.857232 -1.69464) (xy 8.745779 -1.686162) + (xy 8.745773 -1.686161) (xy 8.742025 -1.685876) (xy 8.489986 -1.627457) (xy 8.249684 -1.531586) + (xy 8.026648 -1.40047) (xy 8.02373 -1.398094) (xy 8.023728 -1.398093) (xy 7.923332 -1.316358) (xy 7.826011 -1.237126) + (xy 7.823491 -1.234342) (xy 7.823489 -1.23434) (xy 7.654914 -1.048101) (xy 7.654911 -1.048097) (xy 7.652391 -1.045313) + (xy 7.509781 -0.829445) (xy 7.401466 -0.59449) (xy 7.329935 -0.345854) (xy 7.323892 -0.299) (xy 7.322258 -0.286335) + (xy 7.296062 -0.231042) (xy 7.242368 -0.201705) (xy 7.224071 -0.2) (xy 2.5955 -0.2) (xy 2.537309 -0.218907) + (xy 2.501345 -0.268407) (xy 2.4965 -0.299) (xy 2.4965 -2.251757) (xy 2.902 -2.251757) (xy 2.902 -1.701893) + (xy 2.902609 -1.694154) (xy 2.920603 -1.580543) (xy 2.925358 -1.565908) (xy 2.975812 -1.466886) + (xy 2.984854 -1.454441) (xy 3.063441 -1.375854) (xy 3.075886 -1.366812) (xy 3.174908 -1.316358) + (xy 3.189543 -1.311603) (xy 3.303154 -1.293609) (xy 3.310893 -1.293) (xy 3.85332 -1.293) (xy 3.866005 -1.297122) + (xy 3.869 -1.301243) (xy 3.869 -2.24432) (xy 3.866583 -2.251757) (xy 4.269 -2.251757) (xy 4.269 -1.30868) + (xy 4.273122 -1.295995) (xy 4.277243 -1.293) (xy 4.827107 -1.293) (xy 4.834846 -1.293609) (xy 4.948457 -1.311603) + (xy 4.963092 -1.316358) (xy 5.062114 -1.366812) (xy 5.074559 -1.375854) (xy 5.153146 -1.454441) + (xy 5.162188 -1.466886) (xy 5.212642 -1.565908) (xy 5.217397 -1.580543) (xy 5.235391 -1.694154) + (xy 5.236 -1.701893) (xy 5.236 -2.24432) (xy 5.231878 -2.257005) (xy 5.227757 -2.26) (xy 4.28468 -2.26) + (xy 4.271995 -2.255878) (xy 4.269 -2.251757) (xy 3.866583 -2.251757) (xy 3.864878 -2.257005) (xy 3.860757 -2.26) + (xy 2.91768 -2.26) (xy 2.904995 -2.255878) (xy 2.902 -2.251757) (xy 2.4965 -2.251757) (xy 2.4965 -3.218107) + (xy 2.902 -3.218107) (xy 2.902 -2.67568) (xy 2.906122 -2.662995) (xy 2.910243 -2.66) (xy 3.85332 -2.66) + (xy 3.866005 -2.664122) (xy 3.869 -2.668243) (xy 3.869 -3.61132) (xy 3.866583 -3.618757) (xy 4.269 -3.618757) + (xy 4.269 -2.67568) (xy 4.273122 -2.662995) (xy 4.277243 -2.66) (xy 5.22032 -2.66) (xy 5.233005 -2.664122) + (xy 5.236 -2.668243) (xy 5.236 -3.218107) (xy 5.235391 -3.225846) (xy 5.217397 -3.339457) (xy 5.212642 -3.354092) + (xy 5.162188 -3.453114) (xy 5.153146 -3.465559) (xy 5.074559 -3.544146) (xy 5.062114 -3.553188) + (xy 4.963092 -3.603642) (xy 4.948457 -3.608397) (xy 4.834846 -3.626391) (xy 4.827107 -3.627) (xy 4.28468 -3.627) + (xy 4.271995 -3.622878) (xy 4.269 -3.618757) (xy 3.866583 -3.618757) (xy 3.864878 -3.624005) (xy 3.860757 -3.627) + (xy 3.310893 -3.627) (xy 3.303154 -3.626391) (xy 3.189543 -3.608397) (xy 3.174908 -3.603642) (xy 3.075886 -3.553188) + (xy 3.063441 -3.544146) (xy 2.984854 -3.465559) (xy 2.975812 -3.453114) (xy 2.925358 -3.354092) + (xy 2.920603 -3.339457) (xy 2.902609 -3.225846) (xy 2.902 -3.218107) (xy 2.4965 -3.218107) (xy 2.4965 -5.762) + (xy 3.1015 -5.762) (xy 3.1015 -4.238) (xy 3.117143 -4.159359) (xy 3.16169 -4.09269) (xy 3.1698 -4.087271) + (xy 3.195024 -4.070417) (xy 3.228359 -4.048143) (xy 3.237922 -4.046241) (xy 3.237924 -4.04624) (xy 3.2632 -4.041213) + (xy 3.307 -4.0325) (xy 4.831 -4.0325) (xy 4.8748 -4.041213) (xy 4.900076 -4.04624) (xy 4.900078 -4.046241) + (xy 4.909641 -4.048143) (xy 4.942976 -4.070417) (xy 4.9682 -4.087271) (xy 4.97631 -4.09269) (xy 5.020857 -4.159359) + (xy 5.0365 -4.238) (xy 5.0365 -5.762) (xy 5.02769 -5.806288) (xy 5.02276 -5.831076) (xy 5.022759 -5.831078) + (xy 5.020857 -5.840641) (xy 4.97631 -5.90731) (xy 4.909641 -5.951857) (xy 4.900078 -5.953759) (xy 4.900076 -5.95376) + (xy 4.8748 -5.958787) (xy 4.831 -5.9675) (xy 3.307 -5.9675) (xy 3.2632 -5.958787) (xy 3.237924 -5.95376) + (xy 3.237922 -5.953759) (xy 3.228359 -5.951857) (xy 3.16169 -5.90731) (xy 3.117143 -5.840641) (xy 3.115241 -5.831078) + (xy 3.11524 -5.831076) (xy 3.11031 -5.806288) (xy 3.1015 -5.762) (xy 2.4965 -5.762) (xy 2.4965 -5.969) + (xy 9.4275 -5.969) (xy 9.448132 -5.812285) (xy 9.508622 -5.66625) (xy 9.604847 -5.540847) (xy 9.61 -5.536893) + (xy 9.670767 -5.490265) (xy 9.705423 -5.439841) (xy 9.7095 -5.411723) (xy 9.7095 -4.662636) (xy 9.689042 -4.602369) + (xy 9.635622 -4.53275) (xy 9.575132 -4.386715) (xy 9.5545 -4.23) (xy 9.575132 -4.073285) (xy 9.635622 -3.92725) + (xy 9.731847 -3.801847) (xy 9.85725 -3.705622) (xy 10.003285 -3.645132) (xy 10.16 -3.6245) (xy 10.316715 -3.645132) + (xy 10.46275 -3.705622) (xy 10.588153 -3.801847) (xy 10.684378 -3.92725) (xy 10.744868 -4.073285) + (xy 10.7655 -4.23) (xy 10.744868 -4.386715) (xy 10.684378 -4.53275) (xy 10.630958 -4.602369) (xy 10.6105 -4.662636) + (xy 10.6105 -5.775026) (xy 10.613873 -5.800649) (xy 10.615384 -5.806288) (xy 10.617868 -5.812285) + (xy 10.6385 -5.969) (xy 10.617868 -6.125715) (xy 10.557378 -6.27175) (xy 10.461153 -6.397153) (xy 10.33575 -6.493378) + (xy 10.189715 -6.553868) (xy 10.051063 -6.572122) (xy 10.039434 -6.573653) (xy 10.033 -6.5745) (xy 10.026566 -6.573653) + (xy 10.014937 -6.572122) (xy 9.876285 -6.553868) (xy 9.73025 -6.493378) (xy 9.604847 -6.397153) + (xy 9.508622 -6.27175) (xy 9.448132 -6.125715) (xy 9.4275 -5.969) (xy 2.4965 -5.969) (xy 2.4965 -8.302) + (xy 3.1015 -8.302) (xy 3.1015 -6.778) (xy 3.117143 -6.699359) (xy 3.16169 -6.63269) (xy 3.228359 -6.588143) + (xy 3.237922 -6.586241) (xy 3.237924 -6.58624) (xy 3.2632 -6.581213) (xy 3.307 -6.5725) (xy 4.831 -6.5725) + (xy 4.8748 -6.581213) (xy 4.900076 -6.58624) (xy 4.900078 -6.586241) (xy 4.909641 -6.588143) (xy 4.97631 -6.63269) + (xy 5.020857 -6.699359) (xy 5.0365 -6.778) (xy 5.0365 -7.366) (xy 8.1575 -7.366) (xy 8.178132 -7.209285) + (xy 8.238622 -7.06325) (xy 8.334847 -6.937847) (xy 8.46025 -6.841622) (xy 8.606285 -6.781132) (xy 8.763 -6.7605) + (xy 8.919715 -6.781132) (xy 9.06575 -6.841622) (xy 9.096647 -6.86533) (xy 9.135369 -6.895042) (xy 9.195636 -6.9155) + (xy 10.948389 -6.9155) (xy 11.00658 -6.896593) (xy 11.018393 -6.886504) (xy 11.458504 -6.446393) + (xy 11.486281 -6.391876) (xy 11.4875 -6.376389) (xy 11.4875 -2.591636) (xy 11.467042 -2.531369) + (xy 11.413622 -2.46175) (xy 11.353132 -2.315715) (xy 11.3325 -2.159) (xy 11.353132 -2.002285) (xy 11.413622 -1.85625) + (xy 11.509847 -1.730847) (xy 11.63525 -1.634622) (xy 11.650496 -1.628307) (xy 11.765808 -1.580543) + (xy 11.781285 -1.574132) (xy 11.938 -1.5535) (xy 12.094715 -1.574132) (xy 12.110193 -1.580543) (xy 12.225504 -1.628307) + (xy 12.24075 -1.634622) (xy 12.366153 -1.730847) (xy 12.462378 -1.85625) (xy 12.522868 -2.002285) + (xy 12.5435 -2.159) (xy 12.522868 -2.315715) (xy 12.462378 -2.46175) (xy 12.408958 -2.531369) (xy 12.3885 -2.591636) + (xy 12.3885 -6.572122) (xy 12.389186 -6.583758) (xy 12.392405 -6.610959) (xy 12.393275 -6.618307) + (xy 12.382656 -6.676453) (xy 12.382151 -6.679485) (xy 12.380383 -6.691249) (xy 12.373364 -6.737935) + (xy 12.370239 -6.744443) (xy 12.368942 -6.751545) (xy 12.364291 -6.7605) (xy 12.341707 -6.803975) + (xy 12.340317 -6.806756) (xy 12.314735 -6.860029) (xy 12.310632 -6.864468) (xy 12.309108 -6.866729) + (xy 12.306507 -6.871736) (xy 12.301475 -6.877628) (xy 12.263048 -6.916055) (xy 12.260354 -6.918858) + (xy 12.227822 -6.954051) (xy 12.222798 -6.959486) (xy 12.216923 -6.962899) (xy 12.210042 -6.969061) + (xy 11.517081 -7.662023) (xy 11.509339 -7.670737) (xy 11.492394 -7.692232) (xy 11.492393 -7.692233) + (xy 11.487811 -7.698045) (xy 11.461544 -7.7162) (xy 11.439217 -7.731631) (xy 11.436688 -7.733438) + (xy 11.395097 -7.764157) (xy 11.395095 -7.764158) (xy 11.389142 -7.768555) (xy 11.382332 -7.770946) + (xy 11.376392 -7.775052) (xy 11.369339 -7.777283) (xy 11.369334 -7.777285) (xy 11.331559 -7.789231) + (xy 11.320029 -7.792878) (xy 11.317144 -7.79384) (xy 11.261352 -7.813432) (xy 11.255312 -7.813669) + (xy 11.252633 -7.814191) (xy 11.247256 -7.815892) (xy 11.241635 -7.816334) (xy 11.241632 -7.816335) + (xy 11.241546 -7.816341) (xy 11.239531 -7.8165) (xy 11.185213 -7.8165) (xy 11.181327 -7.816576) + (xy 11.13341 -7.818459) (xy 11.133407 -7.818459) (xy 11.126016 -7.818749) (xy 11.119449 -7.817008) + (xy 11.110224 -7.8165) (xy 9.195636 -7.8165) (xy 9.135369 -7.836958) (xy 9.070899 -7.886427) (xy 9.06575 -7.890378) + (xy 8.919715 -7.950868) (xy 8.763 -7.9715) (xy 8.606285 -7.950868) (xy 8.46025 -7.890378) (xy 8.334847 -7.794153) + (xy 8.238622 -7.66875) (xy 8.178132 -7.522715) (xy 8.1575 -7.366) (xy 5.0365 -7.366) (xy 5.0365 -8.302) + (xy 5.020857 -8.380641) (xy 4.97631 -8.44731) (xy 4.909641 -8.491857) (xy 4.900078 -8.493759) (xy 4.900076 -8.49376) + (xy 4.8748 -8.498787) (xy 4.831 -8.5075) (xy 3.307 -8.5075) (xy 3.2632 -8.498787) (xy 3.237924 -8.49376) + (xy 3.237922 -8.493759) (xy 3.228359 -8.491857) (xy 3.16169 -8.44731) (xy 3.117143 -8.380641) (xy 3.1015 -8.302) + (xy 2.4965 -8.302) (xy 2.4965 -9.701) (xy 2.515407 -9.759191) (xy 2.564907 -9.795155) (xy 2.5955 -9.8) + (xy 7.22536 -9.8) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 7.283551 -9.781093) (xy 7.319515 -9.731593) (xy 7.322841 -9.718276) (xy 7.347424 -9.579563) + (xy 7.347426 -9.579556) (xy 7.348081 -9.575859) (xy 7.431244 -9.330869) (xy 7.432974 -9.327538) + (xy 7.432976 -9.327534) (xy 7.516151 -9.167417) (xy 7.550508 -9.101277) (xy 7.703128 -8.892366) + (xy 7.885591 -8.708945) (xy 7.88861 -8.706715) (xy 7.888616 -8.70671) (xy 8.036311 -8.597622) (xy 8.0937 -8.555234) + (xy 8.210542 -8.49376) (xy 8.319337 -8.436519) (xy 8.319342 -8.436517) (xy 8.322664 -8.434769) (xy 8.326219 -8.433542) + (xy 8.32622 -8.433541) (xy 8.422458 -8.40031) (xy 8.567216 -8.350325) (xy 8.570913 -8.34965) (xy 8.57092 -8.349648) + (xy 8.782393 -8.311027) (xy 8.821727 -8.303843) (xy 8.904595 -8.2995) (xy 9.065729 -8.2995) (xy 9.142768 -8.30536) + (xy 9.254221 -8.313838) (xy 9.254227 -8.313839) (xy 9.257975 -8.314124) (xy 9.510014 -8.372543) + (xy 9.579613 -8.40031) (xy 9.69604 -8.44676) (xy 9.750316 -8.468414) (xy 9.973352 -8.59953) (xy 10.01618 -8.634397) + (xy 10.171074 -8.760501) (xy 10.173989 -8.762874) (xy 10.291199 -8.892366) (xy 10.345086 -8.951899) + (xy 10.345089 -8.951903) (xy 10.347609 -8.954687) (xy 10.490219 -9.170555) (xy 10.598534 -9.40551) + (xy 10.670065 -9.654146) (xy 10.677743 -9.713666) (xy 10.703938 -9.768958) (xy 10.757632 -9.798295) + (xy 10.775929 -9.8) (xy 13.701 -9.8) (xy 13.759191 -9.781093) (xy 13.795155 -9.731593) (xy 13.8 -9.701) + (xy 13.8 -4.563329) (xy 13.781093 -4.505138) (xy 13.731593 -4.469174) (xy 13.670407 -4.469174) (xy 13.618685 -4.508327) + (xy 13.600729 -4.5352) (xy 13.59531 -4.54331) (xy 13.528641 -4.587857) (xy 13.519078 -4.589759) + (xy 13.519076 -4.58976) (xy 13.4938 -4.594787) (xy 13.45 -4.6035) (xy 12.720047 -4.6035) (xy 12.661856 -4.622407) + (xy 12.625892 -4.671907) (xy 12.625892 -4.733093) (xy 12.652844 -4.775196) (xy 12.674486 -4.795202) + (xy 12.677899 -4.801077) (xy 12.684061 -4.807958) (xy 12.926018 -5.049915) (xy 12.934724 -5.057651) + (xy 12.962045 -5.079189) (xy 12.995655 -5.127819) (xy 12.997436 -5.13031) (xy 13.028158 -5.171903) + (xy 13.02816 -5.171907) (xy 13.032555 -5.177857) (xy 13.034947 -5.184669) (xy 13.039052 -5.190608) + (xy 13.056875 -5.246965) (xy 13.057843 -5.249868) (xy 13.077431 -5.305648) (xy 13.077668 -5.311681) + (xy 13.078191 -5.314366) (xy 13.079892 -5.319744) (xy 13.0805 -5.327469) (xy 13.0805 -5.381797) + (xy 13.080576 -5.385684) (xy 13.080592 -5.386083) (xy 13.082749 -5.440984) (xy 13.081008 -5.447551) + (xy 13.0805 -5.456776) (xy 13.0805 -5.572041) (xy 13.099407 -5.630232) (xy 13.134045 -5.657538) + (xy 13.133641 -5.658143) (xy 13.141331 -5.663281) (xy 13.141334 -5.663283) (xy 13.20031 -5.70269) + (xy 13.244857 -5.769359) (xy 13.2605 -5.848) (xy 13.2605 -6.69776) (xy 13.279407 -6.755951) (xy 13.293429 -6.769972) + (xy 13.293053 -6.770348) (xy 13.377146 -6.854441) (xy 13.386188 -6.866886) (xy 13.436642 -6.965908) + (xy 13.441397 -6.980543) (xy 13.459391 -7.094154) (xy 13.46 -7.101893) (xy 13.46 -7.45732) (xy 13.455878 -7.470005) + (xy 13.451757 -7.473) (xy 12.529 -7.473) (xy 12.470809 -7.491907) (xy 12.434845 -7.541407) (xy 12.43 -7.572) + (xy 12.43 -8.63732) (xy 12.427583 -8.644757) (xy 12.83 -8.644757) (xy 12.83 -7.88868) (xy 12.834122 -7.875995) + (xy 12.838243 -7.873) (xy 13.44432 -7.873) (xy 13.457005 -7.877122) (xy 13.46 -7.881243) (xy 13.46 -8.244107) + (xy 13.459391 -8.251846) (xy 13.441397 -8.365457) (xy 13.436642 -8.380092) (xy 13.386188 -8.479114) + (xy 13.377146 -8.491559) (xy 13.298559 -8.570146) (xy 13.286114 -8.579188) (xy 13.187092 -8.629642) + (xy 13.172457 -8.634397) (xy 13.058846 -8.652391) (xy 13.051107 -8.653) (xy 12.84568 -8.653) (xy 12.832995 -8.648878) + (xy 12.83 -8.644757) (xy 12.427583 -8.644757) (xy 12.425878 -8.650005) (xy 12.421757 -8.653) (xy 12.208893 -8.653) + (xy 12.201154 -8.652391) (xy 12.087543 -8.634397) (xy 12.072908 -8.629642) (xy 11.973886 -8.579188) + (xy 11.961441 -8.570146) (xy 11.877348 -8.486053) (xy 11.875723 -8.487678) (xy 11.835358 -8.458347) + (xy 11.80476 -8.4535) (xy 10.945 -8.4535) (xy 10.90155 -8.444857) (xy 10.875924 -8.43976) (xy 10.875922 -8.439759) + (xy 10.866359 -8.437857) (xy 10.79969 -8.39331) (xy 10.755143 -8.326641) (xy 10.753241 -8.317078) + (xy 10.75324 -8.317076) (xy 10.750608 -8.303843) (xy 10.7395 -8.248) (xy 10.7395 -7.9155) (xy 10.720593 -7.857309) + (xy 10.671093 -7.821345) (xy 10.6405 -7.8165) (xy 9.195636 -7.8165) (xy 9.135369 -7.836958) (xy 9.070899 -7.886427) + (xy 9.06575 -7.890378) (xy 8.919715 -7.950868) (xy 8.763 -7.9715) (xy 8.606285 -7.950868) (xy 8.46025 -7.890378) + (xy 8.455101 -7.886427) (xy 8.390631 -7.836958) (xy 8.330364 -7.8165) (xy 7.97461 -7.8165) (xy 7.916419 -7.835407) + (xy 7.904606 -7.845497) (xy 7.790996 -7.959108) (xy 7.763219 -8.013624) (xy 7.762 -8.029111) (xy 7.762 -8.255) + (xy 7.752171 -8.304414) (xy 7.74826 -8.324076) (xy 7.748259 -8.324078) (xy 7.746357 -8.333641) (xy 7.70181 -8.40031) + (xy 7.635141 -8.444857) (xy 7.625578 -8.446759) (xy 7.625576 -8.44676) (xy 7.596456 -8.452552) (xy 7.5565 -8.4605) + (xy 6.1595 -8.4605) (xy 6.119544 -8.452552) (xy 6.090424 -8.44676) (xy 6.090422 -8.446759) (xy 6.080859 -8.444857) + (xy 6.01419 -8.40031) (xy 5.969643 -8.333641) (xy 5.967741 -8.324079) (xy 5.966926 -8.322112) (xy 5.927189 -8.275588) + (xy 5.875463 -8.261) (xy 5.125903 -8.261) (xy 5.067712 -8.279907) (xy 5.031748 -8.329407) (xy 5.028805 -8.340685) + (xy 5.023877 -8.365457) (xy 5.020857 -8.380641) (xy 4.97631 -8.44731) (xy 4.909641 -8.491857) (xy 4.900078 -8.493759) + (xy 4.900076 -8.49376) (xy 4.8748 -8.498787) (xy 4.831 -8.5075) (xy 3.307 -8.5075) (xy 3.2632 -8.498787) + (xy 3.237924 -8.49376) (xy 3.237922 -8.493759) (xy 3.228359 -8.491857) (xy 3.16169 -8.44731) (xy 3.117143 -8.380641) + (xy 3.115241 -8.371078) (xy 3.11524 -8.371076) (xy 3.111357 -8.351554) (xy 3.1015 -8.302) (xy 3.1015 -6.778) + (xy 3.117143 -6.699359) (xy 3.16169 -6.63269) (xy 3.228359 -6.588143) (xy 3.237922 -6.586241) (xy 3.237924 -6.58624) + (xy 3.2632 -6.581213) (xy 3.307 -6.5725) (xy 4.831 -6.5725) (xy 4.8748 -6.581213) (xy 4.900076 -6.58624) + (xy 4.900078 -6.586241) (xy 4.909641 -6.588143) (xy 4.97631 -6.63269) (xy 5.020857 -6.699359) (xy 5.0365 -6.778) + (xy 5.0365 -7.261) (xy 5.055407 -7.319191) (xy 5.104907 -7.355155) (xy 5.1355 -7.36) (xy 5.875463 -7.36) + (xy 5.933654 -7.341093) (xy 5.966926 -7.298888) (xy 5.967741 -7.296921) (xy 5.969643 -7.287359) + (xy 6.01419 -7.22069) (xy 6.080859 -7.176143) (xy 6.090422 -7.174241) (xy 6.090424 -7.17424) (xy 6.1157 -7.169213) + (xy 6.1595 -7.1605) (xy 7.274388 -7.1605) (xy 7.332579 -7.141593) (xy 7.344392 -7.131504) (xy 7.405915 -7.069981) + (xy 7.413656 -7.061269) (xy 7.435189 -7.033955) (xy 7.441276 -7.029748) (xy 7.441277 -7.029747) + (xy 7.483783 -7.000369) (xy 7.486312 -6.998562) (xy 7.527903 -6.967843) (xy 7.533858 -6.963445) + (xy 7.540668 -6.961054) (xy 7.546608 -6.956948) (xy 7.553661 -6.954717) (xy 7.553666 -6.954715) + (xy 7.58973 -6.94331) (xy 7.602971 -6.939122) (xy 7.605856 -6.93816) (xy 7.661648 -6.918568) (xy 7.667688 -6.918331) + (xy 7.670367 -6.917809) (xy 7.675744 -6.916108) (xy 7.681365 -6.915666) (xy 7.681368 -6.915665) + (xy 7.681454 -6.915659) (xy 7.683469 -6.9155) (xy 7.737787 -6.9155) (xy 7.741673 -6.915424) (xy 7.78959 -6.913541) + (xy 7.789593 -6.913541) (xy 7.796984 -6.913251) (xy 7.803551 -6.914992) (xy 7.812776 -6.9155) (xy 8.330364 -6.9155) + (xy 8.390632 -6.895042) (xy 8.46025 -6.841622) (xy 8.606285 -6.781132) (xy 8.763 -6.7605) (xy 8.919715 -6.781132) + (xy 9.06575 -6.841622) (xy 9.135368 -6.895042) (xy 9.195636 -6.9155) (xy 10.442696 -6.9155) (xy 10.500887 -6.896593) + (xy 10.536851 -6.847093) (xy 10.540103 -6.805783) (xy 10.540914 -6.805719) (xy 10.54 -6.794107) + (xy 10.54 -6.537403) (xy 10.521093 -6.479212) (xy 10.471593 -6.443248) (xy 10.410407 -6.443248) + (xy 10.380737 -6.458859) (xy 10.33575 -6.493378) (xy 10.189715 -6.553868) (xy 10.060737 -6.570848) + (xy 10.039434 -6.573653) (xy 10.033 -6.5745) (xy 10.026566 -6.573653) (xy 10.005263 -6.570848) (xy 9.876285 -6.553868) + (xy 9.73025 -6.493378) (xy 9.725101 -6.489427) (xy 9.660631 -6.439958) (xy 9.600364 -6.4195) (xy 9.388918 -6.4195) + (xy 9.343973 -6.43029) (xy 9.28429 -6.4607) (xy 9.284289 -6.4607) (xy 9.27735 -6.464236) (xy 9.269656 -6.465455) + (xy 9.269655 -6.465455) (xy 9.181665 -6.479391) (xy 9.181663 -6.479391) (xy 9.177819 -6.48) (xy 8.602181 -6.48) + (xy 8.598337 -6.479391) (xy 8.598335 -6.479391) (xy 8.510345 -6.465455) (xy 8.510344 -6.465455) + (xy 8.50265 -6.464236) (xy 8.495711 -6.4607) (xy 8.49571 -6.4607) (xy 8.391321 -6.407511) (xy 8.391319 -6.40751) + (xy 8.384382 -6.403975) (xy 8.301903 -6.321496) (xy 8.247386 -6.293719) (xy 8.231899 -6.2925) (xy 7.854685 -6.2925) + (xy 7.796494 -6.311407) (xy 7.76053 -6.360907) (xy 7.757587 -6.372185) (xy 7.75262 -6.397153) (xy 7.746357 -6.428641) + (xy 7.70181 -6.49531) (xy 7.635141 -6.539857) (xy 7.625578 -6.541759) (xy 7.625576 -6.54176) (xy 7.6003 -6.546787) + (xy 7.5565 -6.5555) (xy 6.1595 -6.5555) (xy 6.1157 -6.546787) (xy 6.090424 -6.54176) (xy 6.090422 -6.541759) + (xy 6.080859 -6.539857) (xy 6.01419 -6.49531) (xy 5.969643 -6.428641) (xy 5.967741 -6.419079) (xy 5.966926 -6.417112) + (xy 5.927189 -6.370588) (xy 5.875463 -6.356) (xy 5.006377 -6.356) (xy 4.994741 -6.356686) (xy 4.993268 -6.35686) + (xy 4.960192 -6.360775) (xy 4.952915 -6.359446) (xy 4.952912 -6.359446) (xy 4.922248 -6.353846) + (xy 4.902065 -6.350159) (xy 4.899029 -6.349654) (xy 4.840565 -6.340864) (xy 4.834057 -6.337739) + (xy 4.826955 -6.336442) (xy 4.820389 -6.333031) (xy 4.820388 -6.333031) (xy 4.774525 -6.309207) + (xy 4.771746 -6.307818) (xy 4.718471 -6.282235) (xy 4.714033 -6.278133) (xy 4.711768 -6.276607) + (xy 4.706764 -6.274007) (xy 4.702479 -6.270348) (xy 4.702476 -6.270346) (xy 4.702348 -6.270237) + (xy 4.702337 -6.270227) (xy 4.700871 -6.268975) (xy 4.662433 -6.230537) (xy 4.659631 -6.227844) + (xy 4.619014 -6.190298) (xy 4.615602 -6.184423) (xy 4.609444 -6.177548) (xy 4.428392 -5.996496) + (xy 4.373875 -5.968719) (xy 4.358388 -5.9675) (xy 3.307 -5.9675) (xy 3.2632 -5.958787) (xy 3.237924 -5.95376) + (xy 3.237922 -5.953759) (xy 3.228359 -5.951857) (xy 3.16169 -5.90731) (xy 3.117143 -5.840641) (xy 3.115241 -5.831078) + (xy 3.11524 -5.831076) (xy 3.110213 -5.8058) (xy 3.1015 -5.762) (xy 3.1015 -4.238) (xy 3.117143 -4.159359) + (xy 3.16169 -4.09269) (xy 3.1698 -4.087271) (xy 3.195024 -4.070417) (xy 3.228359 -4.048143) (xy 3.237922 -4.046241) + (xy 3.237924 -4.04624) (xy 3.2632 -4.041213) (xy 3.307 -4.0325) (xy 4.831 -4.0325) (xy 4.8748 -4.041213) + (xy 4.900076 -4.04624) (xy 4.900078 -4.046241) (xy 4.909641 -4.048143) (xy 4.942976 -4.070417) (xy 4.9682 -4.087271) + (xy 4.97631 -4.09269) (xy 5.020857 -4.159359) (xy 5.0365 -4.238) (xy 5.0365 -5.289389) (xy 5.055407 -5.34758) + (xy 5.065496 -5.359393) (xy 5.132107 -5.426004) (xy 5.186624 -5.453781) (xy 5.202111 -5.455) (xy 5.875463 -5.455) + (xy 5.933654 -5.436093) (xy 5.966926 -5.393888) (xy 5.967741 -5.391921) (xy 5.969643 -5.382359) + (xy 6.01419 -5.31569) (xy 6.080859 -5.271143) (xy 6.090422 -5.269241) (xy 6.090424 -5.26924) (xy 6.1157 -5.264213) + (xy 6.1595 -5.2555) (xy 6.4355 -5.2555) (xy 6.493691 -5.236593) (xy 6.529655 -5.187093) (xy 6.5345 -5.1565) + (xy 6.5345 -4.460727) (xy 6.515593 -4.402536) (xy 6.491361 -4.381834) (xy 6.492627 -4.380092) (xy 6.486321 -4.375511) + (xy 6.479382 -4.371975) (xy 6.385525 -4.278118) (xy 6.38199 -4.271181) (xy 6.381989 -4.271179) (xy 6.362657 -4.233237) + (xy 6.325264 -4.15985) (xy 6.324045 -4.152156) (xy 6.324045 -4.152155) (xy 6.310109 -4.064165) (xy 6.3095 -4.060319) + (xy 6.3095 -3.559681) (xy 6.325264 -3.46015) (xy 6.3288 -3.453211) (xy 6.3288 -3.45321) (xy 6.379304 -3.354092) + (xy 6.385525 -3.341882) (xy 6.479382 -3.248025) (xy 6.48632 -3.24449) (xy 6.486324 -3.244487) (xy 6.535204 -3.219581) + (xy 6.578468 -3.176316) (xy 6.588039 -3.115884) (xy 6.560261 -3.061368) (xy 6.526702 -3.039324) + (xy 6.434046 -3.002639) (xy 6.423221 -2.996688) (xy 6.3068 -2.912103) (xy 6.297795 -2.903646) (xy 6.206069 -2.79277) + (xy 6.199448 -2.782337) (xy 6.138179 -2.652133) (xy 6.134362 -2.640384) (xy 6.110874 -2.517257) + (xy 6.11 -2.508005) (xy 6.11 -2.45068) (xy 6.114122 -2.437995) (xy 6.118243 -2.435) (xy 7.84432 -2.435) + (xy 7.857005 -2.439122) (xy 7.86 -2.443243) (xy 7.86 -2.490225) (xy 7.85961 -2.496413) (xy 7.846185 -2.602692) + (xy 7.843112 -2.614658) (xy 7.790137 -2.748457) (xy 7.784188 -2.759279) (xy 7.725717 -2.839757) + (xy 10.145 -2.839757) (xy 10.145 -2.651893) (xy 10.145609 -2.644154) (xy 10.163603 -2.530543) (xy 10.168358 -2.515908) + (xy 10.218812 -2.416886) (xy 10.227854 -2.404441) (xy 10.306441 -2.325854) (xy 10.318886 -2.316812) + (xy 10.417908 -2.266358) (xy 10.432543 -2.261603) (xy 10.546154 -2.243609) (xy 10.553893 -2.243) + (xy 10.78432 -2.243) (xy 10.797005 -2.247122) (xy 10.8 -2.251243) (xy 10.8 -2.83232) (xy 10.795878 -2.845005) + (xy 10.791757 -2.848) (xy 10.16068 -2.848) (xy 10.147995 -2.843878) (xy 10.145 -2.839757) (xy 7.725717 -2.839757) + (xy 7.699603 -2.8757) (xy 7.691146 -2.884705) (xy 7.58027 -2.976431) (xy 7.569837 -2.983052) (xy 7.441148 -3.043608) + (xy 7.396546 -3.085492) (xy 7.385081 -3.145594) (xy 7.411132 -3.200956) (xy 7.438353 -3.221394) + (xy 7.464736 -3.234838) (xy 7.483679 -3.244489) (xy 7.483681 -3.24449) (xy 7.490618 -3.248025) (xy 7.584475 -3.341882) + (xy 7.590697 -3.354092) (xy 7.6412 -3.45321) (xy 7.6412 -3.453211) (xy 7.644736 -3.46015) (xy 7.6605 -3.559681) + (xy 7.6605 -4.060319) (xy 7.659891 -4.064165) (xy 7.645955 -4.152155) (xy 7.645955 -4.152156) (xy 7.644736 -4.15985) + (xy 7.607343 -4.233237) (xy 7.588011 -4.271179) (xy 7.58801 -4.271181) (xy 7.584475 -4.278118) (xy 7.490618 -4.371975) + (xy 7.483679 -4.375511) (xy 7.477373 -4.380092) (xy 7.479309 -4.382757) (xy 7.446278 -4.415807) + (xy 7.4355 -4.460727) (xy 7.4355 -5.1565) (xy 7.454407 -5.214691) (xy 7.503907 -5.250655) (xy 7.5345 -5.2555) + (xy 7.5565 -5.2555) (xy 7.6003 -5.264213) (xy 7.625576 -5.26924) (xy 7.625578 -5.269241) (xy 7.635141 -5.271143) + (xy 7.70181 -5.31569) (xy 7.723066 -5.347502) (xy 7.771115 -5.385381) (xy 7.805381 -5.3915) (xy 8.231899 -5.3915) + (xy 8.29009 -5.372593) (xy 8.301903 -5.362504) (xy 8.384382 -5.280025) (xy 8.391319 -5.27649) (xy 8.391321 -5.276489) + (xy 8.449277 -5.246959) (xy 8.50265 -5.219764) (xy 8.510344 -5.218545) (xy 8.510345 -5.218545) (xy 8.598335 -5.204609) + (xy 8.598337 -5.204609) (xy 8.602181 -5.204) (xy 8.950889 -5.204) (xy 9.00908 -5.185093) (xy 9.045044 -5.135593) + (xy 9.045044 -5.074407) (xy 9.020894 -5.034997) (xy 8.919891 -4.933995) (xy 8.865376 -4.906219) + (xy 8.849889 -4.905) (xy 8.602181 -4.905) (xy 8.598337 -4.904391) (xy 8.598335 -4.904391) (xy 8.510345 -4.890455) + (xy 8.510344 -4.890455) (xy 8.50265 -4.889236) (xy 8.495711 -4.8857) (xy 8.49571 -4.8857) (xy 8.391321 -4.832511) + (xy 8.391319 -4.83251) (xy 8.384382 -4.828975) (xy 8.290525 -4.735118) (xy 8.28699 -4.728181) (xy 8.286989 -4.728179) + (xy 8.2338 -4.62379) (xy 8.230264 -4.61685) (xy 8.229045 -4.609156) (xy 8.229045 -4.609155) (xy 8.217332 -4.5352) + (xy 8.2145 -4.517319) (xy 8.2145 -4.016681) (xy 8.230264 -3.91715) (xy 8.2338 -3.910211) (xy 8.2338 -3.91021) + (xy 8.286389 -3.807) (xy 8.290525 -3.798882) (xy 8.384382 -3.705025) (xy 8.391319 -3.70149) (xy 8.391321 -3.701489) + (xy 8.49571 -3.6483) (xy 8.50265 -3.644764) (xy 8.510344 -3.643545) (xy 8.510345 -3.643545) (xy 8.598335 -3.629609) + (xy 8.598337 -3.629609) (xy 8.602181 -3.629) (xy 9.177819 -3.629) (xy 9.181663 -3.629609) (xy 9.181665 -3.629609) + (xy 9.269655 -3.643545) (xy 9.269656 -3.643545) (xy 9.27735 -3.644764) (xy 9.28429 -3.6483) (xy 9.388679 -3.701489) + (xy 9.388681 -3.70149) (xy 9.395618 -3.705025) (xy 9.489475 -3.798882) (xy 9.493612 -3.807) (xy 9.501885 -3.823238) + (xy 9.515868 -3.850681) (xy 9.559131 -3.893944) (xy 9.619563 -3.903516) (xy 9.67408 -3.875739) (xy 9.682619 -3.866002) + (xy 9.731847 -3.801847) (xy 9.85725 -3.705622) (xy 10.003285 -3.645132) (xy 10.058243 -3.637897) + (xy 10.071934 -3.636094) (xy 10.127158 -3.609753) (xy 10.156353 -3.555982) (xy 10.156792 -3.522454) + (xy 10.145609 -3.451846) (xy 10.145 -3.444107) (xy 10.145 -3.26368) (xy 10.149122 -3.250995) (xy 10.153243 -3.248) + (xy 11.83932 -3.248) (xy 11.852005 -3.252122) (xy 11.855 -3.256243) (xy 11.855 -3.448) (xy 11.856995 -3.448) + (xy 11.869586 -3.500286) (xy 11.916139 -3.53999) (xy 11.953961 -3.5475) (xy 12.288423 -3.5475) (xy 12.346614 -3.528593) + (xy 12.370738 -3.503502) (xy 12.40469 -3.45269) (xy 12.471359 -3.408143) (xy 12.480922 -3.406241) + (xy 12.480924 -3.40624) (xy 12.5062 -3.401213) (xy 12.55 -3.3925) (xy 13.45 -3.3925) (xy 13.4938 -3.401213) + (xy 13.519076 -3.40624) (xy 13.519078 -3.406241) (xy 13.528641 -3.408143) (xy 13.59531 -3.45269) + (xy 13.618685 -3.487673) (xy 13.666735 -3.525552) (xy 13.727873 -3.527954) (xy 13.778747 -3.493961) + (xy 13.8 -3.432671) (xy 13.8 -2.663329) (xy 13.781093 -2.605138) (xy 13.731593 -2.569174) (xy 13.670407 -2.569174) + (xy 13.618685 -2.608327) (xy 13.600729 -2.6352) (xy 13.59531 -2.64331) (xy 13.528641 -2.687857) + (xy 13.519078 -2.689759) (xy 13.519076 -2.68976) (xy 13.4938 -2.694787) (xy 13.45 -2.7035) (xy 12.55 -2.7035) + (xy 12.5062 -2.694787) (xy 12.480924 -2.68976) (xy 12.480922 -2.689759) (xy 12.471359 -2.687857) + (xy 12.40469 -2.64331) (xy 12.402509 -2.646574) (xy 12.36458 -2.627249) (xy 12.304148 -2.63682) + (xy 12.288826 -2.646488) (xy 12.288714 -2.646574) (xy 12.24075 -2.683378) (xy 12.094715 -2.743868) + (xy 11.938 -2.7645) (xy 11.938354 -2.76719) (xy 11.891048 -2.78256) (xy 11.855084 -2.832061) (xy 11.850878 -2.845005) + (xy 11.846757 -2.848) (xy 11.21568 -2.848) (xy 11.202995 -2.843878) (xy 11.2 -2.839757) (xy 11.2 -2.25868) + (xy 11.204122 -2.245995) (xy 11.208243 -2.243) (xy 11.234621 -2.243) (xy 11.292812 -2.224093) (xy 11.328776 -2.174593) + (xy 11.332773 -2.156926) (xy 11.353132 -2.002285) (xy 11.413622 -1.85625) (xy 11.509847 -1.730847) + (xy 11.63525 -1.634622) (xy 11.650496 -1.628307) (xy 11.765808 -1.580543) (xy 11.781285 -1.574132) + (xy 11.938 -1.5535) (xy 12.094715 -1.574132) (xy 12.100712 -1.576616) (xy 12.234757 -1.632139) (xy 12.234761 -1.632141) + (xy 12.24075 -1.634622) (xy 12.241244 -1.635001) (xy 12.287888 -1.6475) (xy 12.288423 -1.6475) (xy 12.346614 -1.628593) + (xy 12.370738 -1.603502) (xy 12.40469 -1.55269) (xy 12.471359 -1.508143) (xy 12.480922 -1.506241) + (xy 12.480924 -1.50624) (xy 12.5062 -1.501213) (xy 12.55 -1.4925) (xy 13.45 -1.4925) (xy 13.4938 -1.501213) + (xy 13.519076 -1.50624) (xy 13.519078 -1.506241) (xy 13.528641 -1.508143) (xy 13.59531 -1.55269) + (xy 13.618685 -1.587673) (xy 13.666735 -1.625552) (xy 13.727873 -1.627954) (xy 13.778747 -1.593961) + (xy 13.8 -1.532671) (xy 13.8 -0.299) (xy 13.781093 -0.240809) (xy 13.731593 -0.204845) (xy 13.701 -0.2) + (xy 10.77464 -0.2) (xy 10.716449 -0.218907) (xy 10.680485 -0.268407) (xy 10.677159 -0.281724) (xy 10.652576 -0.420437) + (xy 10.652574 -0.420444) (xy 10.651919 -0.424141) (xy 10.568756 -0.669131) (xy 10.487254 -0.826029) + (xy 10.451228 -0.895382) (xy 10.451225 -0.895387) (xy 10.449492 -0.898723) (xy 10.296872 -1.107634) + (xy 10.114409 -1.291055) (xy 10.11139 -1.293285) (xy 10.111384 -1.29329) (xy 9.90933 -1.442528) + (xy 9.9063 -1.444766) (xy 9.739222 -1.532671) (xy 9.680663 -1.563481) (xy 9.680658 -1.563483) (xy 9.677336 -1.565231) + (xy 9.654012 -1.573285) (xy 9.497128 -1.627457) (xy 9.432784 -1.649675) (xy 9.429087 -1.65035) (xy 9.42908 -1.650352) + (xy 9.181399 -1.695586) (xy 9.1814 -1.695586) (xy 9.178273 -1.696157) (xy 9.095405 -1.7005) (xy 8.934271 -1.7005) + (xy 8.857232 -1.69464) (xy 8.745779 -1.686162) (xy 8.745773 -1.686161) (xy 8.742025 -1.685876) (xy 8.489986 -1.627457) + (xy 8.486491 -1.626063) (xy 8.486489 -1.626062) (xy 8.406028 -1.593961) (xy 8.249684 -1.531586) + (xy 8.026648 -1.40047) (xy 8.02373 -1.398094) (xy 8.023728 -1.398093) (xy 7.923332 -1.316358) (xy 7.826011 -1.237126) + (xy 7.823491 -1.234342) (xy 7.823489 -1.23434) (xy 7.654914 -1.048101) (xy 7.654911 -1.048097) (xy 7.652391 -1.045313) + (xy 7.509781 -0.829445) (xy 7.401466 -0.59449) (xy 7.329935 -0.345854) (xy 7.323892 -0.299) (xy 7.322258 -0.286335) + (xy 7.296062 -0.231042) (xy 7.242368 -0.201705) (xy 7.224071 -0.2) (xy 0.299 -0.2) (xy 0.240809 -0.218907) + (xy 0.204845 -0.268407) (xy 0.2 -0.299) (xy 0.2 -0.476) (xy 0.218907 -0.534191) (xy 0.268407 -0.570155) + (xy 0.299 -0.575) (xy 2.552 -0.575) (xy 2.552 -2.251757) (xy 2.902 -2.251757) (xy 2.902 -1.701893) + (xy 2.902609 -1.694154) (xy 2.920603 -1.580543) (xy 2.925358 -1.565908) (xy 2.975812 -1.466886) + (xy 2.984854 -1.454441) (xy 3.063441 -1.375854) (xy 3.075886 -1.366812) (xy 3.174908 -1.316358) + (xy 3.189543 -1.311603) (xy 3.303154 -1.293609) (xy 3.310893 -1.293) (xy 3.85332 -1.293) (xy 3.866005 -1.297122) + (xy 3.869 -1.301243) (xy 3.869 -2.24432) (xy 3.866583 -2.251757) (xy 4.269 -2.251757) (xy 4.269 -1.30868) + (xy 4.273122 -1.295995) (xy 4.277243 -1.293) (xy 4.827107 -1.293) (xy 4.834846 -1.293609) (xy 4.948457 -1.311603) + (xy 4.963092 -1.316358) (xy 5.062114 -1.366812) (xy 5.074559 -1.375854) (xy 5.153146 -1.454441) + (xy 5.162188 -1.466886) (xy 5.212642 -1.565908) (xy 5.217397 -1.580543) (xy 5.235391 -1.694154) + (xy 5.236 -1.701893) (xy 5.236 -2.026757) (xy 6.11 -2.026757) (xy 6.11 -1.979775) (xy 6.11039 -1.973587) + (xy 6.123815 -1.867308) (xy 6.126888 -1.855342) (xy 6.179863 -1.721543) (xy 6.185812 -1.710721) + (xy 6.270397 -1.5943) (xy 6.278854 -1.585295) (xy 6.38973 -1.493569) (xy 6.400163 -1.486948) (xy 6.530367 -1.425679) + (xy 6.542116 -1.421862) (xy 6.665243 -1.398374) (xy 6.674495 -1.3975) (xy 6.76932 -1.3975) (xy 6.782005 -1.401622) + (xy 6.785 -1.405743) (xy 6.785 -2.01932) (xy 6.782583 -2.026757) (xy 7.185 -2.026757) (xy 7.185 -1.41318) + (xy 7.189122 -1.400495) (xy 7.193243 -1.3975) (xy 7.277725 -1.3975) (xy 7.283913 -1.39789) (xy 7.390192 -1.411315) + (xy 7.402158 -1.414388) (xy 7.535957 -1.467363) (xy 7.546779 -1.473312) (xy 7.6632 -1.557897) (xy 7.672205 -1.566354) + (xy 7.763931 -1.67723) (xy 7.770552 -1.687663) (xy 7.831821 -1.817867) (xy 7.835638 -1.829616) (xy 7.859126 -1.952743) + (xy 7.86 -1.961995) (xy 7.86 -2.01932) (xy 7.855878 -2.032005) (xy 7.851757 -2.035) (xy 7.20068 -2.035) + (xy 7.187995 -2.030878) (xy 7.185 -2.026757) (xy 6.782583 -2.026757) (xy 6.780878 -2.032005) (xy 6.776757 -2.035) + (xy 6.12568 -2.035) (xy 6.112995 -2.030878) (xy 6.11 -2.026757) (xy 5.236 -2.026757) (xy 5.236 -2.24432) + (xy 5.231878 -2.257005) (xy 5.227757 -2.26) (xy 4.28468 -2.26) (xy 4.271995 -2.255878) (xy 4.269 -2.251757) + (xy 3.866583 -2.251757) (xy 3.864878 -2.257005) (xy 3.860757 -2.26) (xy 2.91768 -2.26) (xy 2.904995 -2.255878) + (xy 2.902 -2.251757) (xy 2.552 -2.251757) (xy 2.552 -3.218107) (xy 2.902 -3.218107) (xy 2.902 -2.67568) + (xy 2.906122 -2.662995) (xy 2.910243 -2.66) (xy 3.85332 -2.66) (xy 3.866005 -2.664122) (xy 3.869 -2.668243) + (xy 3.869 -3.61132) (xy 3.866583 -3.618757) (xy 4.269 -3.618757) (xy 4.269 -2.67568) (xy 4.273122 -2.662995) + (xy 4.277243 -2.66) (xy 5.22032 -2.66) (xy 5.233005 -2.664122) (xy 5.236 -2.668243) (xy 5.236 -3.218107) + (xy 5.235391 -3.225846) (xy 5.217397 -3.339457) (xy 5.212642 -3.354092) (xy 5.162188 -3.453114) + (xy 5.153146 -3.465559) (xy 5.074559 -3.544146) (xy 5.062114 -3.553188) (xy 4.963092 -3.603642) + (xy 4.948457 -3.608397) (xy 4.834846 -3.626391) (xy 4.827107 -3.627) (xy 4.28468 -3.627) (xy 4.271995 -3.622878) + (xy 4.269 -3.618757) (xy 3.866583 -3.618757) (xy 3.864878 -3.624005) (xy 3.860757 -3.627) (xy 3.310893 -3.627) + (xy 3.303154 -3.626391) (xy 3.189543 -3.608397) (xy 3.174908 -3.603642) (xy 3.075886 -3.553188) + (xy 3.063441 -3.544146) (xy 2.984854 -3.465559) (xy 2.975812 -3.453114) (xy 2.925358 -3.354092) + (xy 2.920603 -3.339457) (xy 2.902609 -3.225846) (xy 2.902 -3.218107) (xy 2.552 -3.218107) (xy 2.552 -9.425) + (xy 0.299 -9.425) (xy 0.240809 -9.443907) (xy 0.204845 -9.493407) (xy 0.2 -9.524) (xy 0.2 -9.701) + (xy 0.218907 -9.759191) (xy 0.268407 -9.795155) (xy 0.299 -9.8) (xy 7.22536 -9.8) + ) + ) + ) ) diff --git a/hw/sch_pcb/TFPROBE01A.kicad_prl b/hw/sch_pcb/TFPROBE01A.kicad_prl index 98ad86e..79712a5 100644 --- a/hw/sch_pcb/TFPROBE01A.kicad_prl +++ b/hw/sch_pcb/TFPROBE01A.kicad_prl @@ -17,16 +17,16 @@ "ratsnest_display_mode": 0, "selection_filter": { "dimensions": true, - "footprints": true, - "graphics": true, - "keepouts": true, + "footprints": false, + "graphics": false, + "keepouts": false, "lockedItems": true, - "otherItems": true, - "pads": true, - "text": true, - "tracks": true, - "vias": true, - "zones": true + "otherItems": false, + "pads": false, + "text": false, + "tracks": false, + "vias": false, + "zones": false }, "visible_items": [ 0, @@ -67,6 +67,12 @@ "visible_layers": "fffffff_ffffffff", "zone_display_mode": 0 }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, "meta": { "filename": "TFPROBE01A.kicad_prl", "version": 3 diff --git a/hw/sch_pcb/TFPROBE01A.kicad_pro b/hw/sch_pcb/TFPROBE01A.kicad_pro index b8339a9..ace68e4 100644 --- a/hw/sch_pcb/TFPROBE01A.kicad_pro +++ b/hw/sch_pcb/TFPROBE01A.kicad_pro @@ -137,6 +137,13 @@ "zones_allow_external_fillets": false, "zones_use_no_outline": true }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, "layer_presets": [], "viewports": [] }, @@ -395,14 +402,76 @@ "gencad": "", "idf": "", "netlist": "", + "plot": "", + "pos_files": "", "specctra_dsn": "", "step": "", + "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, @@ -419,6 +488,11 @@ "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.3, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.3 }, @@ -444,6 +518,7 @@ "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, + "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 @@ -451,7 +526,7 @@ "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", - "" + "Root" ] ], "text_variables": {} diff --git a/hw/sch_pcb/TFPROBE01A.kicad_sch b/hw/sch_pcb/TFPROBE01A.kicad_sch index 576dc32..4f025b1 100644 --- a/hw/sch_pcb/TFPROBE01A.kicad_sch +++ b/hw/sch_pcb/TFPROBE01A.kicad_sch @@ -1,1549 +1,3526 @@ -(kicad_sch (version 20230121) (generator eeschema) - - (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) - - (paper "A4") - - (title_block - (title "TFPROBE01A") - (date "2021-01-23") - (company "ThunderFly s.r.o.") - (comment 1 "Omnipolar magnetic and \\n reflective optical probe") - (comment 3 "Sensor for \\n TFRPM measuring device") - ) - - (lib_symbols - (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (at 0.635 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C" (at 0.635 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0.9652 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Unpolarized capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "C_*" (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)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.032 0.762) - (xy 2.032 0.762) - ) - (stroke (width 0.508) (type default)) - (fill (type none)) - ) - ) - (symbol "C_1_1" - (pin passive line (at 0 3.81 270) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "R" (at 2.032 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R" (at 0 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R res resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (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)) - (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 "MLAB_HEADER:HEADER_1x03" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 -5.08 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "HEADER_1x03" (at 0 5.08 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 2.54 0) - (effects (font (size 1.524 1.524))) - ) - (property "Datasheet" "" (at 0 2.54 0) - (effects (font (size 1.524 1.524))) - ) - (property "ki_keywords" "1x03, header, connector, pinheader" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "1x03 2.54 mm pitch header" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "HEADER_1x03_0_1" - (rectangle (start -1.27 3.81) (end 1.27 -3.81) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (circle (center 0 -2.54) (radius 0.381) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -2.54) - (xy -0.381 -2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 0) - (xy -0.381 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 2.54) - (xy -0.381 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 0 0) (radius 0.381) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 0 2.54) (radius 0.381) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "HEADER_1x03_1_1" - (pin input line (at -5.08 2.54 0) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -5.08 0 0) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -5.08 -2.54 0) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "MLAB_IO:AH3572" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 8.89 6.35 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "AH3572" (at 8.89 3.81 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 8.89 -2.54 0) - (effects (font (size 1.27 1.27) italic) (justify left) hide) - ) - (property "Datasheet" "https://cz.mouser.com/datasheet/2/115/AH3572-1483253.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "HIGH VOLTAGE HIGH SENSITIVITY" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "HIGH VOLTAGE HIGH SENSITIVITY" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Allegro*SIP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "AH3572_0_1" - (rectangle (start -5.08 5.08) (end 7.62 -5.08) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "AH3572_1_1" - (pin power_in line (at 0 7.62 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 10.16 0 180) (length 2.54) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -7.62 90) (length 2.54) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "MLAB_IO:VCNT2020" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "U2" (at 1.3796 16.9864 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "VCNT2020" (at 1.3796 14.6877 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Mlab_IO:XDCR_VCNT2020" (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Datasheet" "https://www.vishay.com/docs/84285/vcnt2020.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Field4" "Vishay" (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Field5" "Manufacturer Recommendation" (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "UST_ID" "5f9d106a12875025b39777fa" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "VCNT2020_0_0" - (arc (start -10.2616 -6.35) (mid -9.4848 -8.1745) (end -7.6454 -8.9154) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (circle (center -10.16 10.16) (radius 0.127) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (circle (center -10.16 10.16) (radius 0.254) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start -7.6454 8.89) (mid -9.4834 8.1657) (end -10.2616 6.35) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start -5.2324 -8.89) (mid -3.4378 -8.1625) (end -2.6924 -6.3754) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start -2.6924 6.3246) (mid -3.3336 8.0872) (end -5.0292 8.89) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 -12.7) - (xy -12.7 -7.62) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 -7.62) - (xy -12.7 7.62) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 -7.62) - (xy -11.43 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 7.62) - (xy -12.7 12.7) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 7.62) - (xy -11.43 7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 12.7) - (xy 12.7 12.7) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 -11.43) - (xy 11.43 -11.43) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 -7.62) - (xy -11.43 -11.43) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 -7.62) - (xy -7.62 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 7.62) - (xy -11.43 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 7.62) - (xy -7.62 7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -11.43 11.43) - (xy -11.43 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -10.2616 -6.35) - (xy -10.2616 6.35) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.6454 8.89) - (xy -5.0292 8.89) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 -7.62) - (xy -7.62 -3.81) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 2.794) - (xy -7.62 3.048) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 3.048) - (xy -7.366 3.302) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 3.81) - (xy -7.62 3.048) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 3.81) - (xy -5.08 1.27) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.62 7.62) - (xy -7.62 3.81) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.366 3.302) - (xy -7.366 3.556) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.366 3.302) - (xy -7.112 3.556) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.366 3.556) - (xy -7.112 3.556) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.366 3.81) - (xy -7.366 3.556) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.112 3.556) - (xy -6.858 3.81) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.112 3.81) - (xy -7.62 3.81) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -7.112 3.81) - (xy -7.366 3.81) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -6.858 3.81) - (xy -7.112 3.81) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -6.858 3.81) - (xy -6.604 3.81) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -6.604 3.81) - (xy -7.62 2.794) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -5.2324 -8.89) - (xy -7.6454 -8.9154) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -5.08 -3.81) - (xy -5.08 -1.27) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -5.08 -1.27) - (xy -7.62 -3.81) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -5.08 1.27) - (xy -5.08 -1.27) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -5.08 1.27) - (xy -5.08 3.81) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.6924 6.3246) - (xy -2.6924 -6.3754) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.4638 -6.3246) - (xy 2.4638 6.3754) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.302 -1.524) - (xy 3.4544 -1.1684) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.4544 -1.1684) - (xy 3.683 -1.3716) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.556 -2.032) - (xy 3.7084 -1.6764) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.683 -1.3716) - (xy 3.302 -1.524) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.7084 -1.6764) - (xy 3.937 -1.8796) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.937 -1.8796) - (xy 3.556 -2.032) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 4.318 -0.508) - (xy 3.302 -1.524) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 4.572 -1.016) - (xy 3.556 -2.032) - ) - (stroke (width 0.127) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 4.826 1.016) - (xy 6.35 -1.524) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 5.08 8.89) - (xy 7.62 8.89) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 -7.62) - (xy 11.43 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 -1.524) - (xy 5.08 -1.524) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 -1.524) - (xy 7.62 -1.524) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 -1.524) - (xy 7.874 1.016) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 7.62) - (xy 6.35 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 7.5438 -8.89) - (xy 4.9022 -8.89) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 7.874 1.016) - (xy 4.826 1.016) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 10.0838 6.4262) - (xy 10.0838 -6.2738) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 -11.43) - (xy 11.43 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 -7.62) - (xy 11.43 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 -7.62) - (xy 12.7 -7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 7.62) - (xy 6.35 7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 7.62) - (xy 11.43 11.43) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 7.62) - (xy 12.7 7.62) - ) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 11.43 11.43) - (xy -11.43 11.43) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 12.7 -12.7) - (xy -12.7 -12.7) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 12.7 -7.62) - (xy 12.7 -12.7) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 12.7 7.62) - (xy 12.7 -7.62) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 12.7 12.7) - (xy 12.7 7.62) - ) - (stroke (width 0.4064) (type default)) - (fill (type none)) - ) - (arc (start 2.4638 -6.3246) (mid 3.1556 -8.1084) (end 4.9022 -8.89) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start 5.08 8.89) (mid 3.2511 8.1745) (end 2.4638 6.3754) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start 7.5438 -8.89) (mid 9.3592 -8.1116) (end 10.0838 -6.2738) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (arc (start 10.0838 6.4262) (mid 9.3622 8.1684) (end 7.62 8.89) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (text "Anode" (at 15.24 8.636 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - ) - (text "Cathode" (at 14.986 -6.604 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - ) - (text "Collector" (at -22.86 -6.35 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - ) - (text "Emitter" (at -21.59 8.89 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - ) - (pin passive line (at -17.78 7.62 0) (length 5.08) - (name "~" (effects (font (size 1.016 1.016)))) - (number "1" (effects (font (size 1.016 1.016)))) - ) - (pin passive line (at -17.78 -7.62 0) (length 5.08) - (name "~" (effects (font (size 1.016 1.016)))) - (number "2" (effects (font (size 1.016 1.016)))) - ) - (pin passive line (at 17.78 7.62 180) (length 5.08) - (name "~" (effects (font (size 1.016 1.016)))) - (number "3" (effects (font (size 1.016 1.016)))) - ) - (pin passive line (at 17.78 -7.62 180) (length 5.08) - (name "~" (effects (font (size 1.016 1.016)))) - (number "4" (effects (font (size 1.016 1.016)))) - ) - ) - ) - (symbol "MLAB_MECHANICAL:HOLE" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "M" (at 0 2.54 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "HOLE" (at 0 -2.54 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524))) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524))) - ) - (property "ki_keywords" "HOLE, X, M" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "HOLE_0_1" - (circle (center 0 0) (radius 0.635) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "HOLE_1_1" - (pin input line (at 1.27 0 180) (length 0.635) - (name "~" (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" (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "power-flag" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (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)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default)) - (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" (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 0 -3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "power-flag" (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" (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)) - (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 146.05 109.22) (diameter 1.016) (color 0 0 0 0) - (uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3) - ) - (junction (at 156.21 111.76) (diameter 1.016) (color 0 0 0 0) - (uuid c144caa5-b0d4-4cef-840a-d4ad178a2102) - ) - - (no_connect (at 266.7 17.78) (uuid 5a41c2f2-ab09-4c3b-98d3-16e5767fa56f)) - (no_connect (at 257.81 17.78) (uuid f523f851-2283-4793-877c-967357e39184)) - - (wire (pts (xy 115.57 107.95) (xy 115.57 109.22)) - (stroke (width 0) (type solid)) - (uuid 0d3ea9f2-ce09-4dde-a766-4120cc963080) - ) - (wire (pts (xy 71.12 96.52) (xy 71.12 97.79)) - (stroke (width 0) (type solid)) - (uuid 2a99fe95-6895-4623-9c39-21049ea749a8) - ) - (wire (pts (xy 146.05 111.76) (xy 146.05 113.03)) - (stroke (width 0) (type solid)) - (uuid 3e491a5e-3d5e-4f94-9d95-4065a3806597) - ) - (wire (pts (xy 146.05 106.68) (xy 146.05 109.22)) - (stroke (width 0) (type solid)) - (uuid 57b9cc0e-6e96-468b-8f9d-ce7f8b3d2cf4) - ) - (wire (pts (xy 146.05 109.22) (xy 158.75 109.22)) - (stroke (width 0) (type solid)) - (uuid 584c7a1c-3c37-4ee8-ba8a-a4975df09c78) - ) - (wire (pts (xy 146.05 120.65) (xy 146.05 121.92)) - (stroke (width 0) (type solid)) - (uuid 59f1c90e-a642-4c5a-8278-5834c9218af4) - ) - (wire (pts (xy 100.33 64.77) (xy 101.6 64.77)) - (stroke (width 0) (type solid)) - (uuid 718d566e-8013-41da-b618-f3468797a56b) - ) - (wire (pts (xy 156.21 96.52) (xy 156.21 111.76)) - (stroke (width 0) (type solid)) - (uuid 75cee035-349d-41d4-939a-a75835263bf8) - ) - (wire (pts (xy 143.51 109.22) (xy 146.05 109.22)) - (stroke (width 0) (type solid)) - (uuid 7d7e9c41-83b7-4850-ad34-b6de203c304b) - ) - (wire (pts (xy 90.17 72.39) (xy 90.17 73.66)) - (stroke (width 0) (type solid)) - (uuid 8964f2db-b0f5-4397-854c-4f066943a27a) - ) - (wire (pts (xy 113.03 107.95) (xy 115.57 107.95)) - (stroke (width 0) (type solid)) - (uuid 8a032fb5-81c1-4304-a94f-560dd2ad7f9c) - ) - (wire (pts (xy 156.21 114.3) (xy 156.21 121.92)) - (stroke (width 0) (type solid)) - (uuid 903ff689-800e-4482-8dfb-47bcf2207366) - ) - (wire (pts (xy 158.75 114.3) (xy 156.21 114.3)) - (stroke (width 0) (type solid)) - (uuid 93a0edc4-68c8-4e49-ba7c-0cc410fc8702) - ) - (wire (pts (xy 146.05 96.52) (xy 146.05 99.06)) - (stroke (width 0) (type solid)) - (uuid 9e6489b4-516c-481f-a06a-bff3284edf93) - ) - (wire (pts (xy 71.12 107.95) (xy 77.47 107.95)) - (stroke (width 0) (type solid)) - (uuid a88dd6ac-c270-4f66-9781-fd58b9b5ee95) - ) - (wire (pts (xy 156.21 111.76) (xy 158.75 111.76)) - (stroke (width 0) (type solid)) - (uuid b145a5d8-320f-4e29-bb68-8b8c6e1bcad8) - ) - (wire (pts (xy 71.12 105.41) (xy 71.12 107.95)) - (stroke (width 0) (type solid)) - (uuid b7d2f967-5b08-4605-acc8-e19d3fb6b2af) - ) - (wire (pts (xy 156.21 111.76) (xy 146.05 111.76)) - (stroke (width 0) (type solid)) - (uuid ba8f4e56-59b8-49a2-888e-087edf881bc8) - ) - (wire (pts (xy 71.12 123.19) (xy 71.12 129.54)) - (stroke (width 0) (type solid)) - (uuid d34b3827-8977-4e18-ac32-7dfc444f3577) - ) - (wire (pts (xy 90.17 54.61) (xy 90.17 57.15)) - (stroke (width 0) (type solid)) - (uuid df0a3abb-426c-4087-a7ba-a5115da866db) - ) - (wire (pts (xy 113.03 123.19) (xy 120.65 123.19)) - (stroke (width 0) (type solid)) - (uuid e031c558-43db-4df6-819b-91804c80fda6) - ) - (wire (pts (xy 77.47 123.19) (xy 71.12 123.19)) - (stroke (width 0) (type solid)) - (uuid f1b934b1-534c-485e-982a-e1ffef7fac2c) - ) - - (text "HALL EFFECT OMNIPOLAR SWITCH" (at 107.95 48.26 0) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 5eb72c5a-7204-4ded-8513-cdb302a8a46b) - ) - (text "Reflective Optical Sensor" (at 106.68 95.25 0) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid bc29a6df-2d67-46d3-8ab2-8234115ebda9) - ) - - (label "COUNT" (at 101.6 64.77 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 2765cb87-1082-4d1a-8dc1-6d4cf6637b68) - ) - (label "COUNT" (at 143.51 109.22 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right bottom)) - (uuid 52850eb0-fb23-4ac8-992f-68e6d7bdb584) - ) - (label "COUNT" (at 120.65 123.19 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 731770b6-f222-4c59-919e-9dd70618bab0) - ) - - (symbol (lib_id "MLAB_IO:VCNT2020") (at 95.25 115.57 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 08989b57-1670-408e-a8a9-fe966c7c308b) - (property "Reference" "U2" (at 93.8704 98.5836 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "VCNT2020" (at 93.8704 100.8823 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Mlab_IO:XDCR_VCNT2020" (at 95.25 115.57 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Datasheet" "https://www.vishay.com/docs/84285/vcnt2020.pdf" (at 95.25 115.57 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Field4" "Vishay" (at 95.25 115.57 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "Field5" "Manufacturer Recommendation" (at 95.25 115.57 0) - (effects (font (size 1.27 1.27)) (justify left bottom) hide) - ) - (property "UST_ID" "5f9d106a12875025b39777fa" (at 95.25 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 278bab47-96bf-4c51-aabd-039ad8bbec1b)) - (pin "2" (uuid f6e00d94-ecf5-4a95-b438-eaef048871bb)) - (pin "3" (uuid ab93043c-cbe5-4805-9222-9256f3836707)) - (pin "4" (uuid f74d6ecb-9b7d-44e4-8c8f-f128877f34ea)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "U2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "MLAB_MECHANICAL:HOLE") (at 257.81 16.51 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 196227d8-be2a-4b6f-852b-6ff909ae9882) - (property "Reference" "M3" (at 259.2071 15.6007 90) - (effects (font (size 1.524 1.524)) (justify left)) - ) - (property "Value" "HOLE" (at 259.2071 18.3083 90) - (effects (font (size 1.524 1.524)) (justify left)) - ) - (property "Footprint" "Mlab_Mechanical:dira_3mm" (at 257.81 16.51 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 257.81 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (pin "1" (uuid 24a4f12b-6087-4022-a6a2-ec11c0b723b4)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "M3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "MLAB_MECHANICAL:HOLE") (at 266.7 16.51 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 3b547b03-2d6f-403a-a314-16fe37d96cd6) - (property "Reference" "M4" (at 268.0971 15.6007 90) - (effects (font (size 1.524 1.524)) (justify left)) - ) - (property "Value" "HOLE" (at 268.0971 18.3083 90) - (effects (font (size 1.524 1.524)) (justify left)) - ) - (property "Footprint" "Mlab_Mechanical:dira_3mm" (at 266.7 16.51 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 266.7 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (pin "1" (uuid a058159b-8833-4ef7-a7ec-98d71dd7eb05)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "M4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 71.12 96.52 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 3e8b6812-7e62-47d5-8dc1-3c85b6f1043c) - (property "Reference" "#PWR01" (at 71.12 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 71.4883 92.1956 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 71.12 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 71.12 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 08af266b-1be1-4eb0-9074-74b81c439ab7)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR01") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 115.57 109.22 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 5266dedf-774a-4f3a-909f-95fd66165a4b) - (property "Reference" "#PWR05" (at 115.57 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 115.6843 113.5444 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 115.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 115.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 87456fbd-092b-49f0-975c-0de0ef31b847)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR05") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 146.05 121.92 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 52ac2c89-9074-48cf-9ce0-beaabc7d11b3) - (property "Reference" "#PWR07" (at 146.05 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 146.1643 126.2444 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 146.05 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 146.05 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9936e0a2-a50b-4f3c-adff-190c785b3060)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR07") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 90.17 54.61 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 569c5dd0-7371-44e6-b544-3e700f66a7af) - (property "Reference" "#PWR03" (at 90.17 58.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 90.5383 50.2856 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 90.17 54.61 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 90.17 54.61 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2562f65b-176d-4e93-997e-068a53574444)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR03") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 156.21 121.92 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 63a7ab1c-a63c-41ce-83cc-0a49f7f92a8b) - (property "Reference" "#PWR09" (at 156.21 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 156.3243 126.2444 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 156.21 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 156.21 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 49b39637-0e0f-4ccd-8ddd-5b722aec1c34)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR09") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 71.12 129.54 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 704b32d2-d0fb-4666-9520-030528816839) - (property "Reference" "#PWR02" (at 71.12 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 71.2343 133.8644 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 71.12 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 71.12 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 35a3c9d6-9718-47bd-a985-052daa922f1f)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR02") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 71.12 101.6 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 9e12790b-cec9-4dd8-a3af-c20d5c11d549) - (property "Reference" "R1" (at 72.8981 100.4506 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "51R" (at 72.898 102.749 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Mlab_R:SMD-0603" (at 69.342 101.6 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 71.12 101.6 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "UST_ID" "5c70984512875079b91f8953" (at 71.12 101.6 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bd141320-1d58-4a6d-8d8d-0d4934b49487)) - (pin "2" (uuid cee5667c-a1bc-4d42-b8bd-8f4b1f271fdf)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "R1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "MLAB_IO:AH3572") (at 90.17 64.77 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid a7f3953c-82c9-48f9-af66-14b131e92525) - (property "Reference" "U1" (at 84.328 63.6206 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "AH3572" (at 84.328 65.9193 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 99.06 67.31 0) - (effects (font (size 1.27 1.27) italic) (justify left) hide) - ) - (property "Datasheet" "https://cz.mouser.com/datasheet/2/115/AH3572-1483253.pdf" (at 90.17 64.77 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "UST_ID" "5f9d011812875025b39777ea" (at 90.17 64.77 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0ba46288-1c01-41d3-9ee2-12e9aa840f86)) - (pin "2" (uuid 6fb32f02-18f6-4742-a282-c89f0f950b26)) - (pin "3" (uuid ca60ed4b-1b38-4f98-8488-183c52fb8152)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "U1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C") (at 146.05 116.84 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ac907e1c-aaef-41d8-ab58-f926b0e3502f) - (property "Reference" "C1" (at 148.9711 115.6906 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100nF" (at 148.971 117.989 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Mlab_R:SMD-0603" (at 147.0152 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~~" (at 146.05 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "UST_ID" "5c70984812875079b91f8bf2" (at 146.05 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 99041bbf-f54e-441e-a192-3ce9dd33a9af)) - (pin "2" (uuid 71905d24-ede9-4111-8ce4-b7b914201ed5)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "C1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 156.21 96.52 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid b86fe97c-b1f6-4576-998b-57ad2e5d5218) - (property "Reference" "#PWR08" (at 156.21 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 156.5783 92.1956 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 156.21 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 156.21 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 29d9206a-b001-4b7b-93d5-ba5da0992769)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR08") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 90.17 73.66 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c92671c6-763c-4557-a38f-fa6c236fd24b) - (property "Reference" "#PWR04" (at 90.17 80.01 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 90.2843 77.9844 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 90.17 73.66 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 90.17 73.66 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9e44a712-2f87-4f95-98d2-08178176c776)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR04") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "MLAB_HEADER:HEADER_1x03") (at 163.83 111.76 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid d81e7dca-ab0d-4e13-984a-1c5b00f3383c) - (property "Reference" "J1" (at 165.7351 110.2919 0) - (effects (font (size 1.524 1.524)) (justify left)) - ) - (property "Value" "HEADER_1x03" (at 165.735 113 0) - (effects (font (size 1.524 1.524)) (justify left) hide) - ) - (property "Footprint" "Mlab_Pin_Headers:Straight_1x03" (at 163.83 109.22 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 163.83 109.22 0) - (effects (font (size 1.524 1.524))) - ) - (pin "1" (uuid ecede1ec-0328-4680-a544-5dbffabea291)) - (pin "2" (uuid 579175ac-d028-4f4b-b5db-b54691325901)) - (pin "3" (uuid ac689888-3e28-4025-b898-097715c7b008)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "J1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 146.05 102.87 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid dc0b4ba4-1c58-4194-aa69-1071feb9bfda) - (property "Reference" "R2" (at 147.8281 101.7206 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4k7" (at 147.828 104.019 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Mlab_R:SMD-0805" (at 144.272 102.87 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 146.05 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "UST_ID" "5c70984612875079b91f8995" (at 146.05 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 65743db3-a27d-4ade-9528-4c42d6a1525a)) - (pin "2" (uuid d42fa8b5-1c91-4c8a-a4a0-9ba311b9c9bf)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "R2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:+5V") (at 146.05 96.52 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid f7c8270c-6802-47d1-9ead-dbeeab58741d) - (property "Reference" "#PWR06" (at 146.05 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (at 146.4183 92.1956 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 146.05 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 146.05 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e8abb5db-7eb5-486a-81b6-4eb73674b752)) - (instances - (project "TFPROBE01A" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR06") (unit 1) - ) - ) - ) - ) - - (sheet_instances - (path "/" (page "1")) - ) +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") + (paper "A4") + (title_block + (title "TFPROBE01A") + (date "2021-01-23") + (company "ThunderFly s.r.o.") + (comment 1 "Omnipolar magnetic and \\n reflective optical probe") + (comment 3 "Sensor for \\n TFRPM measuring device") + ) + (lib_symbols + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (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 "MLAB_HEADER:HEADER_1x03" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 -5.08 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "HEADER_1x03" + (at 0 5.08 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "" + (at 0 2.54 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Datasheet" "" + (at 0 2.54 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "1x03 2.54 mm pitch header" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "1x03, header, connector, pinheader" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "HEADER_1x03_0_1" + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center 0 -2.54) + (radius 0.381) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.381 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.381 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.381 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 0.381) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 2.54) + (radius 0.381) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "HEADER_1x03_1_1" + (pin input line + (at -5.08 2.54 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -5.08 0 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -5.08 -2.54 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "MLAB_IO:AH3572" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 8.89 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AH3572" + (at 8.89 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 8.89 -2.54 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://cz.mouser.com/datasheet/2/115/AH3572-1483253.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "HIGH VOLTAGE HIGH SENSITIVITY" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "HIGH VOLTAGE HIGH SENSITIVITY" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Allegro*SIP*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AH3572_0_1" + (rectangle + (start -5.08 5.08) + (end 7.62 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AH3572_1_1" + (pin power_in line + (at 0 7.62 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 0 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "MLAB_IO:VCNT2020" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U2" + (at 1.3796 16.9864 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "VCNT2020" + (at 1.3796 14.6877 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Mlab_IO:XDCR_VCNT2020" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Datasheet" "https://www.vishay.com/docs/84285/vcnt2020.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Vishay" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Field5" "Manufacturer Recommendation" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "UST_ID" "5f9d106a12875025b39777fa" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "VCNT2020_0_0" + (arc + (start -10.2616 -6.35) + (mid -9.4848 -8.1745) + (end -7.6454 -8.9154) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -10.16 10.16) + (radius 0.127) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -10.16 10.16) + (radius 0.254) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.6454 8.89) + (mid -9.4834 8.1657) + (end -10.2616 6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -5.2324 -8.89) + (mid -3.4378 -8.1625) + (end -2.6924 -6.3754) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.6924 6.3246) + (mid -3.3336 8.0872) + (end -5.0292 8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 -12.7) (xy -12.7 -7.62) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 -7.62) (xy -12.7 7.62) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 -7.62) (xy -11.43 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 7.62) (xy -12.7 12.7) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 7.62) (xy -11.43 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 12.7) (xy 12.7 12.7) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 -11.43) (xy 11.43 -11.43) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 -7.62) (xy -11.43 -11.43) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 -7.62) (xy -7.62 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 7.62) (xy -11.43 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 7.62) (xy -7.62 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 11.43) (xy -11.43 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.2616 -6.35) (xy -10.2616 6.35) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.6454 8.89) (xy -5.0292 8.89) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 -7.62) (xy -7.62 -3.81) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 2.794) (xy -7.62 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 3.048) (xy -7.366 3.302) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 3.81) (xy -7.62 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 3.81) (xy -5.08 1.27) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 7.62) (xy -7.62 3.81) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.366 3.302) (xy -7.366 3.556) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.366 3.302) (xy -7.112 3.556) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.366 3.556) (xy -7.112 3.556) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.366 3.81) (xy -7.366 3.556) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.112 3.556) (xy -6.858 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.112 3.81) (xy -7.62 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.112 3.81) (xy -7.366 3.81) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.858 3.81) (xy -7.112 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.858 3.81) (xy -6.604 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.604 3.81) (xy -7.62 2.794) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.2324 -8.89) (xy -7.6454 -8.9154) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -3.81) (xy -5.08 -1.27) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -1.27) (xy -7.62 -3.81) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 1.27) (xy -5.08 -1.27) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 1.27) (xy -5.08 3.81) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.6924 6.3246) (xy -2.6924 -6.3754) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.4638 -6.3246) (xy 2.4638 6.3754) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 -1.524) (xy 3.4544 -1.1684) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.4544 -1.1684) (xy 3.683 -1.3716) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.556 -2.032) (xy 3.7084 -1.6764) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.683 -1.3716) (xy 3.302 -1.524) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.7084 -1.6764) (xy 3.937 -1.8796) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.937 -1.8796) (xy 3.556 -2.032) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.318 -0.508) (xy 3.302 -1.524) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 -1.016) (xy 3.556 -2.032) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.826 1.016) (xy 6.35 -1.524) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 8.89) (xy 7.62 8.89) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -7.62) (xy 11.43 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -1.524) (xy 5.08 -1.524) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -1.524) (xy 7.62 -1.524) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -1.524) (xy 7.874 1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 7.62) (xy 6.35 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.5438 -8.89) (xy 4.9022 -8.89) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.874 1.016) (xy 4.826 1.016) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.0838 6.4262) (xy 10.0838 -6.2738) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 -11.43) (xy 11.43 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 -7.62) (xy 11.43 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 -7.62) (xy 12.7 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 7.62) (xy 6.35 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 7.62) (xy 11.43 11.43) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 7.62) (xy 12.7 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 11.43 11.43) (xy -11.43 11.43) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 -12.7) (xy -12.7 -12.7) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 -7.62) (xy 12.7 -12.7) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 7.62) (xy 12.7 -7.62) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 12.7) (xy 12.7 7.62) + ) + (stroke + (width 0.4064) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 2.4638 -6.3246) + (mid 3.1556 -8.1084) + (end 4.9022 -8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.08 8.89) + (mid 3.2511 8.1745) + (end 2.4638 6.3754) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 7.5438 -8.89) + (mid 9.3592 -8.1116) + (end 10.0838 -6.2738) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 10.0838 6.4262) + (mid 9.3622 8.1684) + (end 7.62 8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (text "Anode" + (at 15.24 8.636 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (text "Cathode" + (at 14.986 -6.604 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (text "Collector" + (at -22.86 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (text "Emitter" + (at -21.59 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (pin passive line + (at -17.78 7.62 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -17.78 -7.62 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 7.62 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 -7.62 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + ) + (symbol "MLAB_MECHANICAL:HOLE" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "M" + (at 0 2.54 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "HOLE" + (at 0 -2.54 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "HOLE, X, M" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "HOLE_0_1" + (circle + (center 0 0) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "HOLE_1_1" + (pin input line + (at 1.27 0 180) + (length 0.635) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+5V" + (power) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "power-flag" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (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) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "power-flag" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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) + ) + (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 146.05 109.22) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a690fc6c-55d9-47e6-b533-faa4b67e20f3") + ) + (junction + (at 156.21 111.76) + (diameter 1.016) + (color 0 0 0 0) + (uuid "c144caa5-b0d4-4cef-840a-d4ad178a2102") + ) + (no_connect + (at 266.7 17.78) + (uuid "5a41c2f2-ab09-4c3b-98d3-16e5767fa56f") + ) + (no_connect + (at 257.81 17.78) + (uuid "f523f851-2283-4793-877c-967357e39184") + ) + (wire + (pts + (xy 115.57 107.95) (xy 115.57 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0d3ea9f2-ce09-4dde-a766-4120cc963080") + ) + (wire + (pts + (xy 71.12 96.52) (xy 71.12 97.79) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2a99fe95-6895-4623-9c39-21049ea749a8") + ) + (wire + (pts + (xy 146.05 111.76) (xy 146.05 113.03) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3e491a5e-3d5e-4f94-9d95-4065a3806597") + ) + (wire + (pts + (xy 146.05 106.68) (xy 146.05 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "57b9cc0e-6e96-468b-8f9d-ce7f8b3d2cf4") + ) + (wire + (pts + (xy 146.05 109.22) (xy 158.75 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "584c7a1c-3c37-4ee8-ba8a-a4975df09c78") + ) + (wire + (pts + (xy 146.05 120.65) (xy 146.05 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "59f1c90e-a642-4c5a-8278-5834c9218af4") + ) + (wire + (pts + (xy 100.33 64.77) (xy 101.6 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "718d566e-8013-41da-b618-f3468797a56b") + ) + (wire + (pts + (xy 156.21 96.52) (xy 156.21 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "75cee035-349d-41d4-939a-a75835263bf8") + ) + (wire + (pts + (xy 143.51 109.22) (xy 146.05 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7d7e9c41-83b7-4850-ad34-b6de203c304b") + ) + (wire + (pts + (xy 90.17 72.39) (xy 90.17 73.66) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8964f2db-b0f5-4397-854c-4f066943a27a") + ) + (wire + (pts + (xy 113.03 107.95) (xy 115.57 107.95) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8a032fb5-81c1-4304-a94f-560dd2ad7f9c") + ) + (wire + (pts + (xy 156.21 114.3) (xy 156.21 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "903ff689-800e-4482-8dfb-47bcf2207366") + ) + (wire + (pts + (xy 158.75 114.3) (xy 156.21 114.3) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "93a0edc4-68c8-4e49-ba7c-0cc410fc8702") + ) + (wire + (pts + (xy 146.05 96.52) (xy 146.05 99.06) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9e6489b4-516c-481f-a06a-bff3284edf93") + ) + (wire + (pts + (xy 71.12 107.95) (xy 77.47 107.95) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a88dd6ac-c270-4f66-9781-fd58b9b5ee95") + ) + (wire + (pts + (xy 156.21 111.76) (xy 158.75 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b145a5d8-320f-4e29-bb68-8b8c6e1bcad8") + ) + (wire + (pts + (xy 71.12 105.41) (xy 71.12 107.95) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b7d2f967-5b08-4605-acc8-e19d3fb6b2af") + ) + (wire + (pts + (xy 156.21 111.76) (xy 146.05 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ba8f4e56-59b8-49a2-888e-087edf881bc8") + ) + (wire + (pts + (xy 71.12 123.19) (xy 71.12 129.54) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d34b3827-8977-4e18-ac32-7dfc444f3577") + ) + (wire + (pts + (xy 90.17 54.61) (xy 90.17 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "df0a3abb-426c-4087-a7ba-a5115da866db") + ) + (wire + (pts + (xy 113.03 123.19) (xy 120.65 123.19) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e031c558-43db-4df6-819b-91804c80fda6") + ) + (wire + (pts + (xy 77.47 123.19) (xy 71.12 123.19) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f1b934b1-534c-485e-982a-e1ffef7fac2c") + ) + (text "HALL EFFECT OMNIPOLAR SWITCH" + (exclude_from_sim no) + (at 107.95 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "5eb72c5a-7204-4ded-8513-cdb302a8a46b") + ) + (text "Reflective Optical Sensor" + (exclude_from_sim no) + (at 106.68 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "bc29a6df-2d67-46d3-8ab2-8234115ebda9") + ) + (label "COUNT" + (at 101.6 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2765cb87-1082-4d1a-8dc1-6d4cf6637b68") + ) + (label "COUNT" + (at 143.51 109.22 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "52850eb0-fb23-4ac8-992f-68e6d7bdb584") + ) + (label "COUNT" + (at 120.65 123.19 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "731770b6-f222-4c59-919e-9dd70618bab0") + ) + (symbol + (lib_id "MLAB_IO:VCNT2020") + (at 95.25 115.57 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "08989b57-1670-408e-a8a9-fe966c7c308b") + (property "Reference" "U2" + (at 93.8704 98.5836 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "VCNT2020" + (at 93.8704 100.8823 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Mlab_IO:XDCR_VCNT2020" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Datasheet" "https://www.vishay.com/docs/84285/vcnt2020.pdf" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Description" "" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Vishay" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Field5" "Manufacturer Recommendation" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "UST_ID" "5f9d106a12875025b39777fa" + (at 95.25 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "278bab47-96bf-4c51-aabd-039ad8bbec1b") + ) + (pin "2" + (uuid "f6e00d94-ecf5-4a95-b438-eaef048871bb") + ) + (pin "3" + (uuid "ab93043c-cbe5-4805-9222-9256f3836707") + ) + (pin "4" + (uuid "f74d6ecb-9b7d-44e4-8c8f-f128877f34ea") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MLAB_MECHANICAL:HOLE") + (at 257.81 16.51 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "196227d8-be2a-4b6f-852b-6ff909ae9882") + (property "Reference" "M3" + (at 259.2071 15.6007 90) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Value" "HOLE" + (at 259.2071 18.3083 90) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Footprint" "Mlab_Mechanical:dira_3mm" + (at 257.81 16.51 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.81 16.51 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 257.81 16.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "24a4f12b-6087-4022-a6a2-ec11c0b723b4") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "M3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MLAB_MECHANICAL:HOLE") + (at 266.7 16.51 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3b547b03-2d6f-403a-a314-16fe37d96cd6") + (property "Reference" "M4" + (at 268.0971 15.6007 90) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Value" "HOLE" + (at 268.0971 18.3083 90) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Footprint" "Mlab_Mechanical:dira_3mm" + (at 266.7 16.51 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 266.7 16.51 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 266.7 16.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a058159b-8833-4ef7-a7ec-98d71dd7eb05") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "M4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 71.12 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3e8b6812-7e62-47d5-8dc1-3c85b6f1043c") + (property "Reference" "#PWR01" + (at 71.12 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 71.4883 92.1956 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 71.12 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 71.12 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "08af266b-1be1-4eb0-9074-74b81c439ab7") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 115.57 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5266dedf-774a-4f3a-909f-95fd66165a4b") + (property "Reference" "#PWR05" + (at 115.57 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 115.6843 113.5444 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 115.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 115.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 115.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "87456fbd-092b-49f0-975c-0de0ef31b847") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 146.05 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "52ac2c89-9074-48cf-9ce0-beaabc7d11b3") + (property "Reference" "#PWR07" + (at 146.05 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 146.1643 126.2444 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 146.05 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 146.05 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9936e0a2-a50b-4f3c-adff-190c785b3060") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 90.17 54.61 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "569c5dd0-7371-44e6-b544-3e700f66a7af") + (property "Reference" "#PWR03" + (at 90.17 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 90.5383 50.2856 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 90.17 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 90.17 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 90.17 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2562f65b-176d-4e93-997e-068a53574444") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 156.21 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "63a7ab1c-a63c-41ce-83cc-0a49f7f92a8b") + (property "Reference" "#PWR09" + (at 156.21 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 156.3243 126.2444 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 156.21 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 156.21 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 156.21 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "49b39637-0e0f-4ccd-8ddd-5b722aec1c34") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 71.12 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "704b32d2-d0fb-4666-9520-030528816839") + (property "Reference" "#PWR02" + (at 71.12 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 71.2343 133.8644 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "35a3c9d6-9718-47bd-a985-052daa922f1f") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 71.12 101.6 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9e12790b-cec9-4dd8-a3af-c20d5c11d549") + (property "Reference" "R1" + (at 72.8981 100.4506 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "51R" + (at 72.898 102.749 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Mlab_R:SMD-0603" + (at 69.342 101.6 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 71.12 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 71.12 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "UST_ID" "5c70984512875079b91f8953" + (at 71.12 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bd141320-1d58-4a6d-8d8d-0d4934b49487") + ) + (pin "2" + (uuid "cee5667c-a1bc-4d42-b8bd-8f4b1f271fdf") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MLAB_IO:AH3572") + (at 90.17 64.77 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a7f3953c-82c9-48f9-af66-14b131e92525") + (property "Reference" "U1" + (at 84.328 63.6206 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "AH3572" + (at 84.328 65.9193 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 99.06 67.31 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://cz.mouser.com/datasheet/2/115/AH3572-1483253.pdf" + (at 90.17 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 90.17 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "UST_ID" "5f9d011812875025b39777ea" + (at 90.17 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0ba46288-1c01-41d3-9ee2-12e9aa840f86") + ) + (pin "2" + (uuid "6fb32f02-18f6-4742-a282-c89f0f950b26") + ) + (pin "3" + (uuid "ca60ed4b-1b38-4f98-8488-183c52fb8152") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 146.05 116.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ac907e1c-aaef-41d8-ab58-f926b0e3502f") + (property "Reference" "C1" + (at 148.9711 115.6906 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 148.971 117.989 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Mlab_R:SMD-0603" + (at 147.0152 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~~" + (at 146.05 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 146.05 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "UST_ID" "5c70984812875079b91f8bf2" + (at 146.05 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "99041bbf-f54e-441e-a192-3ce9dd33a9af") + ) + (pin "2" + (uuid "71905d24-ede9-4111-8ce4-b7b914201ed5") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 156.21 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b86fe97c-b1f6-4576-998b-57ad2e5d5218") + (property "Reference" "#PWR08" + (at 156.21 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 156.5783 92.1956 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 156.21 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 156.21 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 156.21 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "29d9206a-b001-4b7b-93d5-ba5da0992769") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 90.17 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c92671c6-763c-4557-a38f-fa6c236fd24b") + (property "Reference" "#PWR04" + (at 90.17 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 90.2843 77.9844 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 90.17 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 90.17 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 90.17 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9e44a712-2f87-4f95-98d2-08178176c776") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MLAB_HEADER:HEADER_1x03") + (at 163.83 111.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d81e7dca-ab0d-4e13-984a-1c5b00f3383c") + (property "Reference" "J1" + (at 165.7351 110.2919 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + ) + (property "Value" "HEADER_1x03" + (at 165.735 113 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + (hide yes) + ) + ) + (property "Footprint" "Mlab_Pin_Headers:Straight_1x03" + (at 163.83 109.22 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 163.83 109.22 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Description" "" + (at 163.83 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ecede1ec-0328-4680-a544-5dbffabea291") + ) + (pin "2" + (uuid "579175ac-d028-4f4b-b5db-b54691325901") + ) + (pin "3" + (uuid "ac689888-3e28-4025-b898-097715c7b008") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 146.05 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "dc0b4ba4-1c58-4194-aa69-1071feb9bfda") + (property "Reference" "R2" + (at 147.8281 101.7206 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4k7" + (at 147.828 104.019 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Mlab_R:SMD-0805" + (at 144.272 102.87 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 146.05 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 146.05 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "UST_ID" "5c70984612875079b91f8995" + (at 146.05 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "65743db3-a27d-4ade-9528-4c42d6a1525a") + ) + (pin "2" + (uuid "d42fa8b5-1c91-4c8a-a4a0-9ba311b9c9bf") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 146.05 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f7c8270c-6802-47d1-9ead-dbeeab58741d") + (property "Reference" "#PWR06" + (at 146.05 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 146.4183 92.1956 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 146.05 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 146.05 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e8abb5db-7eb5-486a-81b6-4eb73674b752") + ) + (instances + (project "TFPROBE01A" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) ) diff --git a/hw/sch_pcb/TFPROBE01A.pdf b/hw/sch_pcb/TFPROBE01A.pdf deleted file mode 100644 index 4f9ba0a31c4287c1502b18aeb893cb91ca8dc1f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 51294 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 diff --git a/hw/sch_pcb/TFPROBE01A.ust_bom b/hw/sch_pcb/TFPROBE01A.ust_bom deleted file mode 100644 index 18f72ee..0000000 --- a/hw/sch_pcb/TFPROBE01A.ust_bom +++ /dev/null @@ -1,65 +0,0 @@ -[ - { - "Datasheet": "~~", - "Footprint": "Mlab_R:SMD-0603", - "Ref": "C1", - "Tstamp": "", - "UST_ID": "5c70984812875079b91f8bf2", - "Value": "100nF" - }, - { - "Datasheet": "", - "Footprint": "Mlab_Pin_Headers:Straight_1x03", - "Ref": "J1", - "Tstamp": "", - "Value": "HEADER_1x03" - }, - { - "Datasheet": "", - "Footprint": "Mlab_Mechanical:dira_3mm", - "Ref": "M3", - "Tstamp": "", - "Value": "HOLE" - }, - { - "Datasheet": "", - "Footprint": "Mlab_Mechanical:dira_3mm", - "Ref": "M4", - "Tstamp": "", - "Value": "HOLE" - }, - { - "Datasheet": "~", - "Footprint": "Mlab_R:SMD-0603", - "Ref": "R1", - "Tstamp": "", - "UST_ID": "5c70984512875079b91f8953", - "Value": "51R" - }, - { - "Datasheet": "~", - "Footprint": "Mlab_R:SMD-0805", - "Ref": "R2", - "Tstamp": "", - "UST_ID": "5c70984612875079b91f8995", - "Value": "4k7" - }, - { - "Datasheet": "https://cz.mouser.com/datasheet/2/115/AH3572-1483253.pdf", - "Footprint": "Package_TO_SOT_SMD:SOT-23", - "Ref": "U1", - "Tstamp": "", - "UST_ID": "5f9d011812875025b39777ea", - "Value": "AH3572" - }, - { - "Datasheet": "https://www.vishay.com/docs/84285/vcnt2020.pdf", - "Field4": "Vishay", - "Field5": "Manufacturer Recommendation", - "Footprint": "Mlab_IO:XDCR_VCNT2020", - "Ref": "U2", - "Tstamp": "", - "UST_ID": "5f9d106a12875025b39777fa", - "Value": "VCNT2020" - } -] \ No newline at end of file