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 4f9ba0a..0000000 Binary files a/hw/sch_pcb/TFPROBE01A.pdf and /dev/null differ 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