Compare commits
50 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1660ab9be6 | |||
| 94c26da2a0 | |||
| 2d628dfa61 | |||
| 8856da8a3f | |||
| 5370261926 | |||
| 3f9020b964 | |||
| 19564c1347 | |||
| 52fcd07a8d | |||
| 8b57b6763e | |||
| 3a487f95dc | |||
| 30180bba2b | |||
| ae4cd16b60 | |||
| e2919f54e8 | |||
| 2933a63461 | |||
| 1eb59a0b15 | |||
| f7e0e4a472 | |||
| df15c51c45 | |||
| 896d0b6aac | |||
| 6ac73f21f6 | |||
| 259a052251 | |||
| f3ca7da2a0 | |||
| 8b17741d45 | |||
| 23d32d6050 | |||
| b45e14a2b4 | |||
| df408bc5a1 | |||
| 3f9c579195 | |||
| 68e78bc013 | |||
| f053cec9b5 | |||
| c02c00ea72 | |||
| 4e13a917c9 | |||
| fc80e296be | |||
| a9105a3368 | |||
| 907e66baa9 | |||
| 586fc5270d | |||
| 5b7a896be5 | |||
| 5885963705 | |||
| ff26900b3c | |||
| dcc5259ec1 | |||
| ffa3a608b1 | |||
| d3ebdc5b0e | |||
| b8fcfb9f7d | |||
| 880111876f | |||
| 6e351b1bf4 | |||
| 1633e546b0 | |||
| 2d03dce9d8 | |||
| d638800ad2 | |||
| 1e6247f857 | |||
| 1bc7279f2f | |||
| e0a2249308 | |||
| b727af7b92 |
@@ -0,0 +1 @@
|
|||||||
|
cad/FDM/frame-12.FCStd filter=lfs diff=lfs merge=lfs -text
|
||||||
@@ -6,149 +6,9 @@ on:
|
|||||||
types: [ published ]
|
types: [ published ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
export-ecad:
|
|
||||||
name: Export ECAD
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: setsoft/kicad_auto:ki7
|
|
||||||
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Generate Short SHA Environment Variable
|
|
||||||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Update system repositories, Install Required Libraries and Initialize git-lfs
|
|
||||||
run: |
|
|
||||||
apt update
|
|
||||||
apt -y install git git-lfs zip librsvg2-bin imagemagick
|
|
||||||
git lfs install
|
|
||||||
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
lfs: true
|
|
||||||
|
|
||||||
- name: Extract branch name
|
|
||||||
shell: bash
|
|
||||||
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
|
|
||||||
id: extract_branch
|
|
||||||
|
|
||||||
- name: Update the PCBs with on default branch with git hash
|
|
||||||
if: github.event_name == 'release' || steps.extract_branch.outputs.branch == env.main_branch
|
|
||||||
run: |
|
|
||||||
export COMMIT=$(git rev-parse --short HEAD)
|
|
||||||
echo "COMMIT = ${COMMIT}"
|
|
||||||
echo "ref: ${{ github.ref }}"
|
|
||||||
echo "default: ${{ env.default }}"
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-8mm-fid.kicad_pcb
|
|
||||||
|
|
||||||
- name: Update the PCBs with the git hash and BETA.
|
|
||||||
if: steps.extract_branch.outputs.branch != env.main_branch
|
|
||||||
run: |
|
|
||||||
export COMMIT=$(git rev-parse --short HEAD)
|
|
||||||
echo "COMMIT = ${COMMIT}"
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-8mm-fid/fiducialBoard.kicad_pcb
|
|
||||||
|
|
||||||
- name: Generate Mobo Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/mobo
|
|
||||||
rm -rf mobo/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e mobo.kicad_sch -b mobo.kicad_pcb -d mobo
|
|
||||||
zip -r -j mobo.zip mobo/
|
|
||||||
|
|
||||||
- name: Generate Slot Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/feederFloor
|
|
||||||
rm -rf feeder-floor/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e feederFloor.kicad_sch -b feederFloor.kicad_pcb -d slot
|
|
||||||
zip -r -j slot.zip slot/
|
|
||||||
|
|
||||||
- name: Generate Indexing Wheel Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/indexingWheel
|
|
||||||
rm -rf indexing-wheel/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e indexingWheel.kicad_sch -b indexingWheel.kicad_pcb -d indexing-wheel
|
|
||||||
zip -r -j indexing-wheel.zip indexing-wheel/
|
|
||||||
|
|
||||||
- name: Generate Light Diffusion Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/light-diffusion
|
|
||||||
rm -rf light-diffusion/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e light-diffusion.kicad_sch -b light-diffusion.kicad_pcb -d light-diffusion
|
|
||||||
zip -r -j light-diffusion.zip light-diffusion/
|
|
||||||
|
|
||||||
- name: Generate Photon 8mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-8mm-fid
|
|
||||||
rm -rf photon-8mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-8mm-fid
|
|
||||||
zip -r -j photon-8mm-fid.zip photon-8mm-fid/
|
|
||||||
|
|
||||||
- name: Generate Photon 12mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-12mm-fid
|
|
||||||
rm -rf photon-12mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-12mm-fid
|
|
||||||
zip -r -j photon-12mm-fid.zip photon-12mm-fid/
|
|
||||||
|
|
||||||
- name: Generate Photon 16mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-16mm-fid
|
|
||||||
rm -rf photon-16mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-16mm-fid
|
|
||||||
zip -r -j photon-16mm-fid.zip photon-16mm-fid/
|
|
||||||
|
|
||||||
- name: Generate Photon 24mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-24mm-fid
|
|
||||||
rm -rf photon-24mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-24mm-fid
|
|
||||||
zip -r -j photon-24mm-fid.zip photon-24mm-fid/
|
|
||||||
|
|
||||||
- name: Zip PCB Export Files for Artifacts
|
|
||||||
run: |
|
|
||||||
cd pcb/
|
|
||||||
zip -r -j Feeder-PCBs.zip photon-8mm-fid/photon-8mm-fid.zip photon-12mm-fid/photon-12mm-fid.zip photon-16mm-fid/photon-16mm-fid.zip photon-24mm-fid/photon-24mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
|
||||||
|
|
||||||
- name: Zip PCB Export Files for Release
|
|
||||||
run: |
|
|
||||||
cd pcb/
|
|
||||||
zip -r -j Feeder-PCBs-${{ github.event.release.tag_name }}.zip photon-8mm-fid/photon-8mm-fid.zip photon-12mm-fid/photon-12mm-fid.zip photon-16mm-fid/photon-16mm-fid.zip photon-24mm-fid/photon-24mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
|
||||||
|
|
||||||
- name: Zip Top Images for BOM
|
|
||||||
run: |
|
|
||||||
mkdir pcb-images
|
|
||||||
cp pcb/mobo/mobo/mobo-top.png pcb-images/mobo.png
|
|
||||||
cp pcb/feederFloor/slot/feederFloor-top.png pcb-images/slot.png
|
|
||||||
cp pcb/indexingWheel/indexing-wheel/indexingWheel-top.png pcb-images/drive-wheel.png
|
|
||||||
cp pcb/light-diffusion/light-diffusion/light-diffusion-top.png pcb-images/light-diffusion.png
|
|
||||||
cp pcb/photon-8mm-fid/photon-8mm-fid/fiducialBoard-top.png pcb-images/photon-8mm-fid.png
|
|
||||||
cp pcb/photon-12mm-fid/photon-12mm-fid/fiducialBoard-top.png pcb-images/photon-12mm-fid.png
|
|
||||||
cp pcb/photon-16mm-fid/photon-16mm-fid/fiducialBoard-top.png pcb-images/photon-16mm-fid.png
|
|
||||||
cp pcb/photon-24mm-fid/photon-24mm-fid/fiducialBoard-top.png pcb-images/photon-24mm-fid.png
|
|
||||||
zip -r -j pcb-images.zip pcb-images/
|
|
||||||
|
|
||||||
- name: Upload PCB Images as Artifacts
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: pcb-images
|
|
||||||
path: pcb-images/
|
|
||||||
if-no-files-found: error
|
|
||||||
retention-days: 60
|
|
||||||
|
|
||||||
generate-bom:
|
generate-bom:
|
||||||
name: Generate BOM
|
name: Generate BOM
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
needs:
|
|
||||||
export-ecad
|
|
||||||
steps:
|
steps:
|
||||||
- name: Generate Short SHA Environment Variable
|
- name: Generate Short SHA Environment Variable
|
||||||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
||||||
@@ -158,7 +18,7 @@ jobs:
|
|||||||
sudo apt install python3
|
sudo apt install python3
|
||||||
|
|
||||||
- name: Download repository
|
- name: Download repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Generate BOM HTML Page for Release
|
- name: Generate BOM HTML Page for Release
|
||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
@@ -215,6 +75,7 @@ jobs:
|
|||||||
export DISPLAY=:5
|
export DISPLAY=:5
|
||||||
python3 .github/workflows/scripts/generate-stl-img.py ${{ github.event.release.tag_name }}
|
python3 .github/workflows/scripts/generate-stl-img.py ${{ github.event.release.tag_name }}
|
||||||
|
|
||||||
|
|
||||||
- name: Generate STL Images for Workflow Dispatch
|
- name: Generate STL Images for Workflow Dispatch
|
||||||
if: github.event_name != 'release'
|
if: github.event_name != 'release'
|
||||||
run: |
|
run: |
|
||||||
@@ -223,41 +84,9 @@ jobs:
|
|||||||
export DISPLAY=:5
|
export DISPLAY=:5
|
||||||
python3 .github/workflows/scripts/generate-stl-img.py ${SHORT_SHA}
|
python3 .github/workflows/scripts/generate-stl-img.py ${SHORT_SHA}
|
||||||
|
|
||||||
- name: Make folder to Host PCB Images
|
|
||||||
run: |
|
|
||||||
mkdir pcb-images
|
|
||||||
ls -al
|
|
||||||
cd pcb-images
|
|
||||||
ls -al
|
|
||||||
|
|
||||||
- name: Download PCB Images
|
|
||||||
if: github.event_name != 'release'
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
name: pcb-images
|
|
||||||
path: pcb-images/
|
|
||||||
|
|
||||||
- name: Move PCB Images for Workflow Dispatch
|
|
||||||
if: github.event_name != 'release'
|
|
||||||
run: |
|
|
||||||
ls -al
|
|
||||||
ls -al pcb-images
|
|
||||||
mv pcb-images/*.png Feeder-${SHORT_SHA}/img/
|
|
||||||
ls -al Feeder-${SHORT_SHA}/img/
|
|
||||||
|
|
||||||
- name: Move PCB Images for Release
|
|
||||||
if: github.event_name == 'release'
|
|
||||||
run: |
|
|
||||||
ls -al
|
|
||||||
ls -al pcb-images
|
|
||||||
mv pcb-images/* Feeder-${{ github.event.release.tag_name }}/img/
|
|
||||||
ls -al Feeder-${{ github.event.release.tag_name }}/img/
|
|
||||||
|
|
||||||
|
|
||||||
- name: Zip BOM Directory for Workflow Dispatch
|
- name: Zip BOM Directory for Workflow Dispatch
|
||||||
if: github.event_name != 'release'
|
if: github.event_name != 'release'
|
||||||
run: |
|
run: |
|
||||||
ls -al
|
|
||||||
zip -r Feeder-BOM.zip Feeder-${SHORT_SHA} Feeder-${SHORT_SHA}/img
|
zip -r Feeder-BOM.zip Feeder-${SHORT_SHA} Feeder-${SHORT_SHA}/img
|
||||||
ls -al
|
ls -al
|
||||||
|
|
||||||
@@ -266,9 +95,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
zip -r Feeder-BOM-${{ github.event.release.tag_name }}.zip Feeder-${{ github.event.release.tag_name }} Feeder-${{ github.event.release.tag_name }}/img
|
zip -r Feeder-BOM-${{ github.event.release.tag_name }}.zip Feeder-${{ github.event.release.tag_name }} Feeder-${{ github.event.release.tag_name }}/img
|
||||||
|
|
||||||
- name: Upload BOM results
|
- name: upload BOM results
|
||||||
if: github.event_name != 'release'
|
if: github.event_name != 'release'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Feeder-BOM
|
name: Feeder-BOM
|
||||||
path: Feeder-BOM.zip
|
path: Feeder-BOM.zip
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ jobs:
|
|||||||
export-ecad:
|
export-ecad:
|
||||||
name: Export ECAD
|
name: Export ECAD
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: setsoft/kicad_auto:ki7
|
container: setsoft/kicad_auto:ki8
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
git lfs install
|
git lfs install
|
||||||
|
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
|
|
||||||
@@ -39,13 +39,8 @@ jobs:
|
|||||||
echo "ref: ${{ github.ref }}"
|
echo "ref: ${{ github.ref }}"
|
||||||
echo "default: ${{ env.default }}"
|
echo "default: ${{ env.default }}"
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
sed -i "s!<<hash>>!${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
sed -i "s!<<hash>>!${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-8mm-fid.kicad_pcb
|
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/fiducialBoard.kicad_pcb
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-12mm-fid.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-16mm-fid.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!${COMMIT}!" pcb/photon-8mm-fid/photon-24mm-fid.kicad_pcb
|
|
||||||
|
|
||||||
- name: Update the PCBs with the git hash and BETA.
|
- name: Update the PCBs with the git hash and BETA.
|
||||||
if: steps.extract_branch.outputs.branch != env.main_branch
|
if: steps.extract_branch.outputs.branch != env.main_branch
|
||||||
@@ -53,13 +48,8 @@ jobs:
|
|||||||
export COMMIT=$(git rev-parse --short HEAD)
|
export COMMIT=$(git rev-parse --short HEAD)
|
||||||
echo "COMMIT = ${COMMIT}"
|
echo "COMMIT = ${COMMIT}"
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/mobo/mobo.kicad_pcb
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/feederFloor/feederFloor.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/indexingWheel/indexingWheel.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/light-diffusion/light-diffusion.kicad_pcb
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-8mm-fid/fiducialBoard.kicad_pcb
|
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-8mm-fid/fiducialBoard.kicad_pcb
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-12mm-fid/fiducialBoard.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-16mm-fid/fiducialBoard.kicad_pcb
|
|
||||||
sed -i "s!<<hash>>!BETA-${COMMIT}!" pcb/photon-24mm-fid/fiducialBoard.kicad_pcb
|
|
||||||
|
|
||||||
- name: Generate Mobo Export Files
|
- name: Generate Mobo Export Files
|
||||||
run: |
|
run: |
|
||||||
@@ -68,20 +58,6 @@ jobs:
|
|||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e mobo.kicad_sch -b mobo.kicad_pcb -d mobo
|
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e mobo.kicad_sch -b mobo.kicad_pcb -d mobo
|
||||||
zip -r -j mobo.zip mobo/
|
zip -r -j mobo.zip mobo/
|
||||||
|
|
||||||
- name: Generate Slot Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/feederFloor
|
|
||||||
rm -rf feeder-floor/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e feederFloor.kicad_sch -b feederFloor.kicad_pcb -d slot
|
|
||||||
zip -r -j slot.zip slot/
|
|
||||||
|
|
||||||
- name: Generate Indexing Wheel Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/indexingWheel
|
|
||||||
rm -rf indexing-wheel/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e indexingWheel.kicad_sch -b indexingWheel.kicad_pcb -d indexing-wheel
|
|
||||||
zip -r -j indexing-wheel.zip indexing-wheel/
|
|
||||||
|
|
||||||
- name: Generate Light Diffusion Export Files
|
- name: Generate Light Diffusion Export Files
|
||||||
run: |
|
run: |
|
||||||
cd pcb/light-diffusion
|
cd pcb/light-diffusion
|
||||||
@@ -96,39 +72,18 @@ jobs:
|
|||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-8mm-fid
|
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-8mm-fid
|
||||||
zip -r -j photon-8mm-fid.zip photon-8mm-fid/
|
zip -r -j photon-8mm-fid.zip photon-8mm-fid/
|
||||||
|
|
||||||
- name: Generate Photon 12mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-12mm-fid
|
|
||||||
rm -rf photon-12mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-12mm-fid
|
|
||||||
zip -r -j photon-12mm-fid.zip photon-12mm-fid/
|
|
||||||
|
|
||||||
- name: Generate Photon 16mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-16mm-fid
|
|
||||||
rm -rf photon-16mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-16mm-fid
|
|
||||||
zip -r -j photon-16mm-fid.zip photon-16mm-fid/
|
|
||||||
|
|
||||||
- name: Generate Photon 24mm Fiducial Export Files
|
|
||||||
run: |
|
|
||||||
cd pcb/photon-24mm-fid
|
|
||||||
rm -rf photon-24mm-fid/
|
|
||||||
kibot -c ../../.github/workflows/scripts/kibot/config-2layer.kibot.yaml -e fiducialBoard.kicad_sch -b fiducialBoard.kicad_pcb -d photon-24mm-fid
|
|
||||||
zip -r -j photon-24mm-fid.zip photon-24mm-fid/
|
|
||||||
|
|
||||||
- name: Zip PCB Export Files for Artifacts
|
- name: Zip PCB Export Files for Artifacts
|
||||||
run: |
|
run: |
|
||||||
cd pcb/
|
cd pcb/
|
||||||
zip -r -j Feeder-PCBs.zip photon-8mm-fid/photon-8mm-fid.zip photon-12mm-fid/photon-12mm-fid.zip photon-16mm-fid/photon-16mm-fid.zip photon-24mm-fid/photon-24mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
zip -r -j Feeder-PCBs.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip mobo/mobo.zip
|
||||||
|
|
||||||
- name: Zip PCB Export Files for Release
|
- name: Zip PCB Export Files for Release
|
||||||
run: |
|
run: |
|
||||||
cd pcb/
|
cd pcb/
|
||||||
zip -r -j Feeder-PCBs-${{ github.event.release.tag_name }}.zip photon-8mm-fid/photon-8mm-fid.zip photon-12mm-fid/photon-12mm-fid.zip photon-16mm-fid/photon-16mm-fid.zip photon-24mm-fid/photon-24mm-fid.zip light-diffusion/light-diffusion.zip indexingWheel/indexing-wheel.zip feederFloor/slot.zip mobo/mobo.zip
|
zip -r -j Feeder-PCBs-${{ github.event.release.tag_name }}.zip photon-8mm-fid/photon-8mm-fid.zip light-diffusion/light-diffusion.zip mobo/mobo.zip
|
||||||
|
|
||||||
- name: Upload PCB Export Files as Artifacts
|
- name: Upload PCB Export Files as Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Feeder-PCBs.zip
|
name: Feeder-PCBs.zip
|
||||||
path: pcb/Feeder-PCBs.zip
|
path: pcb/Feeder-PCBs.zip
|
||||||
|
|||||||
@@ -16,7 +16,10 @@ jobs:
|
|||||||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Download repository
|
- name: Download repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- run: git lfs install && git lfs pull
|
||||||
|
|
||||||
- name: Install FreeCAD Python library
|
- name: Install FreeCAD Python library
|
||||||
run: |
|
run: |
|
||||||
@@ -75,7 +78,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload STLs as Artifacts
|
- name: Upload STLs as Artifacts
|
||||||
if: github.event_name != 'release'
|
if: github.event_name != 'release'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Feeder-STLs
|
name: Feeder-STLs
|
||||||
path: ~/Feeder-STLs.zip
|
path: ~/Feeder-STLs.zip
|
||||||
@@ -84,7 +87,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload DXFs as Artifacts
|
- name: Upload DXFs as Artifacts
|
||||||
if: github.event_name != 'release'
|
if: github.event_name != 'release'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Feeder-DXFs
|
name: Feeder-DXFs
|
||||||
path: ~/Feeder-DXFs.zip
|
path: ~/Feeder-DXFs.zip
|
||||||
|
|||||||
@@ -13,114 +13,108 @@ if not os.path.exists(dirName):
|
|||||||
else:
|
else:
|
||||||
print("Directory " , dirName , " already exists")
|
print("Directory " , dirName , " already exists")
|
||||||
|
|
||||||
versions = [
|
|
||||||
["8mm", "bom-8.csv"],
|
|
||||||
["12mm", "bom-12.csv"],
|
|
||||||
["16mm", "bom-16.csv"],
|
|
||||||
["24mm", "bom-24.csv"]
|
|
||||||
]
|
|
||||||
|
|
||||||
for version in versions:
|
# make html file that will become our BOM
|
||||||
|
f = open(dirName + "/bom_" + sys.argv[1] + ".html", "w")
|
||||||
|
f.write("""
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: #222;
|
||||||
|
padding: 30px;
|
||||||
|
font-family: helvetica;
|
||||||
|
color: #fff
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
.optional {
|
||||||
|
background-color: #430;
|
||||||
|
}
|
||||||
|
tr.titlerow th {
|
||||||
|
background-color: goldenrod;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
# make html file that will become our BOM
|
th, td {
|
||||||
f = open(dirName + "/" + version[0] + "_feeder_bom_" + sys.argv[1] + ".html", "w")
|
padding: 10px;
|
||||||
f.write("""
|
text-align: left;
|
||||||
<!DOCTYPE html>
|
border-bottom: 2px solid #fff
|
||||||
<head>
|
}
|
||||||
<style>
|
a {
|
||||||
body {
|
color:goldenrod;
|
||||||
background-color: #222;
|
}
|
||||||
padding: 30px;
|
|
||||||
font-family: helvetica;
|
|
||||||
color: #fff
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
width: 100%;
|
|
||||||
position: relative;
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
.optional {
|
|
||||||
background-color: #430;
|
|
||||||
}
|
|
||||||
tr.titlerow th {
|
|
||||||
background-color: goldenrod;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
th, td {
|
img {
|
||||||
padding: 10px;
|
width: 150px;
|
||||||
text-align: left;
|
}
|
||||||
border-bottom: 2px solid #fff
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color:goldenrod;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
#logo {
|
||||||
width: 150px;
|
width: 250px;
|
||||||
}
|
position: absolute;
|
||||||
|
top: 30px;
|
||||||
|
right: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
#logo {
|
tr:hover {
|
||||||
width: 250px;
|
background-color: #444;
|
||||||
position: absolute;
|
}
|
||||||
top: 30px;
|
</style>
|
||||||
right: 50px;
|
</head>
|
||||||
}
|
<body>
|
||||||
|
<h1>
|
||||||
|
""")
|
||||||
|
|
||||||
tr:hover {
|
#write page title based on script
|
||||||
background-color: #444;
|
f.write("LumenPnP Feeder BOM " + sys.argv[1])
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>
|
|
||||||
""")
|
|
||||||
|
|
||||||
#write page title based on script
|
#write the beginning of table, and row for header
|
||||||
f.write("LumenPnP " + version[0] + " Feeder BOM " + sys.argv[1])
|
f.write("</h1><a href='https://www.github.com/opulo-inc/feeder/releases/' target='_blank' rel='noopener noreferrer'><h2>Download the Source Here</h2></a><a href='https://www.opulo.io/' target='_blank' rel='noopener noreferrer'><img src='https://cdn.shopify.com/s/files/1/0570/4256/7355/files/opulo-white-alpha_1200x1200.png?v=1644515300' id='logo'/></a><table>")
|
||||||
|
|
||||||
#write the beginning of table, and row for header
|
with open('bom.csv') as bom:
|
||||||
f.write("</h1><a href='https://www.github.com/opulo-inc/feeder/releases/' target='_blank' rel='noopener noreferrer'><h2>Download the Source Here</h2></a><a href='https://www.opulo.io/' target='_blank' rel='noopener noreferrer'><img src='https://cdn.shopify.com/s/files/1/0570/4256/7355/files/opulo-white-alpha_1200x1200.png?v=1644515300' id='logo'/></a><table>")
|
csv_reader = csv.reader(bom, delimiter=',')
|
||||||
|
line_count = 0
|
||||||
|
|
||||||
with open(version[1]) as bom:
|
for row in csv_reader:
|
||||||
csv_reader = csv.reader(bom, delimiter=',')
|
column = 0
|
||||||
line_count = 0
|
|
||||||
|
|
||||||
for row in csv_reader:
|
if line_count == 0: #if header row, just print what's there
|
||||||
column = 0
|
f.write("<tr class='titlerow'>")
|
||||||
|
while column < len(row):
|
||||||
|
f.write("<th style='color:black;'>" + row[column] + "</th>")
|
||||||
|
column += 1
|
||||||
|
else: #if content row
|
||||||
|
if row[6] != "":
|
||||||
|
f.write("<tr class='optional'>")
|
||||||
|
else:
|
||||||
|
f.write("<tr>")
|
||||||
|
|
||||||
if line_count == 0: #if header row, just print what's there
|
while column < len(row):
|
||||||
f.write("<tr class='titlerow'>")
|
|
||||||
while column < len(row):
|
# handling images
|
||||||
f.write("<th style='color:black;'>" + row[column] + "</th>")
|
if column == 1 and row[3] != "FDM":
|
||||||
column += 1
|
f.write("<th><img src='" + row[column] + "' /></th>")
|
||||||
else: #if content row
|
elif column == 1 and row[3] == "FDM":
|
||||||
if row[6] != "":
|
f.write("<th><img src='img/" + row[0] + ".png' /></th>")
|
||||||
f.write("<tr class='optional'>")
|
|
||||||
|
# handling links
|
||||||
|
elif (column == 4 or column == 5) and row[3] != "FDM" and row[column] != "":
|
||||||
|
f.write("<th><a href='" + row[column] + "' target='_blank' rel='noopener noreferrer'/>Link</a></th>")
|
||||||
|
# all other cells
|
||||||
else:
|
else:
|
||||||
f.write("<tr>")
|
f.write("<th>" + row[column] + "</th>")
|
||||||
|
column += 1
|
||||||
|
f.write("</tr>")
|
||||||
|
line_count += 1
|
||||||
|
|
||||||
while column < len(row):
|
f.write("</table></body></html>")
|
||||||
|
|
||||||
# handling images
|
|
||||||
if column == 1 and row[3] != "FDM" and row[3] != "PCB" and row[3] != "PCA":
|
|
||||||
f.write("<th><img src='" + row[column] + "' /></th>")
|
|
||||||
elif column == 1 and (row[3] == "FDM" or row[3] == "PCB" or row[3] == "PCA"):
|
|
||||||
f.write("<th><img src='img/" + row[0] + ".png' /></th>")
|
|
||||||
|
|
||||||
# handling links
|
f.close()
|
||||||
elif (column == 4 or column == 5) and row[3] != "FDM" and row[column] != "":
|
|
||||||
f.write("<th><a href='" + row[column] + "' target='_blank' rel='noopener noreferrer'/>Link</a></th>")
|
|
||||||
# all other cells
|
|
||||||
else:
|
|
||||||
f.write("<th>" + row[column] + "</th>")
|
|
||||||
column += 1
|
|
||||||
f.write("</tr>")
|
|
||||||
line_count += 1
|
|
||||||
|
|
||||||
f.write("</table></body></html>")
|
|
||||||
f.close()
|
|
||||||
@@ -41,7 +41,29 @@ def process_file(cad_file: Path):
|
|||||||
|
|
||||||
doc = FreeCAD.open(str(cad_file.absolute()))
|
doc = FreeCAD.open(str(cad_file.absolute()))
|
||||||
|
|
||||||
name = cad_file.name[:-6]
|
bom = open("../../../bom.csv")
|
||||||
|
|
||||||
|
csv_reader = csv.reader(bom, delimiter=',')
|
||||||
|
count = 0
|
||||||
|
flag = False
|
||||||
|
for row in csv_reader:
|
||||||
|
if row[0] == cad_file.name[:-6]:
|
||||||
|
print("found a part!")
|
||||||
|
print(row[0])
|
||||||
|
count = row[2]
|
||||||
|
print(count)
|
||||||
|
if count != "-" and count != "":
|
||||||
|
flag = True
|
||||||
|
break
|
||||||
|
|
||||||
|
#generates name with quantity
|
||||||
|
if flag:
|
||||||
|
name = cad_file.name[:-6] + "_" + count + "x"
|
||||||
|
print("making count name")
|
||||||
|
else:
|
||||||
|
name = cad_file.name[:-6]
|
||||||
|
print("making no count name")
|
||||||
|
|
||||||
|
|
||||||
# # Getting file name from part number emboss
|
# # Getting file name from part number emboss
|
||||||
# name_options = [obj.String for obj in doc.Objects if
|
# name_options = [obj.String for obj in doc.Objects if
|
||||||
@@ -171,4 +193,3 @@ if __name__ == '__main__':
|
|||||||
noun = "exception" if len(exceptions) == 1 else "exceptions"
|
noun = "exception" if len(exceptions) == 1 else "exceptions"
|
||||||
print(f"There {verb} {len(exceptions)} {noun}")
|
print(f"There {verb} {len(exceptions)} {noun}")
|
||||||
|
|
||||||
assert len(exceptions) == 0
|
|
||||||
|
|||||||
@@ -146,3 +146,21 @@ An STM32F031C6T6 was chosen for the feeder's microcontroller. There were a few r
|
|||||||
As a bonus, the chip's sibling, the STM32F031K6U6, has the same die as the C6T6 but with a smaller package. This means that by using the smaller chip's GPIO count as a constraint, we have a binary-compatible drop in replacement part to help alleviate availability issues.
|
As a bonus, the chip's sibling, the STM32F031K6U6, has the same die as the C6T6 but with a smaller package. This means that by using the smaller chip's GPIO count as a constraint, we have a binary-compatible drop in replacement part to help alleviate availability issues.
|
||||||
|
|
||||||
Although a separate EEPROM chip or a software-defined UUID could solve the same problem as having a factory-burned UUID, having it in the chip prevents UUID erasure upon reprogramming, and fewer parts in the BOM.
|
Although a separate EEPROM chip or a software-defined UUID could solve the same problem as having a factory-burned UUID, having it in the chip prevents UUID erasure upon reprogramming, and fewer parts in the BOM.
|
||||||
|
|
||||||
|
## ID Fiducial Board
|
||||||
|
|
||||||
|
There's a small board on the nose of the feeder with three fiducials on it. The center one is for identifying location, and the other, smaller fiducials on either side identify what type of feeder it is.
|
||||||
|
|
||||||
|
**This is not currently used. This board was shipped with all feeder hardware to support potential future features.**
|
||||||
|
|
||||||
|
### Can it be used for setting pick position?
|
||||||
|
|
||||||
|
It could be used for *generalized* pick position. In general, there's too much variability in the precise placement of the PCB in the print from human error and print defects. If OpenPnP can scan for the fiducial and then apply a general offset to find the broad pick position, computer vision can find the precise pick position, provided it's paper tape. Plastic tape would likely need the precise pick position set manually.
|
||||||
|
|
||||||
|
### Can it be used for identifying feeder width?
|
||||||
|
|
||||||
|
Absolutely! The distance the two smaller fiducials are away from the larger centered one encodes what feeder type, or width, it is. Ideally the firmware image is the same across feeder widths, and it can't hurt to have the fiducial encode that information. OpenPnP doesn't actually care that much what width a feeder is if the fiducial <-> pick position offset is set correctly.
|
||||||
|
|
||||||
|
### Can it be used for setting slot location?
|
||||||
|
|
||||||
|
It can, but it might not be useful in most circumstances. In a world where slots are always mounted in the same location, OpenPnP could always know where the slot locations are on a LumenPnP. However, if builders have a different slot setup, or folks trying to squeeze out every last mm of feeder space are adjusting their slot locations to accommodate wider feeders, it could be useful. OpenPnP could use vision across a given Y position and in conjunction with the slot addresses of the feeders it found over RS485, automatically set slot positions.
|
||||||
|
|||||||
@@ -1,674 +1,17 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
# Opulo LumenPnP Feeder License and Copyright Notices
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
LumenPnP is (c) by Opulo
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
This notice must be included in any distributions of this project or derivative works.
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
Because this project consists of many types of source, individual parts of the project are made available under different licenses.
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
1. The hardware designs located at `./cad` and `./pcb` are available under the CERN-OHL-W v2 license. Full text is available at https://cern.ch/cern-ohl.
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
2. The software located at `./.github/workflows` is available under Mozilla MPL v2.0. Full text is available at https://www.mozilla.org/en-US/MPL/2.0/.
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
3. The KiCAD libraries located at `./lib/kicad/` are available under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). Full text available at https://creativecommons.org/licenses/by-sa/4.0/
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
4. Opulo's logo, branding, and other media is used throughout this project. This is Copyright (c) Opulo and all rights are reserved. You may not distribute derivative works or products bearing the Opulo logo, icon, or other relevant mark. Derivative works should remove Opulo branding.
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
5. The name `Opulo` and `LumenPnP` are trademarked, and only to be used by Opulo. Any derivative works should remove both marks.
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
|
||||||
frame-12,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-frame-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-1u,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
release-lever-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
slot-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
tape-guide-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,Used to guide tape into feeder for spools mounted beneath the machine.
|
|
||||||
"PLA-filament ",https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg. Print both nozzle-rack and 2x z-gantry in a black color. Print top-light-mount and bottom-light-mount in a white color.
|
|
||||||
M5-t-slot-nut,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5-tslot-nut.jpg?v=1686314676,1,FST,https://www.amazon.com/Fastener-Nickel-Plated-Sliding-Aluminum-Profile/dp/B086MKNYDS/ref=sxin_16_pa_sp_search_thematic_sspa,,,
|
|
||||||
M3x14mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x14mm.png?v=1686314903,3,FST,https://www.mcmaster.com/92095A168/,,,
|
|
||||||
M5x10mm-socket-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5x10mm.png?v=1686314995,1,FST,https://www.mcmaster.com/90128A234/,,,ISO4762
|
|
||||||
M3x8mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x8mm-self-tapping-flat-head.png?v=1686314923,1,FST,https://www.mcmaster.com/95893A189/,,,
|
|
||||||
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
|
||||||
mobo,,1,PCA,,,,Click link above to download source
|
|
||||||
slot,,1,PCA,,,,Click link above to download source
|
|
||||||
drive-wheel,,1,PCB,,,,Click link above to download source
|
|
||||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
|
||||||
photon-12mm-fid,,1,PCB,,,,Click link above to download source
|
|
||||||
slot-harness,,1,CHA,,,,Click link above to download source
|
|
||||||
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/n20.jpg?v=1686329653,4,MISC,https://www.servocity.com/110-rpm-micro-gear-motor/,,,1:210 gear ratio.
|
|
||||||
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/right-angle-n20.jpg?v=1686329653,2,MISC,https://www.aliexpress.com/w/wholesale-worm-n20-encoder.html?catId=0&initiative_id=SB_20230324123628&SearchText=worm+n20+encoder,,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
|
||||||
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,2,MISC,https://www.amazon.com/gp/product/B01EA912P8/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8,,,
|
|
||||||
|
@@ -1,25 +0,0 @@
|
|||||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
|
||||||
frame-16,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-frame-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-2u,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
release-lever-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
slot-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
tape-guide-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,Used to guide tape into feeder for spools mounted beneath the machine.
|
|
||||||
"PLA-filament ",https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg. Print both nozzle-rack and 2x z-gantry in a black color. Print top-light-mount and bottom-light-mount in a white color.
|
|
||||||
M5-t-slot-nut,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5-tslot-nut.jpg?v=1686314676,1,FST,https://www.amazon.com/Fastener-Nickel-Plated-Sliding-Aluminum-Profile/dp/B086MKNYDS/ref=sxin_16_pa_sp_search_thematic_sspa,,,
|
|
||||||
M3x25mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x18mm.png?v=1686314956,3,FST,https://www.mcmaster.com/91294A138/,,,
|
|
||||||
M5x10mm-socket-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5x10mm.png?v=1686314995,1,FST,https://www.mcmaster.com/90128A234/,,,ISO4762
|
|
||||||
M3x8mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x8mm-self-tapping-flat-head.png?v=1686314923,1,FST,https://www.mcmaster.com/95893A189/,,,
|
|
||||||
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
|
||||||
mobo,,1,PCA,,,,Click link above to download source
|
|
||||||
slot,,1,PCA,,,,Click link above to download source
|
|
||||||
drive-wheel,,1,PCB,,,,Click link above to download source
|
|
||||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
|
||||||
photon-16mm-fid,,1,PCB,,,,Click link above to download source
|
|
||||||
slot-harness,,1,CHA,,,,Click link above to download source
|
|
||||||
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/n20.jpg?v=1686329653,4,MISC,https://www.servocity.com/110-rpm-micro-gear-motor/,,,1:210 gear ratio.
|
|
||||||
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/right-angle-n20.jpg?v=1686329653,2,MISC,https://www.aliexpress.com/w/wholesale-worm-n20-encoder.html?catId=0&initiative_id=SB_20230324123628&SearchText=worm+n20+encoder,,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
|
||||||
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,2,MISC,https://www.amazon.com/gp/product/B01EA912P8/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8,,,
|
|
||||||
|
@@ -1,25 +0,0 @@
|
|||||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
|
||||||
frame-24,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-frame-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-2u,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
release-lever-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
slot-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
tape-guide-2u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,Used to guide tape into feeder for spools mounted beneath the machine.
|
|
||||||
"PLA-filament ",https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg. Print both nozzle-rack and 2x z-gantry in a black color. Print top-light-mount and bottom-light-mount in a white color.
|
|
||||||
M5-t-slot-nut,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5-tslot-nut.jpg?v=1686314676,1,FST,https://www.amazon.com/Fastener-Nickel-Plated-Sliding-Aluminum-Profile/dp/B086MKNYDS/ref=sxin_16_pa_sp_search_thematic_sspa,,,
|
|
||||||
M3x25mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x18mm.png?v=1686314956,3,FST,https://www.mcmaster.com/91294A138/,,,
|
|
||||||
M5x10mm-socket-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5x10mm.png?v=1686314995,1,FST,https://www.mcmaster.com/90128A234/,,,ISO4762
|
|
||||||
M3x8mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x8mm-self-tapping-flat-head.png?v=1686314923,1,FST,https://www.mcmaster.com/95893A189/,,,
|
|
||||||
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
|
||||||
mobo,,1,PCA,,,,Click link above to download source
|
|
||||||
slot,,1,PCA,,,,Click link above to download source
|
|
||||||
drive-wheel,,1,PCB,,,,Click link above to download source
|
|
||||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
|
||||||
photon-24mm-fid,,1,PCB,,,,Click link above to download source
|
|
||||||
slot-harness,,1,CHA,,,,Click link above to download source
|
|
||||||
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/n20.jpg?v=1686329653,1,MISC,https://www.servocity.com/110-rpm-micro-gear-motor/,,,1:210 gear ratio.
|
|
||||||
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/right-angle-n20.jpg?v=1686329653,1,MISC,https://www.aliexpress.com/w/wholesale-worm-n20-encoder.html?catId=0&initiative_id=SB_20230324123628&SearchText=worm+n20+encoder,,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
|
||||||
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,1,MISC,https://www.amazon.com/gp/product/B01EA912P8/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8,,,
|
|
||||||
|
@@ -1,27 +0,0 @@
|
|||||||
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
|
||||||
frame-8,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-frame-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-gear-1u,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
release-lever-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
spool-holder,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
thimble,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
slot-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
|
||||||
tape-guide-1u,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,Yes,Replaces the spool arm and thimble. Used to guide tape into feeder for spools mounted beneath the machine.
|
|
||||||
"PLA-filament ",https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg. Print both nozzle-rack and 2x z-gantry in a black color. Print top-light-mount and bottom-light-mount in a white color.
|
|
||||||
M5-t-slot-nut,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5-tslot-nut.jpg?v=1686314676,1,FST,https://www.amazon.com/Fastener-Nickel-Plated-Sliding-Aluminum-Profile/dp/B086MKNYDS/ref=sxin_16_pa_sp_search_thematic_sspa,,,
|
|
||||||
M3x14mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x14mm.png?v=1686314903,3,FST,https://www.mcmaster.com/91294A133/,,,
|
|
||||||
M5x10mm-socket-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M5x10mm.png?v=1686314995,1,FST,https://www.mcmaster.com/90128A234/,,,ISO4762
|
|
||||||
M3x8mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x8mm-self-tapping-flat-head.png?v=1686314923,1,FST,https://www.mcmaster.com/95893A189/,,,
|
|
||||||
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
|
||||||
mobo,,1,PCA,,,,Click link above to download source
|
|
||||||
slot,,1,PCA,,,,Click link above to download source
|
|
||||||
drive-wheel,,1,PCB,,,,Click link above to download source
|
|
||||||
light-diffusion,,1,PCB,,,,Click link above to download source
|
|
||||||
photon-8mm-fid,,1,PCB,,,,Click link above to download source
|
|
||||||
slot-harness,,1,CHA,,,,Click link above to download source
|
|
||||||
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/n20.jpg?v=1686329653,1,MISC,https://www.servocity.com/110-rpm-micro-gear-motor/,,,1:210 gear ratio.
|
|
||||||
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/right-angle-n20.jpg?v=1686329653,1,MISC,https://www.aliexpress.com/w/wholesale-worm-n20-encoder.html?catId=0&initiative_id=SB_20230324123628&SearchText=worm+n20+encoder,,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
|
||||||
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,1,MISC,https://www.amazon.com/gp/product/B01EA912P8/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8,,,
|
|
||||||
|
@@ -0,0 +1,22 @@
|
|||||||
|
Part Name,Image,Quantity,Part Type,Source 1,Source 2,Optional,Note
|
||||||
|
frame-8,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
drive-motor-bracket,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
drive-motor-cover,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
peel-gear-frame-8-12,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
peel-gear,,2,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
peel-worm-gear,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
release-lever,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
spool-holder,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
thimble,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,,
|
||||||
|
tape-guide,,1,FDM,Download all 3D printed parts at the link at the top of the page.,,Yes,Replaces the spool arm and thimble. Used to guide tape into feeder for spools mounted beneath the machine.
|
||||||
|
PLA-filament ,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/filament.png?v=1686314492,1.2,FIL,https://www.microcenter.com/product/611532/inland-175mm-black-pla-3d-printer-filament-1kg-spool-(22-lbs),,,Units in kg.
|
||||||
|
M3x14mm-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x14mm.png?v=1686314903,3,FST,https://www.mcmaster.com/91294A133/,,,
|
||||||
|
M3x12mm-self-tapping-flat-head,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/M3x12-self-tapping-flat-head.png?v=1686314903,11,FST,https://www.mcmaster.com/95893A403/,,,
|
||||||
|
feeder-compression-spring,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/feeder-compression-spring.png?v=1691004799,1,MISC,https://www.leespring.com/compression-springs?search=LC026C06M,,,
|
||||||
|
mobo,,1,PCA,,,,Click link above to download source
|
||||||
|
drive-wheel,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/drive-wheel.png?v=1736458393,1,MISC,https://www.opulo.io/products/feeder-part-kit,,,Click link above to download source - This is made out of tumbled laser cut brass
|
||||||
|
light-diffusion,,1,PCB,,,,Click link above to download source
|
||||||
|
photon-8mm-fid,,1,PCB,,,,Click link above to download source
|
||||||
|
n20-motor,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/peel-motor.png?v=1736457933,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.servocity.com/110-rpm-micro-gear-motor/,,1:210 gear ratio.
|
||||||
|
right-angle-n20,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/drive-motor_b5743809-ea03-461a-ab2a-760804040bd6.png?v=1736458345,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.aliexpress.us/item/3256805361367595.html,,14-tick per revolution encoder. 1:1030 gear ratio gearbox.
|
||||||
|
shaft-collar,https://cdn.shopify.com/s/files/1/0570/4256/7355/files/shaft-collar.jpg?v=1686329653,1,MISC,https://www.opulo.io/products/feeder-part-kit,https://www.amazon.com/gp/product/B01EA912P8,,
|
||||||
|
@@ -0,0 +1,4 @@
|
|||||||
|
Id Description Qty Unit Designators
|
||||||
|
1 Connector, IDC, female, 6 pins 6 X23, X24, X25, X26, X27, X28
|
||||||
|
2 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, GY 2.975 m W1, W2, W3, W4, W5
|
||||||
|
3 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, RD 0.595 m W1, W2, W3, W4, W5
|
||||||
|
@@ -0,0 +1,993 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||||
|
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<!-- Generated by graphviz version 6.0.1 (20220911.1526)
|
||||||
|
-->
|
||||||
|
<!-- Pages: 1 -->
|
||||||
|
<svg width="4413pt" height="484pt"
|
||||||
|
viewBox="0.00 0.00 4413.00 483.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 479.5)">
|
||||||
|
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-479.5 4409,-479.5 4409,4 -4,4"/>
|
||||||
|
<!-- X23 -->
|
||||||
|
<g id="node1" class="node">
|
||||||
|
<title>X23</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="233,-440 0,-440 0,0 233,0 233,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-417 0.5,-440 233.5,-440 233.5,-417 0.5,-417"/>
|
||||||
|
<text text-anchor="start" x="104.5" y="-424.8" font-family="arial" font-size="14.00">X23</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-394 0.5,-417 70.5,-417 70.5,-394 0.5,-394"/>
|
||||||
|
<text text-anchor="start" x="23.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="70.5,-394 70.5,-417 157.5,-417 157.5,-394 70.5,-394"/>
|
||||||
|
<text text-anchor="start" x="93" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="157.5,-394 157.5,-417 233.5,-417 233.5,-394 157.5,-394"/>
|
||||||
|
<text text-anchor="start" x="180" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-371 0.5,-394 128.5,-394 128.5,-371 0.5,-371"/>
|
||||||
|
<text text-anchor="start" x="49" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-371 128.5,-394 233.5,-394 233.5,-371 128.5,-371"/>
|
||||||
|
<text text-anchor="start" x="177" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-348 0.5,-371 128.5,-371 128.5,-348 0.5,-348"/>
|
||||||
|
<text text-anchor="start" x="49" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-348 128.5,-371 233.5,-371 233.5,-348 128.5,-348"/>
|
||||||
|
<text text-anchor="start" x="177" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-325 0.5,-348 128.5,-348 128.5,-325 0.5,-325"/>
|
||||||
|
<text text-anchor="start" x="50" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-325 128.5,-348 233.5,-348 233.5,-325 128.5,-325"/>
|
||||||
|
<text text-anchor="start" x="177" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-302 0.5,-325 128.5,-325 128.5,-302 0.5,-302"/>
|
||||||
|
<text text-anchor="start" x="50" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-302 128.5,-325 233.5,-325 233.5,-302 128.5,-302"/>
|
||||||
|
<text text-anchor="start" x="177" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-279 0.5,-302 128.5,-302 128.5,-279 0.5,-279"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-279 128.5,-302 233.5,-302 233.5,-279 128.5,-279"/>
|
||||||
|
<text text-anchor="start" x="177" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-256 0.5,-279 128.5,-279 128.5,-256 0.5,-256"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-256 128.5,-279 233.5,-279 233.5,-256 128.5,-256"/>
|
||||||
|
<text text-anchor="start" x="177" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="233.5,-23 233.5,-256 0.5,-256 0.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="0.5,-23 0.5,0 233.5,0 233.5,-23"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1 -->
|
||||||
|
<g id="node7" class="node">
|
||||||
|
<title>W1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="689,-475 377,-475 377,-241 689,-241 689,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-452 377,-475 689,-475 689,-452 377,-452"/>
|
||||||
|
<text text-anchor="start" x="522" y="-459.8" font-family="arial" font-size="14.00">W1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-429 377,-452 555,-452 555,-429 377,-429"/>
|
||||||
|
<text text-anchor="start" x="381" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="555,-429 555,-452 578,-452 578,-429 555,-429"/>
|
||||||
|
<text text-anchor="start" x="559" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="578,-429 578,-452 638,-452 638,-429 578,-429"/>
|
||||||
|
<text text-anchor="start" x="582" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="638,-429 638,-452 689,-452 689,-429 638,-429"/>
|
||||||
|
<text text-anchor="start" x="642" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="429.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="396.5" y="-396.8" font-family="arial" font-size="14.00">X23:1:GND</text>
|
||||||
|
<text text-anchor="start" x="506" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-396.8" font-family="arial" font-size="14.00">X24:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-389 377,-391 689,-391 689,-389 377,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="377,-387 377,-389 689,-389 689,-387 377,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-385 377,-387 689,-387 689,-385 377,-385"/>
|
||||||
|
<text text-anchor="start" x="396.5" y="-371.8" font-family="arial" font-size="14.00">X23:2:GND</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-371.8" font-family="arial" font-size="14.00">X24:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-364 377,-366 689,-366 689,-364 377,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-362 377,-364 689,-364 689,-362 377,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-360 377,-362 689,-362 689,-360 377,-360"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-346.8" font-family="arial" font-size="14.00">X23:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-346.8" font-family="arial" font-size="14.00">X24:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-339 377,-341 689,-341 689,-339 377,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-337 377,-339 689,-339 689,-337 377,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-335 377,-337 689,-337 689,-335 377,-335"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-321.8" font-family="arial" font-size="14.00">X23:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-321.8" font-family="arial" font-size="14.00">X24:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-314 377,-316 689,-316 689,-314 377,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-312 377,-314 689,-314 689,-312 377,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-310 377,-312 689,-312 689,-310 377,-310"/>
|
||||||
|
<text text-anchor="start" x="407" y="-296.8" font-family="arial" font-size="14.00">X23:5:A</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-296.8" font-family="arial" font-size="14.00">X24:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-289 377,-291 689,-291 689,-289 377,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-287 377,-289 689,-289 689,-287 377,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-285 377,-287 689,-287 689,-285 377,-285"/>
|
||||||
|
<text text-anchor="start" x="407" y="-271.8" font-family="arial" font-size="14.00">X23:6:B</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-271.8" font-family="arial" font-size="14.00">X24:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-264 377,-266 689,-266 689,-264 377,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-262 377,-264 689,-264 689,-262 377,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-260 377,-262 689,-262 689,-260 377,-260"/>
|
||||||
|
<text text-anchor="start" x="429.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge1" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-381C297.64,-381.09 313.56,-386.09 377,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M233,-383C297.04,-383 312.96,-388 377,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-385C296.44,-384.91 312.36,-389.91 377,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge3" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-358C297.38,-358.03 313.36,-361.03 377,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-360C297.01,-360 312.99,-363 377,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-362C296.64,-361.97 312.62,-364.97 377,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge5" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-335C297.13,-335 313.12,-336 377,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-337C297,-337 313,-338 377,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-339C296.88,-339 312.87,-340 377,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge7" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-312C296.88,-312 312.87,-311 377,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-314C297,-314 313,-313 377,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-316C297.13,-316 313.12,-315 377,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge9" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-289C296.64,-289.03 312.62,-286.03 377,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-291C297.01,-291 312.99,-288 377,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-293C297.38,-292.97 313.36,-289.97 377,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X23--W1 -->
|
||||||
|
<g id="edge11" class="edge">
|
||||||
|
<title>X23:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-266C296.44,-266.09 312.36,-261.09 377,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-268C297.04,-268 312.96,-263 377,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-270C297.64,-269.91 313.56,-264.91 377,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24 -->
|
||||||
|
<g id="node2" class="node">
|
||||||
|
<title>X24</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1066,-440 833,-440 833,0 1066,0 1066,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-417 833.5,-440 1066.5,-440 1066.5,-417 833.5,-417"/>
|
||||||
|
<text text-anchor="start" x="937.5" y="-424.8" font-family="arial" font-size="14.00">X24</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-394 833.5,-417 903.5,-417 903.5,-394 833.5,-394"/>
|
||||||
|
<text text-anchor="start" x="856.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-394 903.5,-417 990.5,-417 990.5,-394 903.5,-394"/>
|
||||||
|
<text text-anchor="start" x="926" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="990.5,-394 990.5,-417 1066.5,-417 1066.5,-394 990.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1013" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-371 833.5,-394 903.5,-394 903.5,-371 833.5,-371"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-371 903.5,-394 996.5,-394 996.5,-371 903.5,-371"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-371 996.5,-394 1066.5,-394 1066.5,-371 996.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-348 833.5,-371 903.5,-371 903.5,-348 833.5,-348"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-348 903.5,-371 996.5,-371 996.5,-348 903.5,-348"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-348 996.5,-371 1066.5,-371 1066.5,-348 996.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-325 833.5,-348 903.5,-348 903.5,-325 833.5,-325"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-325 903.5,-348 996.5,-348 996.5,-325 903.5,-325"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-325 996.5,-348 1066.5,-348 1066.5,-325 996.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-302 833.5,-325 903.5,-325 903.5,-302 833.5,-302"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-302 903.5,-325 996.5,-325 996.5,-302 903.5,-302"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-302 996.5,-325 1066.5,-325 1066.5,-302 996.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-279 833.5,-302 903.5,-302 903.5,-279 833.5,-279"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-279 903.5,-302 996.5,-302 996.5,-279 903.5,-279"/>
|
||||||
|
<text text-anchor="start" x="945" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-279 996.5,-302 1066.5,-302 1066.5,-279 996.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-256 833.5,-279 903.5,-279 903.5,-256 833.5,-256"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-256 903.5,-279 996.5,-279 996.5,-256 903.5,-256"/>
|
||||||
|
<text text-anchor="start" x="945" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-256 996.5,-279 1066.5,-279 1066.5,-256 996.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1066.5,-23 1066.5,-256 833.5,-256 833.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="837.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="833.5,-23 833.5,0 1066.5,0 1066.5,-23"/>
|
||||||
|
<text text-anchor="start" x="892.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W2 -->
|
||||||
|
<g id="node8" class="node">
|
||||||
|
<title>W2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1522,-475 1210,-475 1210,-241 1522,-241 1522,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-452 1210,-475 1522,-475 1522,-452 1210,-452"/>
|
||||||
|
<text text-anchor="start" x="1355" y="-459.8" font-family="arial" font-size="14.00">W2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-429 1210,-452 1388,-452 1388,-429 1210,-429"/>
|
||||||
|
<text text-anchor="start" x="1214" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1388,-429 1388,-452 1411,-452 1411,-429 1388,-429"/>
|
||||||
|
<text text-anchor="start" x="1392" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1411,-429 1411,-452 1471,-452 1471,-429 1411,-429"/>
|
||||||
|
<text text-anchor="start" x="1415" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1471,-429 1471,-452 1522,-452 1522,-429 1471,-429"/>
|
||||||
|
<text text-anchor="start" x="1475" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-396.8" font-family="arial" font-size="14.00">X24:1:GND</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-396.8" font-family="arial" font-size="14.00">X25:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-389 1210,-391 1522,-391 1522,-389 1210,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="1210,-387 1210,-389 1522,-389 1522,-387 1210,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-385 1210,-387 1522,-387 1522,-385 1210,-385"/>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-371.8" font-family="arial" font-size="14.00">X24:2:GND</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-371.8" font-family="arial" font-size="14.00">X25:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-364 1210,-366 1522,-366 1522,-364 1210,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-362 1210,-364 1522,-364 1522,-362 1210,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-360 1210,-362 1522,-362 1522,-360 1210,-360"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-346.8" font-family="arial" font-size="14.00">X24:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-346.8" font-family="arial" font-size="14.00">X25:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-339 1210,-341 1522,-341 1522,-339 1210,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-337 1210,-339 1522,-339 1522,-337 1210,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-335 1210,-337 1522,-337 1522,-335 1210,-335"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-321.8" font-family="arial" font-size="14.00">X24:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-321.8" font-family="arial" font-size="14.00">X25:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-314 1210,-316 1522,-316 1522,-314 1210,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-312 1210,-314 1522,-314 1522,-312 1210,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-310 1210,-312 1522,-312 1522,-310 1210,-310"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-296.8" font-family="arial" font-size="14.00">X24:5:A</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-296.8" font-family="arial" font-size="14.00">X25:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-289 1210,-291 1522,-291 1522,-289 1210,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-287 1210,-289 1522,-289 1522,-287 1210,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-285 1210,-287 1522,-287 1522,-285 1210,-285"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-271.8" font-family="arial" font-size="14.00">X24:6:B</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-271.8" font-family="arial" font-size="14.00">X25:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-264 1210,-266 1522,-266 1522,-264 1210,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-262 1210,-264 1522,-264 1522,-262 1210,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-260 1210,-262 1522,-262 1522,-260 1210,-260"/>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge13" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-381C1130.64,-381.09 1146.56,-386.09 1210,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066,-383C1130.04,-383 1145.96,-388 1210,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-385C1129.44,-384.91 1145.36,-389.91 1210,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge15" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-358C1130.38,-358.03 1146.36,-361.03 1210,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-360C1130.01,-360 1145.99,-363 1210,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-362C1129.64,-361.97 1145.62,-364.97 1210,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge17" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-335C1130.13,-335 1146.12,-336 1210,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-337C1130,-337 1146,-338 1210,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-339C1129.88,-339 1145.87,-340 1210,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge19" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-312C1129.88,-312 1145.87,-311 1210,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-314C1130,-314 1146,-313 1210,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-316C1130.13,-316 1146.12,-315 1210,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge21" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-289C1129.64,-289.03 1145.62,-286.03 1210,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-291C1130.01,-291 1145.99,-288 1210,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-293C1130.38,-292.97 1146.36,-289.97 1210,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X24--W2 -->
|
||||||
|
<g id="edge23" class="edge">
|
||||||
|
<title>X24:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-266C1129.44,-266.09 1145.36,-261.09 1210,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-268C1130.04,-268 1145.96,-263 1210,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-270C1130.64,-269.91 1146.56,-264.91 1210,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25 -->
|
||||||
|
<g id="node3" class="node">
|
||||||
|
<title>X25</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1899,-440 1666,-440 1666,0 1899,0 1899,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-417 1666.5,-440 1899.5,-440 1899.5,-417 1666.5,-417"/>
|
||||||
|
<text text-anchor="start" x="1770.5" y="-424.8" font-family="arial" font-size="14.00">X25</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-394 1666.5,-417 1736.5,-417 1736.5,-394 1666.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1689.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-394 1736.5,-417 1823.5,-417 1823.5,-394 1736.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1759" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1823.5,-394 1823.5,-417 1899.5,-417 1899.5,-394 1823.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1846" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-371 1666.5,-394 1736.5,-394 1736.5,-371 1666.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-371 1736.5,-394 1829.5,-394 1829.5,-371 1736.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-371 1829.5,-394 1899.5,-394 1899.5,-371 1829.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-348 1666.5,-371 1736.5,-371 1736.5,-348 1666.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-348 1736.5,-371 1829.5,-371 1829.5,-348 1736.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-348 1829.5,-371 1899.5,-371 1899.5,-348 1829.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-325 1666.5,-348 1736.5,-348 1736.5,-325 1666.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-325 1736.5,-348 1829.5,-348 1829.5,-325 1736.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-325 1829.5,-348 1899.5,-348 1899.5,-325 1829.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-302 1666.5,-325 1736.5,-325 1736.5,-302 1666.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-302 1736.5,-325 1829.5,-325 1829.5,-302 1736.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-302 1829.5,-325 1899.5,-325 1899.5,-302 1829.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-279 1666.5,-302 1736.5,-302 1736.5,-279 1666.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-279 1736.5,-302 1829.5,-302 1829.5,-279 1736.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-279 1829.5,-302 1899.5,-302 1899.5,-279 1829.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-256 1666.5,-279 1736.5,-279 1736.5,-256 1666.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-256 1736.5,-279 1829.5,-279 1829.5,-256 1736.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-256 1829.5,-279 1899.5,-279 1899.5,-256 1829.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1899.5,-23 1899.5,-256 1666.5,-256 1666.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="1670.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="1666.5,-23 1666.5,0 1899.5,0 1899.5,-23"/>
|
||||||
|
<text text-anchor="start" x="1725.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W3 -->
|
||||||
|
<g id="node9" class="node">
|
||||||
|
<title>W3</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2362,-475.5 2043,-475.5 2043,-218.5 2362,-218.5 2362,-475.5"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2043.5,-452 2043.5,-475 2362.5,-475 2362.5,-452 2043.5,-452"/>
|
||||||
|
<text text-anchor="start" x="2192" y="-459.8" font-family="arial" font-size="14.00">W3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2043.5,-429 2043.5,-452 2221.5,-452 2221.5,-429 2043.5,-429"/>
|
||||||
|
<text text-anchor="start" x="2047.5" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2221.5,-429 2221.5,-452 2244.5,-452 2244.5,-429 2221.5,-429"/>
|
||||||
|
<text text-anchor="start" x="2225.5" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2244.5,-429 2244.5,-452 2304.5,-452 2304.5,-429 2244.5,-429"/>
|
||||||
|
<text text-anchor="start" x="2248.5" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2304.5,-429 2304.5,-452 2362.5,-452 2362.5,-429 2304.5,-429"/>
|
||||||
|
<text text-anchor="start" x="2308.5" y="-436.8" font-family="arial" font-size="14.00">0.475 m</text>
|
||||||
|
<text text-anchor="start" x="2097.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="2064.5" y="-396.8" font-family="arial" font-size="14.00">X25:1:GND</text>
|
||||||
|
<text text-anchor="start" x="2176.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="2272" y="-396.8" font-family="arial" font-size="14.00">X26:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-389 2043.5,-391 2362.5,-391 2362.5,-389 2043.5,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="2043.5,-387 2043.5,-389 2362.5,-389 2362.5,-387 2043.5,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-385 2043.5,-387 2362.5,-387 2362.5,-385 2043.5,-385"/>
|
||||||
|
<text text-anchor="start" x="2064.5" y="-371.8" font-family="arial" font-size="14.00">X25:2:GND</text>
|
||||||
|
<text text-anchor="start" x="2176" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2272" y="-371.8" font-family="arial" font-size="14.00">X26:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-364 2043.5,-366 2362.5,-366 2362.5,-364 2043.5,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043.5,-362 2043.5,-364 2362.5,-364 2362.5,-362 2043.5,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-360 2043.5,-362 2362.5,-362 2362.5,-360 2043.5,-360"/>
|
||||||
|
<text text-anchor="start" x="2065.5" y="-346.8" font-family="arial" font-size="14.00">X25:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="2176" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2273" y="-346.8" font-family="arial" font-size="14.00">X26:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-339 2043.5,-341 2362.5,-341 2362.5,-339 2043.5,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043.5,-337 2043.5,-339 2362.5,-339 2362.5,-337 2043.5,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-335 2043.5,-337 2362.5,-337 2362.5,-335 2043.5,-335"/>
|
||||||
|
<text text-anchor="start" x="2065.5" y="-321.8" font-family="arial" font-size="14.00">X25:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="2176" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2273" y="-321.8" font-family="arial" font-size="14.00">X26:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-314 2043.5,-316 2362.5,-316 2362.5,-314 2043.5,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043.5,-312 2043.5,-314 2362.5,-314 2362.5,-312 2043.5,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-310 2043.5,-312 2362.5,-312 2362.5,-310 2043.5,-310"/>
|
||||||
|
<text text-anchor="start" x="2075" y="-296.8" font-family="arial" font-size="14.00">X25:5:A</text>
|
||||||
|
<text text-anchor="start" x="2176" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2282.5" y="-296.8" font-family="arial" font-size="14.00">X26:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-289 2043.5,-291 2362.5,-291 2362.5,-289 2043.5,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043.5,-287 2043.5,-289 2362.5,-289 2362.5,-287 2043.5,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-285 2043.5,-287 2362.5,-287 2362.5,-285 2043.5,-285"/>
|
||||||
|
<text text-anchor="start" x="2075" y="-271.8" font-family="arial" font-size="14.00">X25:6:B</text>
|
||||||
|
<text text-anchor="start" x="2176" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2282.5" y="-271.8" font-family="arial" font-size="14.00">X26:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-264 2043.5,-266 2362.5,-266 2362.5,-264 2043.5,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043.5,-262 2043.5,-264 2362.5,-264 2362.5,-262 2043.5,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043.5,-260 2043.5,-262 2362.5,-262 2362.5,-260 2043.5,-260"/>
|
||||||
|
<text text-anchor="start" x="2097.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<polygon fill="none" stroke="black" points="2043.5,-218 2043.5,-241 2362.5,-241 2362.5,-218 2043.5,-218"/>
|
||||||
|
<text text-anchor="start" x="2078" y="-225.8" font-family="arial" font-size="14.00">NOTE - This cable is longer than the rest.</text>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge25" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-381C1963.64,-381.09 1979.56,-386.09 2043,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1899,-383C1963.04,-383 1978.96,-388 2043,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-385C1962.44,-384.91 1978.36,-389.91 2043,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge27" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-358C1963.38,-358.03 1979.36,-361.03 2043,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-360C1963.01,-360 1978.99,-363 2043,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-362C1962.64,-361.97 1978.62,-364.97 2043,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge29" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-335C1963.13,-335 1979.12,-336 2043,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-337C1963,-337 1979,-338 2043,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-339C1962.88,-339 1978.87,-340 2043,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge31" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-312C1962.88,-312 1978.87,-311 2043,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-314C1963,-314 1979,-313 2043,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-316C1963.13,-316 1979.12,-315 2043,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge33" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-289C1962.64,-289.03 1978.62,-286.03 2043,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-291C1963.01,-291 1978.99,-288 2043,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-293C1963.38,-292.97 1979.36,-289.97 2043,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X25--W3 -->
|
||||||
|
<g id="edge35" class="edge">
|
||||||
|
<title>X25:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-266C1962.44,-266.09 1978.36,-261.09 2043,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-268C1963.04,-268 1978.96,-263 2043,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-270C1963.64,-269.91 1979.56,-264.91 2043,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26 -->
|
||||||
|
<g id="node4" class="node">
|
||||||
|
<title>X26</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="2739,-440 2506,-440 2506,0 2739,0 2739,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-417 2506.5,-440 2739.5,-440 2739.5,-417 2506.5,-417"/>
|
||||||
|
<text text-anchor="start" x="2610.5" y="-424.8" font-family="arial" font-size="14.00">X26</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-394 2506.5,-417 2576.5,-417 2576.5,-394 2506.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2529.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-394 2576.5,-417 2663.5,-417 2663.5,-394 2576.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2599" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2663.5,-394 2663.5,-417 2739.5,-417 2739.5,-394 2663.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2686" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-371 2506.5,-394 2576.5,-394 2576.5,-371 2506.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-371 2576.5,-394 2669.5,-394 2669.5,-371 2576.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2607.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-371 2669.5,-394 2739.5,-394 2739.5,-371 2669.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-348 2506.5,-371 2576.5,-371 2576.5,-348 2506.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-348 2576.5,-371 2669.5,-371 2669.5,-348 2576.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2607.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-348 2669.5,-371 2739.5,-371 2739.5,-348 2669.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-325 2506.5,-348 2576.5,-348 2576.5,-325 2506.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-325 2576.5,-348 2669.5,-348 2669.5,-325 2576.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2608.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-325 2669.5,-348 2739.5,-348 2739.5,-325 2669.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-302 2506.5,-325 2576.5,-325 2576.5,-302 2506.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-302 2576.5,-325 2669.5,-325 2669.5,-302 2576.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2608.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-302 2669.5,-325 2739.5,-325 2739.5,-302 2669.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-279 2506.5,-302 2576.5,-302 2576.5,-279 2506.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-279 2576.5,-302 2669.5,-302 2669.5,-279 2576.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2618" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-279 2669.5,-302 2739.5,-302 2739.5,-279 2669.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2506.5,-256 2506.5,-279 2576.5,-279 2576.5,-256 2506.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2537.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2576.5,-256 2576.5,-279 2669.5,-279 2669.5,-256 2576.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2618" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2669.5,-256 2669.5,-279 2739.5,-279 2739.5,-256 2669.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2700.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="2739.5,-23 2739.5,-256 2506.5,-256 2506.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="2510.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="2506.5,-23 2506.5,0 2739.5,0 2739.5,-23"/>
|
||||||
|
<text text-anchor="start" x="2565.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W4 -->
|
||||||
|
<g id="node10" class="node">
|
||||||
|
<title>W4</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="3195,-475 2883,-475 2883,-241 3195,-241 3195,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2883,-452 2883,-475 3195,-475 3195,-452 2883,-452"/>
|
||||||
|
<text text-anchor="start" x="3028" y="-459.8" font-family="arial" font-size="14.00">W4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2883,-429 2883,-452 3061,-452 3061,-429 2883,-429"/>
|
||||||
|
<text text-anchor="start" x="2887" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3061,-429 3061,-452 3084,-452 3084,-429 3061,-429"/>
|
||||||
|
<text text-anchor="start" x="3065" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3084,-429 3084,-452 3144,-452 3144,-429 3084,-429"/>
|
||||||
|
<text text-anchor="start" x="3088" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3144,-429 3144,-452 3195,-452 3195,-429 3144,-429"/>
|
||||||
|
<text text-anchor="start" x="3148" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="2935.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="2902.5" y="-396.8" font-family="arial" font-size="14.00">X26:1:GND</text>
|
||||||
|
<text text-anchor="start" x="3012" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="3105.5" y="-396.8" font-family="arial" font-size="14.00">X27:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-389 2883,-391 3195,-391 3195,-389 2883,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="2883,-387 2883,-389 3195,-389 3195,-387 2883,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-385 2883,-387 3195,-387 3195,-385 2883,-385"/>
|
||||||
|
<text text-anchor="start" x="2902.5" y="-371.8" font-family="arial" font-size="14.00">X26:2:GND</text>
|
||||||
|
<text text-anchor="start" x="3011.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3105.5" y="-371.8" font-family="arial" font-size="14.00">X27:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-364 2883,-366 3195,-366 3195,-364 2883,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2883,-362 2883,-364 3195,-364 3195,-362 2883,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-360 2883,-362 3195,-362 3195,-360 2883,-360"/>
|
||||||
|
<text text-anchor="start" x="2903.5" y="-346.8" font-family="arial" font-size="14.00">X26:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="3011.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3106.5" y="-346.8" font-family="arial" font-size="14.00">X27:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-339 2883,-341 3195,-341 3195,-339 2883,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2883,-337 2883,-339 3195,-339 3195,-337 2883,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-335 2883,-337 3195,-337 3195,-335 2883,-335"/>
|
||||||
|
<text text-anchor="start" x="2903.5" y="-321.8" font-family="arial" font-size="14.00">X26:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="3011.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3106.5" y="-321.8" font-family="arial" font-size="14.00">X27:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-314 2883,-316 3195,-316 3195,-314 2883,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2883,-312 2883,-314 3195,-314 3195,-312 2883,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-310 2883,-312 3195,-312 3195,-310 2883,-310"/>
|
||||||
|
<text text-anchor="start" x="2913" y="-296.8" font-family="arial" font-size="14.00">X26:5:A</text>
|
||||||
|
<text text-anchor="start" x="3011.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3116" y="-296.8" font-family="arial" font-size="14.00">X27:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-289 2883,-291 3195,-291 3195,-289 2883,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2883,-287 2883,-289 3195,-289 3195,-287 2883,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-285 2883,-287 3195,-287 3195,-285 2883,-285"/>
|
||||||
|
<text text-anchor="start" x="2913" y="-271.8" font-family="arial" font-size="14.00">X26:6:B</text>
|
||||||
|
<text text-anchor="start" x="3011.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3116" y="-271.8" font-family="arial" font-size="14.00">X27:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-264 2883,-266 3195,-266 3195,-264 2883,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2883,-262 2883,-264 3195,-264 3195,-262 2883,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2883,-260 2883,-262 3195,-262 3195,-260 2883,-260"/>
|
||||||
|
<text text-anchor="start" x="2935.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge37" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-381C2803.64,-381.09 2819.56,-386.09 2883,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M2739,-383C2803.04,-383 2818.96,-388 2883,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-385C2802.44,-384.91 2818.36,-389.91 2883,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge39" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-358C2803.38,-358.03 2819.36,-361.03 2883,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2739,-360C2803.01,-360 2818.99,-363 2883,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-362C2802.64,-361.97 2818.62,-364.97 2883,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge41" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-335C2803.13,-335 2819.12,-336 2883,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2739,-337C2803,-337 2819,-338 2883,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-339C2802.88,-339 2818.87,-340 2883,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge43" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-312C2802.88,-312 2818.87,-311 2883,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2739,-314C2803,-314 2819,-313 2883,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-316C2803.13,-316 2819.12,-315 2883,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge45" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-289C2802.64,-289.03 2818.62,-286.03 2883,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2739,-291C2803.01,-291 2818.99,-288 2883,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-293C2803.38,-292.97 2819.36,-289.97 2883,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X26--W4 -->
|
||||||
|
<g id="edge47" class="edge">
|
||||||
|
<title>X26:e--W4:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-266C2802.44,-266.09 2818.36,-261.09 2883,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2739,-268C2803.04,-268 2818.96,-263 2883,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2739,-270C2803.64,-269.91 2819.56,-264.91 2883,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27 -->
|
||||||
|
<g id="node5" class="node">
|
||||||
|
<title>X27</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="3572,-440 3339,-440 3339,0 3572,0 3572,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-417 3339.5,-440 3572.5,-440 3572.5,-417 3339.5,-417"/>
|
||||||
|
<text text-anchor="start" x="3443.5" y="-424.8" font-family="arial" font-size="14.00">X27</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-394 3339.5,-417 3409.5,-417 3409.5,-394 3339.5,-394"/>
|
||||||
|
<text text-anchor="start" x="3362.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-394 3409.5,-417 3496.5,-417 3496.5,-394 3409.5,-394"/>
|
||||||
|
<text text-anchor="start" x="3432" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3496.5,-394 3496.5,-417 3572.5,-417 3572.5,-394 3496.5,-394"/>
|
||||||
|
<text text-anchor="start" x="3519" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-371 3339.5,-394 3409.5,-394 3409.5,-371 3339.5,-371"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-371 3409.5,-394 3502.5,-394 3502.5,-371 3409.5,-371"/>
|
||||||
|
<text text-anchor="start" x="3440.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-371 3502.5,-394 3572.5,-394 3572.5,-371 3502.5,-371"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-348 3339.5,-371 3409.5,-371 3409.5,-348 3339.5,-348"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-348 3409.5,-371 3502.5,-371 3502.5,-348 3409.5,-348"/>
|
||||||
|
<text text-anchor="start" x="3440.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-348 3502.5,-371 3572.5,-371 3572.5,-348 3502.5,-348"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-325 3339.5,-348 3409.5,-348 3409.5,-325 3339.5,-325"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-325 3409.5,-348 3502.5,-348 3502.5,-325 3409.5,-325"/>
|
||||||
|
<text text-anchor="start" x="3441.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-325 3502.5,-348 3572.5,-348 3572.5,-325 3502.5,-325"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-302 3339.5,-325 3409.5,-325 3409.5,-302 3339.5,-302"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-302 3409.5,-325 3502.5,-325 3502.5,-302 3409.5,-302"/>
|
||||||
|
<text text-anchor="start" x="3441.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-302 3502.5,-325 3572.5,-325 3572.5,-302 3502.5,-302"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-279 3339.5,-302 3409.5,-302 3409.5,-279 3339.5,-279"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-279 3409.5,-302 3502.5,-302 3502.5,-279 3409.5,-279"/>
|
||||||
|
<text text-anchor="start" x="3451" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-279 3502.5,-302 3572.5,-302 3572.5,-279 3502.5,-279"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3339.5,-256 3339.5,-279 3409.5,-279 3409.5,-256 3339.5,-256"/>
|
||||||
|
<text text-anchor="start" x="3370.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3409.5,-256 3409.5,-279 3502.5,-279 3502.5,-256 3409.5,-256"/>
|
||||||
|
<text text-anchor="start" x="3451" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3502.5,-256 3502.5,-279 3572.5,-279 3572.5,-256 3502.5,-256"/>
|
||||||
|
<text text-anchor="start" x="3533.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="3572.5,-23 3572.5,-256 3339.5,-256 3339.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="3343.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="3339.5,-23 3339.5,0 3572.5,0 3572.5,-23"/>
|
||||||
|
<text text-anchor="start" x="3398.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W5 -->
|
||||||
|
<g id="node11" class="node">
|
||||||
|
<title>W5</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="4028,-475 3716,-475 3716,-241 4028,-241 4028,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="3716,-452 3716,-475 4028,-475 4028,-452 3716,-452"/>
|
||||||
|
<text text-anchor="start" x="3861" y="-459.8" font-family="arial" font-size="14.00">W5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3716,-429 3716,-452 3894,-452 3894,-429 3716,-429"/>
|
||||||
|
<text text-anchor="start" x="3720" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3894,-429 3894,-452 3917,-452 3917,-429 3894,-429"/>
|
||||||
|
<text text-anchor="start" x="3898" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3917,-429 3917,-452 3977,-452 3977,-429 3917,-429"/>
|
||||||
|
<text text-anchor="start" x="3921" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="3977,-429 3977,-452 4028,-452 4028,-429 3977,-429"/>
|
||||||
|
<text text-anchor="start" x="3981" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="3768.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="3735.5" y="-396.8" font-family="arial" font-size="14.00">X27:1:GND</text>
|
||||||
|
<text text-anchor="start" x="3845" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="3938.5" y="-396.8" font-family="arial" font-size="14.00">X28:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-389 3716,-391 4028,-391 4028,-389 3716,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="3716,-387 3716,-389 4028,-389 4028,-387 3716,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-385 3716,-387 4028,-387 4028,-385 3716,-385"/>
|
||||||
|
<text text-anchor="start" x="3735.5" y="-371.8" font-family="arial" font-size="14.00">X27:2:GND</text>
|
||||||
|
<text text-anchor="start" x="3844.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3938.5" y="-371.8" font-family="arial" font-size="14.00">X28:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-364 3716,-366 4028,-366 4028,-364 3716,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="3716,-362 3716,-364 4028,-364 4028,-362 3716,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-360 3716,-362 4028,-362 4028,-360 3716,-360"/>
|
||||||
|
<text text-anchor="start" x="3736.5" y="-346.8" font-family="arial" font-size="14.00">X27:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="3844.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3939.5" y="-346.8" font-family="arial" font-size="14.00">X28:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-339 3716,-341 4028,-341 4028,-339 3716,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="3716,-337 3716,-339 4028,-339 4028,-337 3716,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-335 3716,-337 4028,-337 4028,-335 3716,-335"/>
|
||||||
|
<text text-anchor="start" x="3736.5" y="-321.8" font-family="arial" font-size="14.00">X27:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="3844.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3939.5" y="-321.8" font-family="arial" font-size="14.00">X28:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-314 3716,-316 4028,-316 4028,-314 3716,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="3716,-312 3716,-314 4028,-314 4028,-312 3716,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-310 3716,-312 4028,-312 4028,-310 3716,-310"/>
|
||||||
|
<text text-anchor="start" x="3746" y="-296.8" font-family="arial" font-size="14.00">X27:5:A</text>
|
||||||
|
<text text-anchor="start" x="3844.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3949" y="-296.8" font-family="arial" font-size="14.00">X28:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-289 3716,-291 4028,-291 4028,-289 3716,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="3716,-287 3716,-289 4028,-289 4028,-287 3716,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-285 3716,-287 4028,-287 4028,-285 3716,-285"/>
|
||||||
|
<text text-anchor="start" x="3746" y="-271.8" font-family="arial" font-size="14.00">X27:6:B</text>
|
||||||
|
<text text-anchor="start" x="3844.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="3949" y="-271.8" font-family="arial" font-size="14.00">X28:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-264 3716,-266 4028,-266 4028,-264 3716,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="3716,-262 3716,-264 4028,-264 4028,-262 3716,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="3716,-260 3716,-262 4028,-262 4028,-260 3716,-260"/>
|
||||||
|
<text text-anchor="start" x="3768.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge49" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-381C3636.64,-381.09 3652.56,-386.09 3716,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M3572,-383C3636.04,-383 3651.96,-388 3716,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-385C3635.44,-384.91 3651.36,-389.91 3716,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge51" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-358C3636.38,-358.03 3652.36,-361.03 3716,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3572,-360C3636.01,-360 3651.99,-363 3716,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-362C3635.64,-361.97 3651.62,-364.97 3716,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge53" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-335C3636.13,-335 3652.12,-336 3716,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3572,-337C3636,-337 3652,-338 3716,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-339C3635.88,-339 3651.87,-340 3716,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge55" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-312C3635.88,-312 3651.87,-311 3716,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3572,-314C3636,-314 3652,-313 3716,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-316C3636.13,-316 3652.12,-315 3716,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge57" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-289C3635.64,-289.03 3651.62,-286.03 3716,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3572,-291C3636.01,-291 3651.99,-288 3716,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-293C3636.38,-292.97 3652.36,-289.97 3716,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X27--W5 -->
|
||||||
|
<g id="edge59" class="edge">
|
||||||
|
<title>X27:e--W5:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-266C3635.44,-266.09 3651.36,-261.09 3716,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3572,-268C3636.04,-268 3651.96,-263 3716,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3572,-270C3636.64,-269.91 3652.56,-264.91 3716,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X28 -->
|
||||||
|
<g id="node6" class="node">
|
||||||
|
<title>X28</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="4405,-440 4172,-440 4172,0 4405,0 4405,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-417 4172.5,-440 4405.5,-440 4405.5,-417 4172.5,-417"/>
|
||||||
|
<text text-anchor="start" x="4276.5" y="-424.8" font-family="arial" font-size="14.00">X28</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-394 4172.5,-417 4242.5,-417 4242.5,-394 4172.5,-394"/>
|
||||||
|
<text text-anchor="start" x="4195.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4242.5,-394 4242.5,-417 4329.5,-417 4329.5,-394 4242.5,-394"/>
|
||||||
|
<text text-anchor="start" x="4265" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4329.5,-394 4329.5,-417 4405.5,-417 4405.5,-394 4329.5,-394"/>
|
||||||
|
<text text-anchor="start" x="4352" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-371 4172.5,-394 4277.5,-394 4277.5,-371 4172.5,-371"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-371 4277.5,-394 4405.5,-394 4405.5,-371 4277.5,-371"/>
|
||||||
|
<text text-anchor="start" x="4326" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-348 4172.5,-371 4277.5,-371 4277.5,-348 4172.5,-348"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-348 4277.5,-371 4405.5,-371 4405.5,-348 4277.5,-348"/>
|
||||||
|
<text text-anchor="start" x="4326" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-325 4172.5,-348 4277.5,-348 4277.5,-325 4172.5,-325"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-325 4277.5,-348 4405.5,-348 4405.5,-325 4277.5,-325"/>
|
||||||
|
<text text-anchor="start" x="4327" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-302 4172.5,-325 4277.5,-325 4277.5,-302 4172.5,-302"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-302 4277.5,-325 4405.5,-325 4405.5,-302 4277.5,-302"/>
|
||||||
|
<text text-anchor="start" x="4327" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-279 4172.5,-302 4277.5,-302 4277.5,-279 4172.5,-279"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-279 4277.5,-302 4405.5,-302 4405.5,-279 4277.5,-279"/>
|
||||||
|
<text text-anchor="start" x="4336.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4172.5,-256 4172.5,-279 4277.5,-279 4277.5,-256 4172.5,-256"/>
|
||||||
|
<text text-anchor="start" x="4221" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="4277.5,-256 4277.5,-279 4405.5,-279 4405.5,-256 4277.5,-256"/>
|
||||||
|
<text text-anchor="start" x="4336.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polyline fill="none" stroke="black" points="4405.5,-23 4405.5,-256 4172.5,-256 4172.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4176.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="4172.5,-23 4172.5,0 4405.5,0 4405.5,-23"/>
|
||||||
|
<text text-anchor="start" x="4231.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge2" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-386C752.44,-386.09 768.36,-381.09 833,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M689,-388C753.04,-388 768.96,-383 833,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-390C753.64,-389.91 769.56,-384.91 833,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge4" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-361C752.64,-361.03 768.62,-358.03 833,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-363C753.01,-363 768.99,-360 833,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-365C753.38,-364.97 769.36,-361.97 833,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge6" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-336C752.88,-336 768.87,-335 833,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-338C753,-338 769,-337 833,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-340C753.13,-340 769.12,-339 833,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge8" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-311C753.13,-311 769.12,-312 833,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-313C753,-313 769,-314 833,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-315C752.88,-315 768.87,-316 833,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge10" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-286C753.38,-286.03 769.36,-289.03 833,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-288C753.01,-288 768.99,-291 833,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-290C752.64,-289.97 768.62,-292.97 833,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X24 -->
|
||||||
|
<g id="edge12" class="edge">
|
||||||
|
<title>W1:e--X24:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-261C753.64,-261.09 769.56,-266.09 833,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-263C753.04,-263 768.96,-268 833,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-265C752.44,-264.91 768.36,-269.91 833,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge14" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-386C1585.44,-386.09 1601.36,-381.09 1666,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1522,-388C1586.04,-388 1601.96,-383 1666,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-390C1586.64,-389.91 1602.56,-384.91 1666,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge16" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-361C1585.64,-361.03 1601.62,-358.03 1666,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-363C1586.01,-363 1601.99,-360 1666,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-365C1586.38,-364.97 1602.36,-361.97 1666,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge18" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-336C1585.88,-336 1601.87,-335 1666,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-338C1586,-338 1602,-337 1666,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-340C1586.13,-340 1602.12,-339 1666,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge20" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-311C1586.13,-311 1602.12,-312 1666,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-313C1586,-313 1602,-314 1666,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-315C1585.88,-315 1601.87,-316 1666,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge22" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-286C1586.38,-286.03 1602.36,-289.03 1666,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-288C1586.01,-288 1601.99,-291 1666,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-290C1585.64,-289.97 1601.62,-292.97 1666,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X25 -->
|
||||||
|
<g id="edge24" class="edge">
|
||||||
|
<title>W2:e--X25:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-261C1586.64,-261.09 1602.56,-266.09 1666,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-263C1586.04,-263 1601.96,-268 1666,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-265C1585.44,-264.91 1601.36,-269.91 1666,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge26" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-386C2425.44,-386.09 2441.36,-381.09 2506,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M2362,-388C2426.04,-388 2441.96,-383 2506,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-390C2426.64,-389.91 2442.56,-384.91 2506,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge28" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-361C2425.64,-361.03 2441.62,-358.03 2506,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2362,-363C2426.01,-363 2441.99,-360 2506,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-365C2426.38,-364.97 2442.36,-361.97 2506,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge30" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-336C2425.88,-336 2441.87,-335 2506,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2362,-338C2426,-338 2442,-337 2506,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-340C2426.13,-340 2442.12,-339 2506,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge32" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-311C2426.13,-311 2442.12,-312 2506,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2362,-313C2426,-313 2442,-314 2506,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-315C2425.88,-315 2441.87,-316 2506,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge34" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-286C2426.38,-286.03 2442.36,-289.03 2506,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2362,-288C2426.01,-288 2441.99,-291 2506,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-290C2425.64,-289.97 2441.62,-292.97 2506,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X26 -->
|
||||||
|
<g id="edge36" class="edge">
|
||||||
|
<title>W3:e--X26:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-261C2426.64,-261.09 2442.56,-266.09 2506,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2362,-263C2426.04,-263 2441.96,-268 2506,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2362,-265C2425.44,-264.91 2441.36,-269.91 2506,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge38" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-386C3258.44,-386.09 3274.36,-381.09 3339,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M3195,-388C3259.04,-388 3274.96,-383 3339,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-390C3259.64,-389.91 3275.56,-384.91 3339,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge40" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-361C3258.64,-361.03 3274.62,-358.03 3339,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3195,-363C3259.01,-363 3274.99,-360 3339,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-365C3259.38,-364.97 3275.36,-361.97 3339,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge42" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-336C3258.88,-336 3274.87,-335 3339,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3195,-338C3259,-338 3275,-337 3339,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-340C3259.13,-340 3275.12,-339 3339,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge44" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-311C3259.13,-311 3275.12,-312 3339,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3195,-313C3259,-313 3275,-314 3339,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-315C3258.88,-315 3274.87,-316 3339,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge46" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-286C3259.38,-286.03 3275.36,-289.03 3339,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3195,-288C3259.01,-288 3274.99,-291 3339,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-290C3258.64,-289.97 3274.62,-292.97 3339,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W4--X27 -->
|
||||||
|
<g id="edge48" class="edge">
|
||||||
|
<title>W4:e--X27:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-261C3259.64,-261.09 3275.56,-266.09 3339,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M3195,-263C3259.04,-263 3274.96,-268 3339,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M3195,-265C3258.44,-264.91 3274.36,-269.91 3339,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge50" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-386C4091.44,-386.09 4107.36,-381.09 4172,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M4028,-388C4092.04,-388 4107.96,-383 4172,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-390C4092.64,-389.91 4108.56,-384.91 4172,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge52" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-361C4091.64,-361.03 4107.62,-358.03 4172,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M4028,-363C4092.01,-363 4107.99,-360 4172,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-365C4092.38,-364.97 4108.36,-361.97 4172,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge54" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-336C4091.88,-336 4107.87,-335 4172,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M4028,-338C4092,-338 4108,-337 4172,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-340C4092.13,-340 4108.12,-339 4172,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge56" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-311C4092.13,-311 4108.12,-312 4172,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M4028,-313C4092,-313 4108,-314 4172,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-315C4091.88,-315 4107.87,-316 4172,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge58" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-286C4092.38,-286.03 4108.36,-289.03 4172,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M4028,-288C4092.01,-288 4107.99,-291 4172,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-290C4091.64,-289.97 4107.62,-292.97 4172,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W5--X28 -->
|
||||||
|
<g id="edge60" class="edge">
|
||||||
|
<title>W5:e--X28:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-261C4092.64,-261.09 4108.56,-266.09 4172,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M4028,-263C4092.04,-263 4107.96,-268 4172,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M4028,-265C4091.44,-264.91 4107.36,-269.91 4172,-270"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 77 KiB |
@@ -0,0 +1,76 @@
|
|||||||
|
templates:
|
||||||
|
- &template_con
|
||||||
|
type: IDC
|
||||||
|
subtype: female
|
||||||
|
pinlabels: [GND, GND, VDC, VDC, A, B]
|
||||||
|
image:
|
||||||
|
src: ../resources/idc.jpeg
|
||||||
|
caption: 2x3 IDC Connector
|
||||||
|
- &template_wire_jumper
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.03
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
- &template_wire_mobo
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.26
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
- &template_wire_front_back
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.475
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
|
||||||
|
connectors:
|
||||||
|
X23:
|
||||||
|
<<: *template_con
|
||||||
|
X24:
|
||||||
|
<<: *template_con
|
||||||
|
X25:
|
||||||
|
<<: *template_con
|
||||||
|
X26:
|
||||||
|
<<: *template_con
|
||||||
|
X27:
|
||||||
|
<<: *template_con
|
||||||
|
X28:
|
||||||
|
<<: *template_con
|
||||||
|
|
||||||
|
cables:
|
||||||
|
W1:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
W2:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
W3:
|
||||||
|
<<: *template_wire_front_back
|
||||||
|
W4:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
W5:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
|
||||||
|
connections:
|
||||||
|
-
|
||||||
|
- X23: [1-6]
|
||||||
|
- W1: [1-6]
|
||||||
|
- X24: [1-6]
|
||||||
|
-
|
||||||
|
- X24: [1-6]
|
||||||
|
- W2: [1-6]
|
||||||
|
- X25: [1-6]
|
||||||
|
-
|
||||||
|
- X25: [1-6]
|
||||||
|
- W3: [1-6]
|
||||||
|
- X26: [1-6]
|
||||||
|
-
|
||||||
|
- X26: [1-6]
|
||||||
|
- W4: [1-6]
|
||||||
|
- X27: [1-6]
|
||||||
|
-
|
||||||
|
- X27: [1-6]
|
||||||
|
- W5: [1-6]
|
||||||
|
- X28: [1-6]
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
Id Description Qty Unit Designators
|
||||||
|
1 Connector, IDC, female, 6 pins 4 X0, X1, X2, X3
|
||||||
|
2 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, GY 1.6 m W1, W2, W3
|
||||||
|
3 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, RD 0.32 m W1, W2, W3
|
||||||
|
@@ -0,0 +1,651 @@
|
|||||||
|
graph {
|
||||||
|
// Graph generated by WireViz 0.3.2
|
||||||
|
// https://github.com/formatc1702/WireViz
|
||||||
|
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||||
|
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||||
|
edge [fontname=arial style=bold]
|
||||||
|
X0 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X0</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p1r">1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p2r">2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p3r">3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p4r">4</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>A</td>
|
||||||
|
<td port="p5r">5</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B</td>
|
||||||
|
<td port="p6r">6</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
X1 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X1</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td port="p1l">1</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p1r">1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p2l">2</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p2r">2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p3l">3</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p3r">3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p4l">4</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p4r">4</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p5l">5</td>
|
||||||
|
<td>A</td>
|
||||||
|
<td port="p5r">5</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p6l">6</td>
|
||||||
|
<td>B</td>
|
||||||
|
<td port="p6r">6</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
X2 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X2</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td port="p1l">1</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p1r">1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p2l">2</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p2r">2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p3l">3</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p3r">3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p4l">4</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p4r">4</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p5l">5</td>
|
||||||
|
<td>A</td>
|
||||||
|
<td port="p5r">5</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p6l">6</td>
|
||||||
|
<td>B</td>
|
||||||
|
<td port="p6r">6</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
X3 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X3</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td port="p1l">1</td>
|
||||||
|
<td>GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p2l">2</td>
|
||||||
|
<td>GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p3l">3</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p4l">4</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p5l">5</td>
|
||||||
|
<td>A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p6l">6</td>
|
||||||
|
<td>B</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
edge [color="#000000:#ff0000:#000000"]
|
||||||
|
X0:p1r:e -- W1:w1:w
|
||||||
|
W1:w1:e -- X1:p1l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X0:p2r:e -- W1:w2:w
|
||||||
|
W1:w2:e -- X1:p2l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X0:p3r:e -- W1:w3:w
|
||||||
|
W1:w3:e -- X1:p3l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X0:p4r:e -- W1:w4:w
|
||||||
|
W1:w4:e -- X1:p4l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X0:p5r:e -- W1:w5:w
|
||||||
|
W1:w5:e -- X1:p5l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X0:p6r:e -- W1:w6:w
|
||||||
|
W1:w6:e -- X1:p6l:w
|
||||||
|
W1 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">W1</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">1.27mm Pitch Ribbon Cable</td>
|
||||||
|
<td balign="left">6x</td>
|
||||||
|
<td balign="left">26 AWG</td>
|
||||||
|
<td balign="left">0.26 m</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellborder="0">
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:1:GND</td>
|
||||||
|
<td>
|
||||||
|
RD
|
||||||
|
</td>
|
||||||
|
<td>X1:1:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:2:GND</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X1:2:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:3:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X1:3:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:4:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X1:4:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:5:A</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X1:5:A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X0:6:B</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X1:6:B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">This cable is longer than the rest.</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||||
|
edge [color="#000000:#ff0000:#000000"]
|
||||||
|
X1:p1r:e -- W2:w1:w
|
||||||
|
W2:w1:e -- X2:p1l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X1:p2r:e -- W2:w2:w
|
||||||
|
W2:w2:e -- X2:p2l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X1:p3r:e -- W2:w3:w
|
||||||
|
W2:w3:e -- X2:p3l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X1:p4r:e -- W2:w4:w
|
||||||
|
W2:w4:e -- X2:p4l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X1:p5r:e -- W2:w5:w
|
||||||
|
W2:w5:e -- X2:p5l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X1:p6r:e -- W2:w6:w
|
||||||
|
W2:w6:e -- X2:p6l:w
|
||||||
|
W2 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">W2</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">1.27mm Pitch Ribbon Cable</td>
|
||||||
|
<td balign="left">6x</td>
|
||||||
|
<td balign="left">26 AWG</td>
|
||||||
|
<td balign="left">0.03 m</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellborder="0">
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:1:GND</td>
|
||||||
|
<td>
|
||||||
|
RD
|
||||||
|
</td>
|
||||||
|
<td>X2:1:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:2:GND</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X2:2:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:3:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X2:3:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:4:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X2:4:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:5:A</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X2:5:A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X1:6:B</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X2:6:B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||||
|
edge [color="#000000:#ff0000:#000000"]
|
||||||
|
X2:p1r:e -- W3:w1:w
|
||||||
|
W3:w1:e -- X3:p1l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X2:p2r:e -- W3:w2:w
|
||||||
|
W3:w2:e -- X3:p2l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X2:p3r:e -- W3:w3:w
|
||||||
|
W3:w3:e -- X3:p3l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X2:p4r:e -- W3:w4:w
|
||||||
|
W3:w4:e -- X3:p4l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X2:p5r:e -- W3:w5:w
|
||||||
|
W3:w5:e -- X3:p5l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X2:p6r:e -- W3:w6:w
|
||||||
|
W3:w6:e -- X3:p6l:w
|
||||||
|
W3 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">W3</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">1.27mm Pitch Ribbon Cable</td>
|
||||||
|
<td balign="left">6x</td>
|
||||||
|
<td balign="left">26 AWG</td>
|
||||||
|
<td balign="left">0.03 m</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellborder="0">
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:1:GND</td>
|
||||||
|
<td>
|
||||||
|
RD
|
||||||
|
</td>
|
||||||
|
<td>X3:1:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:2:GND</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X3:2:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:3:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X3:3:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:4:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X3:4:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:5:A</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X3:5:A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X2:6:B</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X3:6:B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,651 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en"><head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="generator" content="WireViz 0.3.2 - https://github.com/formatc1702/WireViz">
|
||||||
|
<title>feeder-floor-harness-mobo</title>
|
||||||
|
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||||
|
<h1>feeder-floor-harness-mobo</h1>
|
||||||
|
<h2>Diagram</h2>
|
||||||
|
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||||
|
<!-- Generated by graphviz version 6.0.1 (20220911.1526)
|
||||||
|
-->
|
||||||
|
<!-- Pages: 1 -->
|
||||||
|
<svg width="2740pt" height="484pt"
|
||||||
|
viewBox="0.00 0.00 2740.00 483.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 479.5)">
|
||||||
|
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-479.5 2736,-479.5 2736,4 -4,4"/>
|
||||||
|
<!-- X0 -->
|
||||||
|
<g id="node1" class="node">
|
||||||
|
<title>X0</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="233,-440 0,-440 0,0 233,0 233,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-417 0.5,-440 233.5,-440 233.5,-417 0.5,-417"/>
|
||||||
|
<text text-anchor="start" x="108.5" y="-424.8" font-family="arial" font-size="14.00">X0</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-394 0.5,-417 70.5,-417 70.5,-394 0.5,-394"/>
|
||||||
|
<text text-anchor="start" x="23.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="70.5,-394 70.5,-417 157.5,-417 157.5,-394 70.5,-394"/>
|
||||||
|
<text text-anchor="start" x="93" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="157.5,-394 157.5,-417 233.5,-417 233.5,-394 157.5,-394"/>
|
||||||
|
<text text-anchor="start" x="180" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-371 0.5,-394 128.5,-394 128.5,-371 0.5,-371"/>
|
||||||
|
<text text-anchor="start" x="49" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-371 128.5,-394 233.5,-394 233.5,-371 128.5,-371"/>
|
||||||
|
<text text-anchor="start" x="177" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-348 0.5,-371 128.5,-371 128.5,-348 0.5,-348"/>
|
||||||
|
<text text-anchor="start" x="49" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-348 128.5,-371 233.5,-371 233.5,-348 128.5,-348"/>
|
||||||
|
<text text-anchor="start" x="177" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-325 0.5,-348 128.5,-348 128.5,-325 0.5,-325"/>
|
||||||
|
<text text-anchor="start" x="50" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-325 128.5,-348 233.5,-348 233.5,-325 128.5,-325"/>
|
||||||
|
<text text-anchor="start" x="177" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-302 0.5,-325 128.5,-325 128.5,-302 0.5,-302"/>
|
||||||
|
<text text-anchor="start" x="50" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-302 128.5,-325 233.5,-325 233.5,-302 128.5,-302"/>
|
||||||
|
<text text-anchor="start" x="177" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-279 0.5,-302 128.5,-302 128.5,-279 0.5,-279"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-279 128.5,-302 233.5,-302 233.5,-279 128.5,-279"/>
|
||||||
|
<text text-anchor="start" x="177" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-256 0.5,-279 128.5,-279 128.5,-256 0.5,-256"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-256 128.5,-279 233.5,-279 233.5,-256 128.5,-256"/>
|
||||||
|
<text text-anchor="start" x="177" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="233.5,-23 233.5,-256 0.5,-256 0.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="0.5,-23 0.5,0 233.5,0 233.5,-23"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1 -->
|
||||||
|
<g id="node5" class="node">
|
||||||
|
<title>W1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="689,-475.5 377,-475.5 377,-218.5 689,-218.5 689,-475.5"/>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-452 377,-475 689,-475 689,-452 377,-452"/>
|
||||||
|
<text text-anchor="start" x="522" y="-459.8" font-family="arial" font-size="14.00">W1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-429 377,-452 555,-452 555,-429 377,-429"/>
|
||||||
|
<text text-anchor="start" x="381" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="555,-429 555,-452 578,-452 578,-429 555,-429"/>
|
||||||
|
<text text-anchor="start" x="559" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="578,-429 578,-452 638,-452 638,-429 578,-429"/>
|
||||||
|
<text text-anchor="start" x="582" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="638,-429 638,-452 689,-452 689,-429 638,-429"/>
|
||||||
|
<text text-anchor="start" x="642" y="-436.8" font-family="arial" font-size="14.00">0.26 m</text>
|
||||||
|
<text text-anchor="start" x="428.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="399" y="-396.8" font-family="arial" font-size="14.00">X0:1:GND</text>
|
||||||
|
<text text-anchor="start" x="506.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="604.5" y="-396.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-389 377,-391 689,-391 689,-389 377,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="377,-387 377,-389 689,-389 689,-387 377,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-385 377,-387 689,-387 689,-385 377,-385"/>
|
||||||
|
<text text-anchor="start" x="399" y="-371.8" font-family="arial" font-size="14.00">X0:2:GND</text>
|
||||||
|
<text text-anchor="start" x="506" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="604.5" y="-371.8" font-family="arial" font-size="14.00">X1:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-364 377,-366 689,-366 689,-364 377,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-362 377,-364 689,-364 689,-362 377,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-360 377,-362 689,-362 689,-360 377,-360"/>
|
||||||
|
<text text-anchor="start" x="400" y="-346.8" font-family="arial" font-size="14.00">X0:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="506" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="605.5" y="-346.8" font-family="arial" font-size="14.00">X1:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-339 377,-341 689,-341 689,-339 377,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-337 377,-339 689,-339 689,-337 377,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-335 377,-337 689,-337 689,-335 377,-335"/>
|
||||||
|
<text text-anchor="start" x="400" y="-321.8" font-family="arial" font-size="14.00">X0:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="506" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="605.5" y="-321.8" font-family="arial" font-size="14.00">X1:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-314 377,-316 689,-316 689,-314 377,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-312 377,-314 689,-314 689,-312 377,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-310 377,-312 689,-312 689,-310 377,-310"/>
|
||||||
|
<text text-anchor="start" x="410" y="-296.8" font-family="arial" font-size="14.00">X0:5:A</text>
|
||||||
|
<text text-anchor="start" x="506" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="615.5" y="-296.8" font-family="arial" font-size="14.00">X1:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-289 377,-291 689,-291 689,-289 377,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-287 377,-289 689,-289 689,-287 377,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-285 377,-287 689,-287 689,-285 377,-285"/>
|
||||||
|
<text text-anchor="start" x="410" y="-271.8" font-family="arial" font-size="14.00">X0:6:B</text>
|
||||||
|
<text text-anchor="start" x="506" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="615.5" y="-271.8" font-family="arial" font-size="14.00">X1:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-264 377,-266 689,-266 689,-264 377,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-262 377,-264 689,-264 689,-262 377,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-260 377,-262 689,-262 689,-260 377,-260"/>
|
||||||
|
<text text-anchor="start" x="428.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-218 377,-241 689,-241 689,-218 377,-218"/>
|
||||||
|
<text text-anchor="start" x="433.5" y="-225.8" font-family="arial" font-size="14.00">This cable is longer than the rest.</text>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge1" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-381C297.64,-381.09 313.56,-386.09 377,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M233,-383C297.04,-383 312.96,-388 377,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-385C296.44,-384.91 312.36,-389.91 377,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge3" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-358C297.38,-358.03 313.36,-361.03 377,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-360C297.01,-360 312.99,-363 377,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-362C296.64,-361.97 312.62,-364.97 377,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge5" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-335C297.13,-335 313.12,-336 377,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-337C297,-337 313,-338 377,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-339C296.88,-339 312.87,-340 377,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge7" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-312C296.88,-312 312.87,-311 377,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-314C297,-314 313,-313 377,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-316C297.13,-316 313.12,-315 377,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge9" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-289C296.64,-289.03 312.62,-286.03 377,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-291C297.01,-291 312.99,-288 377,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-293C297.38,-292.97 313.36,-289.97 377,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge11" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-266C296.44,-266.09 312.36,-261.09 377,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-268C297.04,-268 312.96,-263 377,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-270C297.64,-269.91 313.56,-264.91 377,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1 -->
|
||||||
|
<g id="node2" class="node">
|
||||||
|
<title>X1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1066,-440 833,-440 833,0 1066,0 1066,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-417 833.5,-440 1066.5,-440 1066.5,-417 833.5,-417"/>
|
||||||
|
<text text-anchor="start" x="941.5" y="-424.8" font-family="arial" font-size="14.00">X1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-394 833.5,-417 903.5,-417 903.5,-394 833.5,-394"/>
|
||||||
|
<text text-anchor="start" x="856.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-394 903.5,-417 990.5,-417 990.5,-394 903.5,-394"/>
|
||||||
|
<text text-anchor="start" x="926" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="990.5,-394 990.5,-417 1066.5,-417 1066.5,-394 990.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1013" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-371 833.5,-394 903.5,-394 903.5,-371 833.5,-371"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-371 903.5,-394 996.5,-394 996.5,-371 903.5,-371"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-371 996.5,-394 1066.5,-394 1066.5,-371 996.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-348 833.5,-371 903.5,-371 903.5,-348 833.5,-348"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-348 903.5,-371 996.5,-371 996.5,-348 903.5,-348"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-348 996.5,-371 1066.5,-371 1066.5,-348 996.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-325 833.5,-348 903.5,-348 903.5,-325 833.5,-325"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-325 903.5,-348 996.5,-348 996.5,-325 903.5,-325"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-325 996.5,-348 1066.5,-348 1066.5,-325 996.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-302 833.5,-325 903.5,-325 903.5,-302 833.5,-302"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-302 903.5,-325 996.5,-325 996.5,-302 903.5,-302"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-302 996.5,-325 1066.5,-325 1066.5,-302 996.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-279 833.5,-302 903.5,-302 903.5,-279 833.5,-279"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-279 903.5,-302 996.5,-302 996.5,-279 903.5,-279"/>
|
||||||
|
<text text-anchor="start" x="945" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-279 996.5,-302 1066.5,-302 1066.5,-279 996.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-256 833.5,-279 903.5,-279 903.5,-256 833.5,-256"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-256 903.5,-279 996.5,-279 996.5,-256 903.5,-256"/>
|
||||||
|
<text text-anchor="start" x="945" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-256 996.5,-279 1066.5,-279 1066.5,-256 996.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1066.5,-23 1066.5,-256 833.5,-256 833.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="837.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="833.5,-23 833.5,0 1066.5,0 1066.5,-23"/>
|
||||||
|
<text text-anchor="start" x="892.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W2 -->
|
||||||
|
<g id="node6" class="node">
|
||||||
|
<title>W2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1522,-475 1210,-475 1210,-241 1522,-241 1522,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-452 1210,-475 1522,-475 1522,-452 1210,-452"/>
|
||||||
|
<text text-anchor="start" x="1355" y="-459.8" font-family="arial" font-size="14.00">W2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-429 1210,-452 1388,-452 1388,-429 1210,-429"/>
|
||||||
|
<text text-anchor="start" x="1214" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1388,-429 1388,-452 1411,-452 1411,-429 1388,-429"/>
|
||||||
|
<text text-anchor="start" x="1392" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1411,-429 1411,-452 1471,-452 1471,-429 1411,-429"/>
|
||||||
|
<text text-anchor="start" x="1415" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1471,-429 1471,-452 1522,-452 1522,-429 1471,-429"/>
|
||||||
|
<text text-anchor="start" x="1475" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="1261.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="1232" y="-396.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||||
|
<text text-anchor="start" x="1339.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="1437.5" y="-396.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-389 1210,-391 1522,-391 1522,-389 1210,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="1210,-387 1210,-389 1522,-389 1522,-387 1210,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-385 1210,-387 1522,-387 1522,-385 1210,-385"/>
|
||||||
|
<text text-anchor="start" x="1232" y="-371.8" font-family="arial" font-size="14.00">X1:2:GND</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1437.5" y="-371.8" font-family="arial" font-size="14.00">X2:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-364 1210,-366 1522,-366 1522,-364 1210,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-362 1210,-364 1522,-364 1522,-362 1210,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-360 1210,-362 1522,-362 1522,-360 1210,-360"/>
|
||||||
|
<text text-anchor="start" x="1233" y="-346.8" font-family="arial" font-size="14.00">X1:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1438.5" y="-346.8" font-family="arial" font-size="14.00">X2:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-339 1210,-341 1522,-341 1522,-339 1210,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-337 1210,-339 1522,-339 1522,-337 1210,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-335 1210,-337 1522,-337 1522,-335 1210,-335"/>
|
||||||
|
<text text-anchor="start" x="1233" y="-321.8" font-family="arial" font-size="14.00">X1:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1438.5" y="-321.8" font-family="arial" font-size="14.00">X2:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-314 1210,-316 1522,-316 1522,-314 1210,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-312 1210,-314 1522,-314 1522,-312 1210,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-310 1210,-312 1522,-312 1522,-310 1210,-310"/>
|
||||||
|
<text text-anchor="start" x="1243" y="-296.8" font-family="arial" font-size="14.00">X1:5:A</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1448.5" y="-296.8" font-family="arial" font-size="14.00">X2:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-289 1210,-291 1522,-291 1522,-289 1210,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-287 1210,-289 1522,-289 1522,-287 1210,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-285 1210,-287 1522,-287 1522,-285 1210,-285"/>
|
||||||
|
<text text-anchor="start" x="1243" y="-271.8" font-family="arial" font-size="14.00">X1:6:B</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1448.5" y="-271.8" font-family="arial" font-size="14.00">X2:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-264 1210,-266 1522,-266 1522,-264 1210,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-262 1210,-264 1522,-264 1522,-262 1210,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-260 1210,-262 1522,-262 1522,-260 1210,-260"/>
|
||||||
|
<text text-anchor="start" x="1261.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge13" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-381C1130.64,-381.09 1146.56,-386.09 1210,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066,-383C1130.04,-383 1145.96,-388 1210,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-385C1129.44,-384.91 1145.36,-389.91 1210,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge15" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-358C1130.38,-358.03 1146.36,-361.03 1210,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-360C1130.01,-360 1145.99,-363 1210,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-362C1129.64,-361.97 1145.62,-364.97 1210,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge17" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-335C1130.13,-335 1146.12,-336 1210,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-337C1130,-337 1146,-338 1210,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-339C1129.88,-339 1145.87,-340 1210,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge19" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-312C1129.88,-312 1145.87,-311 1210,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-314C1130,-314 1146,-313 1210,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-316C1130.13,-316 1146.12,-315 1210,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge21" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-289C1129.64,-289.03 1145.62,-286.03 1210,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-291C1130.01,-291 1145.99,-288 1210,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-293C1130.38,-292.97 1146.36,-289.97 1210,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge23" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-266C1129.44,-266.09 1145.36,-261.09 1210,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-268C1130.04,-268 1145.96,-263 1210,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-270C1130.64,-269.91 1146.56,-264.91 1210,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2 -->
|
||||||
|
<g id="node3" class="node">
|
||||||
|
<title>X2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1899,-440 1666,-440 1666,0 1899,0 1899,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-417 1666.5,-440 1899.5,-440 1899.5,-417 1666.5,-417"/>
|
||||||
|
<text text-anchor="start" x="1774.5" y="-424.8" font-family="arial" font-size="14.00">X2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-394 1666.5,-417 1736.5,-417 1736.5,-394 1666.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1689.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-394 1736.5,-417 1823.5,-417 1823.5,-394 1736.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1759" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1823.5,-394 1823.5,-417 1899.5,-417 1899.5,-394 1823.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1846" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-371 1666.5,-394 1736.5,-394 1736.5,-371 1666.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-371 1736.5,-394 1829.5,-394 1829.5,-371 1736.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-371 1829.5,-394 1899.5,-394 1899.5,-371 1829.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-348 1666.5,-371 1736.5,-371 1736.5,-348 1666.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-348 1736.5,-371 1829.5,-371 1829.5,-348 1736.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-348 1829.5,-371 1899.5,-371 1899.5,-348 1829.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-325 1666.5,-348 1736.5,-348 1736.5,-325 1666.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-325 1736.5,-348 1829.5,-348 1829.5,-325 1736.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-325 1829.5,-348 1899.5,-348 1899.5,-325 1829.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-302 1666.5,-325 1736.5,-325 1736.5,-302 1666.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-302 1736.5,-325 1829.5,-325 1829.5,-302 1736.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-302 1829.5,-325 1899.5,-325 1899.5,-302 1829.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-279 1666.5,-302 1736.5,-302 1736.5,-279 1666.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-279 1736.5,-302 1829.5,-302 1829.5,-279 1736.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-279 1829.5,-302 1899.5,-302 1899.5,-279 1829.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-256 1666.5,-279 1736.5,-279 1736.5,-256 1666.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-256 1736.5,-279 1829.5,-279 1829.5,-256 1736.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-256 1829.5,-279 1899.5,-279 1899.5,-256 1829.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1899.5,-23 1899.5,-256 1666.5,-256 1666.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="1670.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="1666.5,-23 1666.5,0 1899.5,0 1899.5,-23"/>
|
||||||
|
<text text-anchor="start" x="1725.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W3 -->
|
||||||
|
<g id="node7" class="node">
|
||||||
|
<title>W3</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2355,-475 2043,-475 2043,-241 2355,-241 2355,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2043,-452 2043,-475 2355,-475 2355,-452 2043,-452"/>
|
||||||
|
<text text-anchor="start" x="2188" y="-459.8" font-family="arial" font-size="14.00">W3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2043,-429 2043,-452 2221,-452 2221,-429 2043,-429"/>
|
||||||
|
<text text-anchor="start" x="2047" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2221,-429 2221,-452 2244,-452 2244,-429 2221,-429"/>
|
||||||
|
<text text-anchor="start" x="2225" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2244,-429 2244,-452 2304,-452 2304,-429 2244,-429"/>
|
||||||
|
<text text-anchor="start" x="2248" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2304,-429 2304,-452 2355,-452 2355,-429 2304,-429"/>
|
||||||
|
<text text-anchor="start" x="2308" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="2094.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="2065" y="-396.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||||
|
<text text-anchor="start" x="2172.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="2270.5" y="-396.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-389 2043,-391 2355,-391 2355,-389 2043,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="2043,-387 2043,-389 2355,-389 2355,-387 2043,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-385 2043,-387 2355,-387 2355,-385 2043,-385"/>
|
||||||
|
<text text-anchor="start" x="2065" y="-371.8" font-family="arial" font-size="14.00">X2:2:GND</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2270.5" y="-371.8" font-family="arial" font-size="14.00">X3:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-364 2043,-366 2355,-366 2355,-364 2043,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-362 2043,-364 2355,-364 2355,-362 2043,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-360 2043,-362 2355,-362 2355,-360 2043,-360"/>
|
||||||
|
<text text-anchor="start" x="2066" y="-346.8" font-family="arial" font-size="14.00">X2:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2271.5" y="-346.8" font-family="arial" font-size="14.00">X3:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-339 2043,-341 2355,-341 2355,-339 2043,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-337 2043,-339 2355,-339 2355,-337 2043,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-335 2043,-337 2355,-337 2355,-335 2043,-335"/>
|
||||||
|
<text text-anchor="start" x="2066" y="-321.8" font-family="arial" font-size="14.00">X2:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2271.5" y="-321.8" font-family="arial" font-size="14.00">X3:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-314 2043,-316 2355,-316 2355,-314 2043,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-312 2043,-314 2355,-314 2355,-312 2043,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-310 2043,-312 2355,-312 2355,-310 2043,-310"/>
|
||||||
|
<text text-anchor="start" x="2076" y="-296.8" font-family="arial" font-size="14.00">X2:5:A</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2281.5" y="-296.8" font-family="arial" font-size="14.00">X3:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-289 2043,-291 2355,-291 2355,-289 2043,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-287 2043,-289 2355,-289 2355,-287 2043,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-285 2043,-287 2355,-287 2355,-285 2043,-285"/>
|
||||||
|
<text text-anchor="start" x="2076" y="-271.8" font-family="arial" font-size="14.00">X2:6:B</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2281.5" y="-271.8" font-family="arial" font-size="14.00">X3:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-264 2043,-266 2355,-266 2355,-264 2043,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-262 2043,-264 2355,-264 2355,-262 2043,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-260 2043,-262 2355,-262 2355,-260 2043,-260"/>
|
||||||
|
<text text-anchor="start" x="2094.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge25" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-381C1963.64,-381.09 1979.56,-386.09 2043,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1899,-383C1963.04,-383 1978.96,-388 2043,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-385C1962.44,-384.91 1978.36,-389.91 2043,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge27" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-358C1963.38,-358.03 1979.36,-361.03 2043,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-360C1963.01,-360 1978.99,-363 2043,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-362C1962.64,-361.97 1978.62,-364.97 2043,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge29" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-335C1963.13,-335 1979.12,-336 2043,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-337C1963,-337 1979,-338 2043,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-339C1962.88,-339 1978.87,-340 2043,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge31" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-312C1962.88,-312 1978.87,-311 2043,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-314C1963,-314 1979,-313 2043,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-316C1963.13,-316 1979.12,-315 2043,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge33" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-289C1962.64,-289.03 1978.62,-286.03 2043,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-291C1963.01,-291 1978.99,-288 2043,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-293C1963.38,-292.97 1979.36,-289.97 2043,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge35" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-266C1962.44,-266.09 1978.36,-261.09 2043,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-268C1963.04,-268 1978.96,-263 2043,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-270C1963.64,-269.91 1979.56,-264.91 2043,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X3 -->
|
||||||
|
<g id="node4" class="node">
|
||||||
|
<title>X3</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="2732,-440 2499,-440 2499,0 2732,0 2732,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-417 2499.5,-440 2732.5,-440 2732.5,-417 2499.5,-417"/>
|
||||||
|
<text text-anchor="start" x="2607.5" y="-424.8" font-family="arial" font-size="14.00">X3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-394 2499.5,-417 2569.5,-417 2569.5,-394 2499.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2522.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2569.5,-394 2569.5,-417 2656.5,-417 2656.5,-394 2569.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2592" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2656.5,-394 2656.5,-417 2732.5,-417 2732.5,-394 2656.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2679" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-371 2499.5,-394 2604.5,-394 2604.5,-371 2499.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-371 2604.5,-394 2732.5,-394 2732.5,-371 2604.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2653" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-348 2499.5,-371 2604.5,-371 2604.5,-348 2499.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-348 2604.5,-371 2732.5,-371 2732.5,-348 2604.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2653" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-325 2499.5,-348 2604.5,-348 2604.5,-325 2499.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-325 2604.5,-348 2732.5,-348 2732.5,-325 2604.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2654" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-302 2499.5,-325 2604.5,-325 2604.5,-302 2499.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-302 2604.5,-325 2732.5,-325 2732.5,-302 2604.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2654" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-279 2499.5,-302 2604.5,-302 2604.5,-279 2499.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-279 2604.5,-302 2732.5,-302 2732.5,-279 2604.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2663.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-256 2499.5,-279 2604.5,-279 2604.5,-256 2499.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-256 2604.5,-279 2732.5,-279 2732.5,-256 2604.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2663.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polyline fill="none" stroke="black" points="2732.5,-23 2732.5,-256 2499.5,-256 2499.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="2503.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="2499.5,-23 2499.5,0 2732.5,0 2732.5,-23"/>
|
||||||
|
<text text-anchor="start" x="2558.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge2" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-386C752.44,-386.09 768.36,-381.09 833,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M689,-388C753.04,-388 768.96,-383 833,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-390C753.64,-389.91 769.56,-384.91 833,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge4" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-361C752.64,-361.03 768.62,-358.03 833,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-363C753.01,-363 768.99,-360 833,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-365C753.38,-364.97 769.36,-361.97 833,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge6" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-336C752.88,-336 768.87,-335 833,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-338C753,-338 769,-337 833,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-340C753.13,-340 769.12,-339 833,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge8" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-311C753.13,-311 769.12,-312 833,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-313C753,-313 769,-314 833,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-315C752.88,-315 768.87,-316 833,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge10" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-286C753.38,-286.03 769.36,-289.03 833,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-288C753.01,-288 768.99,-291 833,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-290C752.64,-289.97 768.62,-292.97 833,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge12" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-261C753.64,-261.09 769.56,-266.09 833,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-263C753.04,-263 768.96,-268 833,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-265C752.44,-264.91 768.36,-269.91 833,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge14" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-386C1585.44,-386.09 1601.36,-381.09 1666,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1522,-388C1586.04,-388 1601.96,-383 1666,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-390C1586.64,-389.91 1602.56,-384.91 1666,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge16" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-361C1585.64,-361.03 1601.62,-358.03 1666,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-363C1586.01,-363 1601.99,-360 1666,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-365C1586.38,-364.97 1602.36,-361.97 1666,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge18" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-336C1585.88,-336 1601.87,-335 1666,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-338C1586,-338 1602,-337 1666,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-340C1586.13,-340 1602.12,-339 1666,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge20" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-311C1586.13,-311 1602.12,-312 1666,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-313C1586,-313 1602,-314 1666,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-315C1585.88,-315 1601.87,-316 1666,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge22" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-286C1586.38,-286.03 1602.36,-289.03 1666,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-288C1586.01,-288 1601.99,-291 1666,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-290C1585.64,-289.97 1601.62,-292.97 1666,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge24" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-261C1586.64,-261.09 1602.56,-266.09 1666,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-263C1586.04,-263 1601.96,-268 1666,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-265C1585.44,-264.91 1601.36,-269.91 1666,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge26" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-386C2418.44,-386.09 2434.36,-381.09 2499,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M2355,-388C2419.04,-388 2434.96,-383 2499,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-390C2419.64,-389.91 2435.56,-384.91 2499,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge28" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-361C2418.64,-361.03 2434.62,-358.03 2499,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-363C2419.01,-363 2434.99,-360 2499,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-365C2419.38,-364.97 2435.36,-361.97 2499,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge30" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-336C2418.88,-336 2434.87,-335 2499,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-338C2419,-338 2435,-337 2499,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-340C2419.13,-340 2435.12,-339 2499,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge32" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-311C2419.13,-311 2435.12,-312 2499,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-313C2419,-313 2435,-314 2499,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-315C2418.88,-315 2434.87,-316 2499,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge34" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-286C2419.38,-286.03 2435.36,-289.03 2499,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-288C2419.01,-288 2434.99,-291 2499,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-290C2418.64,-289.97 2434.62,-292.97 2499,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge36" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-261C2419.64,-261.09 2435.56,-266.09 2499,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-263C2419.04,-263 2434.96,-268 2499,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-265C2418.44,-264.91 2434.36,-269.91 2499,-270"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
<h2>Bill of Materials</h2>
|
||||||
|
<table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px">
|
||||||
|
<tr>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Id</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Description</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Qty</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Unit</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Designators</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">1</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Connector, IDC, female, 6 pins</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">4</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px"></td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">X0, X1, X2, X3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">2</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, GY</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">1.6</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">m</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">W1, W2, W3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">3</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, RD</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.32</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">m</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">W1, W2, W3</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body></html>
|
||||||
@@ -0,0 +1,613 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||||
|
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<!-- Generated by graphviz version 6.0.1 (20220911.1526)
|
||||||
|
-->
|
||||||
|
<!-- Pages: 1 -->
|
||||||
|
<svg width="2740pt" height="484pt"
|
||||||
|
viewBox="0.00 0.00 2740.00 483.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 479.5)">
|
||||||
|
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-479.5 2736,-479.5 2736,4 -4,4"/>
|
||||||
|
<!-- X0 -->
|
||||||
|
<g id="node1" class="node">
|
||||||
|
<title>X0</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="233,-440 0,-440 0,0 233,0 233,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-417 0.5,-440 233.5,-440 233.5,-417 0.5,-417"/>
|
||||||
|
<text text-anchor="start" x="108.5" y="-424.8" font-family="arial" font-size="14.00">X0</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-394 0.5,-417 70.5,-417 70.5,-394 0.5,-394"/>
|
||||||
|
<text text-anchor="start" x="23.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="70.5,-394 70.5,-417 157.5,-417 157.5,-394 70.5,-394"/>
|
||||||
|
<text text-anchor="start" x="93" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="157.5,-394 157.5,-417 233.5,-417 233.5,-394 157.5,-394"/>
|
||||||
|
<text text-anchor="start" x="180" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-371 0.5,-394 128.5,-394 128.5,-371 0.5,-371"/>
|
||||||
|
<text text-anchor="start" x="49" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-371 128.5,-394 233.5,-394 233.5,-371 128.5,-371"/>
|
||||||
|
<text text-anchor="start" x="177" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-348 0.5,-371 128.5,-371 128.5,-348 0.5,-348"/>
|
||||||
|
<text text-anchor="start" x="49" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-348 128.5,-371 233.5,-371 233.5,-348 128.5,-348"/>
|
||||||
|
<text text-anchor="start" x="177" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-325 0.5,-348 128.5,-348 128.5,-325 0.5,-325"/>
|
||||||
|
<text text-anchor="start" x="50" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-325 128.5,-348 233.5,-348 233.5,-325 128.5,-325"/>
|
||||||
|
<text text-anchor="start" x="177" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-302 0.5,-325 128.5,-325 128.5,-302 0.5,-302"/>
|
||||||
|
<text text-anchor="start" x="50" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-302 128.5,-325 233.5,-325 233.5,-302 128.5,-302"/>
|
||||||
|
<text text-anchor="start" x="177" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-279 0.5,-302 128.5,-302 128.5,-279 0.5,-279"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-279 128.5,-302 233.5,-302 233.5,-279 128.5,-279"/>
|
||||||
|
<text text-anchor="start" x="177" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-256 0.5,-279 128.5,-279 128.5,-256 0.5,-256"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-256 128.5,-279 233.5,-279 233.5,-256 128.5,-256"/>
|
||||||
|
<text text-anchor="start" x="177" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="233.5,-23 233.5,-256 0.5,-256 0.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="0.5,-23 0.5,0 233.5,0 233.5,-23"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1 -->
|
||||||
|
<g id="node5" class="node">
|
||||||
|
<title>W1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="689,-475.5 377,-475.5 377,-218.5 689,-218.5 689,-475.5"/>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-452 377,-475 689,-475 689,-452 377,-452"/>
|
||||||
|
<text text-anchor="start" x="522" y="-459.8" font-family="arial" font-size="14.00">W1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-429 377,-452 555,-452 555,-429 377,-429"/>
|
||||||
|
<text text-anchor="start" x="381" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="555,-429 555,-452 578,-452 578,-429 555,-429"/>
|
||||||
|
<text text-anchor="start" x="559" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="578,-429 578,-452 638,-452 638,-429 578,-429"/>
|
||||||
|
<text text-anchor="start" x="582" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="638,-429 638,-452 689,-452 689,-429 638,-429"/>
|
||||||
|
<text text-anchor="start" x="642" y="-436.8" font-family="arial" font-size="14.00">0.26 m</text>
|
||||||
|
<text text-anchor="start" x="428.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="399" y="-396.8" font-family="arial" font-size="14.00">X0:1:GND</text>
|
||||||
|
<text text-anchor="start" x="506.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="604.5" y="-396.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-389 377,-391 689,-391 689,-389 377,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="377,-387 377,-389 689,-389 689,-387 377,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-385 377,-387 689,-387 689,-385 377,-385"/>
|
||||||
|
<text text-anchor="start" x="399" y="-371.8" font-family="arial" font-size="14.00">X0:2:GND</text>
|
||||||
|
<text text-anchor="start" x="506" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="604.5" y="-371.8" font-family="arial" font-size="14.00">X1:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-364 377,-366 689,-366 689,-364 377,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-362 377,-364 689,-364 689,-362 377,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-360 377,-362 689,-362 689,-360 377,-360"/>
|
||||||
|
<text text-anchor="start" x="400" y="-346.8" font-family="arial" font-size="14.00">X0:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="506" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="605.5" y="-346.8" font-family="arial" font-size="14.00">X1:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-339 377,-341 689,-341 689,-339 377,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-337 377,-339 689,-339 689,-337 377,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-335 377,-337 689,-337 689,-335 377,-335"/>
|
||||||
|
<text text-anchor="start" x="400" y="-321.8" font-family="arial" font-size="14.00">X0:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="506" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="605.5" y="-321.8" font-family="arial" font-size="14.00">X1:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-314 377,-316 689,-316 689,-314 377,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-312 377,-314 689,-314 689,-312 377,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-310 377,-312 689,-312 689,-310 377,-310"/>
|
||||||
|
<text text-anchor="start" x="410" y="-296.8" font-family="arial" font-size="14.00">X0:5:A</text>
|
||||||
|
<text text-anchor="start" x="506" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="615.5" y="-296.8" font-family="arial" font-size="14.00">X1:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-289 377,-291 689,-291 689,-289 377,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-287 377,-289 689,-289 689,-287 377,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-285 377,-287 689,-287 689,-285 377,-285"/>
|
||||||
|
<text text-anchor="start" x="410" y="-271.8" font-family="arial" font-size="14.00">X0:6:B</text>
|
||||||
|
<text text-anchor="start" x="506" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="615.5" y="-271.8" font-family="arial" font-size="14.00">X1:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-264 377,-266 689,-266 689,-264 377,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-262 377,-264 689,-264 689,-262 377,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-260 377,-262 689,-262 689,-260 377,-260"/>
|
||||||
|
<text text-anchor="start" x="428.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-218 377,-241 689,-241 689,-218 377,-218"/>
|
||||||
|
<text text-anchor="start" x="433.5" y="-225.8" font-family="arial" font-size="14.00">This cable is longer than the rest.</text>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge1" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-381C297.64,-381.09 313.56,-386.09 377,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M233,-383C297.04,-383 312.96,-388 377,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-385C296.44,-384.91 312.36,-389.91 377,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge3" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-358C297.38,-358.03 313.36,-361.03 377,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-360C297.01,-360 312.99,-363 377,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-362C296.64,-361.97 312.62,-364.97 377,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge5" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-335C297.13,-335 313.12,-336 377,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-337C297,-337 313,-338 377,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-339C296.88,-339 312.87,-340 377,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge7" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-312C296.88,-312 312.87,-311 377,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-314C297,-314 313,-313 377,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-316C297.13,-316 313.12,-315 377,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge9" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-289C296.64,-289.03 312.62,-286.03 377,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-291C297.01,-291 312.99,-288 377,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-293C297.38,-292.97 313.36,-289.97 377,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X0--W1 -->
|
||||||
|
<g id="edge11" class="edge">
|
||||||
|
<title>X0:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-266C296.44,-266.09 312.36,-261.09 377,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-268C297.04,-268 312.96,-263 377,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-270C297.64,-269.91 313.56,-264.91 377,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1 -->
|
||||||
|
<g id="node2" class="node">
|
||||||
|
<title>X1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1066,-440 833,-440 833,0 1066,0 1066,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-417 833.5,-440 1066.5,-440 1066.5,-417 833.5,-417"/>
|
||||||
|
<text text-anchor="start" x="941.5" y="-424.8" font-family="arial" font-size="14.00">X1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-394 833.5,-417 903.5,-417 903.5,-394 833.5,-394"/>
|
||||||
|
<text text-anchor="start" x="856.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-394 903.5,-417 990.5,-417 990.5,-394 903.5,-394"/>
|
||||||
|
<text text-anchor="start" x="926" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="990.5,-394 990.5,-417 1066.5,-417 1066.5,-394 990.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1013" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-371 833.5,-394 903.5,-394 903.5,-371 833.5,-371"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-371 903.5,-394 996.5,-394 996.5,-371 903.5,-371"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-371 996.5,-394 1066.5,-394 1066.5,-371 996.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-348 833.5,-371 903.5,-371 903.5,-348 833.5,-348"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-348 903.5,-371 996.5,-371 996.5,-348 903.5,-348"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-348 996.5,-371 1066.5,-371 1066.5,-348 996.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-325 833.5,-348 903.5,-348 903.5,-325 833.5,-325"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-325 903.5,-348 996.5,-348 996.5,-325 903.5,-325"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-325 996.5,-348 1066.5,-348 1066.5,-325 996.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-302 833.5,-325 903.5,-325 903.5,-302 833.5,-302"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-302 903.5,-325 996.5,-325 996.5,-302 903.5,-302"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-302 996.5,-325 1066.5,-325 1066.5,-302 996.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-279 833.5,-302 903.5,-302 903.5,-279 833.5,-279"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-279 903.5,-302 996.5,-302 996.5,-279 903.5,-279"/>
|
||||||
|
<text text-anchor="start" x="945" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-279 996.5,-302 1066.5,-302 1066.5,-279 996.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-256 833.5,-279 903.5,-279 903.5,-256 833.5,-256"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-256 903.5,-279 996.5,-279 996.5,-256 903.5,-256"/>
|
||||||
|
<text text-anchor="start" x="945" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-256 996.5,-279 1066.5,-279 1066.5,-256 996.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1066.5,-23 1066.5,-256 833.5,-256 833.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="837.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="833.5,-23 833.5,0 1066.5,0 1066.5,-23"/>
|
||||||
|
<text text-anchor="start" x="892.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W2 -->
|
||||||
|
<g id="node6" class="node">
|
||||||
|
<title>W2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1522,-475 1210,-475 1210,-241 1522,-241 1522,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-452 1210,-475 1522,-475 1522,-452 1210,-452"/>
|
||||||
|
<text text-anchor="start" x="1355" y="-459.8" font-family="arial" font-size="14.00">W2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-429 1210,-452 1388,-452 1388,-429 1210,-429"/>
|
||||||
|
<text text-anchor="start" x="1214" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1388,-429 1388,-452 1411,-452 1411,-429 1388,-429"/>
|
||||||
|
<text text-anchor="start" x="1392" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1411,-429 1411,-452 1471,-452 1471,-429 1411,-429"/>
|
||||||
|
<text text-anchor="start" x="1415" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1471,-429 1471,-452 1522,-452 1522,-429 1471,-429"/>
|
||||||
|
<text text-anchor="start" x="1475" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="1261.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="1232" y="-396.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||||
|
<text text-anchor="start" x="1339.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="1437.5" y="-396.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-389 1210,-391 1522,-391 1522,-389 1210,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="1210,-387 1210,-389 1522,-389 1522,-387 1210,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-385 1210,-387 1522,-387 1522,-385 1210,-385"/>
|
||||||
|
<text text-anchor="start" x="1232" y="-371.8" font-family="arial" font-size="14.00">X1:2:GND</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1437.5" y="-371.8" font-family="arial" font-size="14.00">X2:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-364 1210,-366 1522,-366 1522,-364 1210,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-362 1210,-364 1522,-364 1522,-362 1210,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-360 1210,-362 1522,-362 1522,-360 1210,-360"/>
|
||||||
|
<text text-anchor="start" x="1233" y="-346.8" font-family="arial" font-size="14.00">X1:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1438.5" y="-346.8" font-family="arial" font-size="14.00">X2:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-339 1210,-341 1522,-341 1522,-339 1210,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-337 1210,-339 1522,-339 1522,-337 1210,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-335 1210,-337 1522,-337 1522,-335 1210,-335"/>
|
||||||
|
<text text-anchor="start" x="1233" y="-321.8" font-family="arial" font-size="14.00">X1:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1438.5" y="-321.8" font-family="arial" font-size="14.00">X2:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-314 1210,-316 1522,-316 1522,-314 1210,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-312 1210,-314 1522,-314 1522,-312 1210,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-310 1210,-312 1522,-312 1522,-310 1210,-310"/>
|
||||||
|
<text text-anchor="start" x="1243" y="-296.8" font-family="arial" font-size="14.00">X1:5:A</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1448.5" y="-296.8" font-family="arial" font-size="14.00">X2:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-289 1210,-291 1522,-291 1522,-289 1210,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-287 1210,-289 1522,-289 1522,-287 1210,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-285 1210,-287 1522,-287 1522,-285 1210,-285"/>
|
||||||
|
<text text-anchor="start" x="1243" y="-271.8" font-family="arial" font-size="14.00">X1:6:B</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1448.5" y="-271.8" font-family="arial" font-size="14.00">X2:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-264 1210,-266 1522,-266 1522,-264 1210,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-262 1210,-264 1522,-264 1522,-262 1210,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-260 1210,-262 1522,-262 1522,-260 1210,-260"/>
|
||||||
|
<text text-anchor="start" x="1261.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge13" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-381C1130.64,-381.09 1146.56,-386.09 1210,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066,-383C1130.04,-383 1145.96,-388 1210,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-385C1129.44,-384.91 1145.36,-389.91 1210,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge15" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-358C1130.38,-358.03 1146.36,-361.03 1210,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-360C1130.01,-360 1145.99,-363 1210,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-362C1129.64,-361.97 1145.62,-364.97 1210,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge17" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-335C1130.13,-335 1146.12,-336 1210,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-337C1130,-337 1146,-338 1210,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-339C1129.88,-339 1145.87,-340 1210,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge19" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-312C1129.88,-312 1145.87,-311 1210,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-314C1130,-314 1146,-313 1210,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-316C1130.13,-316 1146.12,-315 1210,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge21" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-289C1129.64,-289.03 1145.62,-286.03 1210,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-291C1130.01,-291 1145.99,-288 1210,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-293C1130.38,-292.97 1146.36,-289.97 1210,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X1--W2 -->
|
||||||
|
<g id="edge23" class="edge">
|
||||||
|
<title>X1:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-266C1129.44,-266.09 1145.36,-261.09 1210,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-268C1130.04,-268 1145.96,-263 1210,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-270C1130.64,-269.91 1146.56,-264.91 1210,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2 -->
|
||||||
|
<g id="node3" class="node">
|
||||||
|
<title>X2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1899,-440 1666,-440 1666,0 1899,0 1899,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-417 1666.5,-440 1899.5,-440 1899.5,-417 1666.5,-417"/>
|
||||||
|
<text text-anchor="start" x="1774.5" y="-424.8" font-family="arial" font-size="14.00">X2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-394 1666.5,-417 1736.5,-417 1736.5,-394 1666.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1689.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-394 1736.5,-417 1823.5,-417 1823.5,-394 1736.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1759" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1823.5,-394 1823.5,-417 1899.5,-417 1899.5,-394 1823.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1846" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-371 1666.5,-394 1736.5,-394 1736.5,-371 1666.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-371 1736.5,-394 1829.5,-394 1829.5,-371 1736.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-371 1829.5,-394 1899.5,-394 1899.5,-371 1829.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-348 1666.5,-371 1736.5,-371 1736.5,-348 1666.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-348 1736.5,-371 1829.5,-371 1829.5,-348 1736.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1767.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-348 1829.5,-371 1899.5,-371 1899.5,-348 1829.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-325 1666.5,-348 1736.5,-348 1736.5,-325 1666.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-325 1736.5,-348 1829.5,-348 1829.5,-325 1736.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-325 1829.5,-348 1899.5,-348 1899.5,-325 1829.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-302 1666.5,-325 1736.5,-325 1736.5,-302 1666.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-302 1736.5,-325 1829.5,-325 1829.5,-302 1736.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1768.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-302 1829.5,-325 1899.5,-325 1899.5,-302 1829.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-279 1666.5,-302 1736.5,-302 1736.5,-279 1666.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-279 1736.5,-302 1829.5,-302 1829.5,-279 1736.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-279 1829.5,-302 1899.5,-302 1899.5,-279 1829.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-256 1666.5,-279 1736.5,-279 1736.5,-256 1666.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1697.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-256 1736.5,-279 1829.5,-279 1829.5,-256 1736.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1778" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1829.5,-256 1829.5,-279 1899.5,-279 1899.5,-256 1829.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1860.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1899.5,-23 1899.5,-256 1666.5,-256 1666.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="1670.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="1666.5,-23 1666.5,0 1899.5,0 1899.5,-23"/>
|
||||||
|
<text text-anchor="start" x="1725.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W3 -->
|
||||||
|
<g id="node7" class="node">
|
||||||
|
<title>W3</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2355,-475 2043,-475 2043,-241 2355,-241 2355,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2043,-452 2043,-475 2355,-475 2355,-452 2043,-452"/>
|
||||||
|
<text text-anchor="start" x="2188" y="-459.8" font-family="arial" font-size="14.00">W3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2043,-429 2043,-452 2221,-452 2221,-429 2043,-429"/>
|
||||||
|
<text text-anchor="start" x="2047" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2221,-429 2221,-452 2244,-452 2244,-429 2221,-429"/>
|
||||||
|
<text text-anchor="start" x="2225" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2244,-429 2244,-452 2304,-452 2304,-429 2244,-429"/>
|
||||||
|
<text text-anchor="start" x="2248" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2304,-429 2304,-452 2355,-452 2355,-429 2304,-429"/>
|
||||||
|
<text text-anchor="start" x="2308" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="2094.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="2065" y="-396.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||||
|
<text text-anchor="start" x="2172.5" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="2270.5" y="-396.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-389 2043,-391 2355,-391 2355,-389 2043,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="2043,-387 2043,-389 2355,-389 2355,-387 2043,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-385 2043,-387 2355,-387 2355,-385 2043,-385"/>
|
||||||
|
<text text-anchor="start" x="2065" y="-371.8" font-family="arial" font-size="14.00">X2:2:GND</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2270.5" y="-371.8" font-family="arial" font-size="14.00">X3:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-364 2043,-366 2355,-366 2355,-364 2043,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-362 2043,-364 2355,-364 2355,-362 2043,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-360 2043,-362 2355,-362 2355,-360 2043,-360"/>
|
||||||
|
<text text-anchor="start" x="2066" y="-346.8" font-family="arial" font-size="14.00">X2:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2271.5" y="-346.8" font-family="arial" font-size="14.00">X3:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-339 2043,-341 2355,-341 2355,-339 2043,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-337 2043,-339 2355,-339 2355,-337 2043,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-335 2043,-337 2355,-337 2355,-335 2043,-335"/>
|
||||||
|
<text text-anchor="start" x="2066" y="-321.8" font-family="arial" font-size="14.00">X2:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2271.5" y="-321.8" font-family="arial" font-size="14.00">X3:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-314 2043,-316 2355,-316 2355,-314 2043,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-312 2043,-314 2355,-314 2355,-312 2043,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-310 2043,-312 2355,-312 2355,-310 2043,-310"/>
|
||||||
|
<text text-anchor="start" x="2076" y="-296.8" font-family="arial" font-size="14.00">X2:5:A</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2281.5" y="-296.8" font-family="arial" font-size="14.00">X3:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-289 2043,-291 2355,-291 2355,-289 2043,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-287 2043,-289 2355,-289 2355,-287 2043,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-285 2043,-287 2355,-287 2355,-285 2043,-285"/>
|
||||||
|
<text text-anchor="start" x="2076" y="-271.8" font-family="arial" font-size="14.00">X2:6:B</text>
|
||||||
|
<text text-anchor="start" x="2172" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="2281.5" y="-271.8" font-family="arial" font-size="14.00">X3:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-264 2043,-266 2355,-266 2355,-264 2043,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="2043,-262 2043,-264 2355,-264 2355,-262 2043,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="2043,-260 2043,-262 2355,-262 2355,-260 2043,-260"/>
|
||||||
|
<text text-anchor="start" x="2094.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge25" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-381C1963.64,-381.09 1979.56,-386.09 2043,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1899,-383C1963.04,-383 1978.96,-388 2043,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-385C1962.44,-384.91 1978.36,-389.91 2043,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge27" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-358C1963.38,-358.03 1979.36,-361.03 2043,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-360C1963.01,-360 1978.99,-363 2043,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-362C1962.64,-361.97 1978.62,-364.97 2043,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge29" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-335C1963.13,-335 1979.12,-336 2043,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-337C1963,-337 1979,-338 2043,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-339C1962.88,-339 1978.87,-340 2043,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge31" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-312C1962.88,-312 1978.87,-311 2043,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-314C1963,-314 1979,-313 2043,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-316C1963.13,-316 1979.12,-315 2043,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge33" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-289C1962.64,-289.03 1978.62,-286.03 2043,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-291C1963.01,-291 1978.99,-288 2043,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-293C1963.38,-292.97 1979.36,-289.97 2043,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X2--W3 -->
|
||||||
|
<g id="edge35" class="edge">
|
||||||
|
<title>X2:e--W3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-266C1962.44,-266.09 1978.36,-261.09 2043,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1899,-268C1963.04,-268 1978.96,-263 2043,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1899,-270C1963.64,-269.91 1979.56,-264.91 2043,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X3 -->
|
||||||
|
<g id="node4" class="node">
|
||||||
|
<title>X3</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="2732,-440 2499,-440 2499,0 2732,0 2732,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-417 2499.5,-440 2732.5,-440 2732.5,-417 2499.5,-417"/>
|
||||||
|
<text text-anchor="start" x="2607.5" y="-424.8" font-family="arial" font-size="14.00">X3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-394 2499.5,-417 2569.5,-417 2569.5,-394 2499.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2522.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2569.5,-394 2569.5,-417 2656.5,-417 2656.5,-394 2569.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2592" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2656.5,-394 2656.5,-417 2732.5,-417 2732.5,-394 2656.5,-394"/>
|
||||||
|
<text text-anchor="start" x="2679" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-371 2499.5,-394 2604.5,-394 2604.5,-371 2499.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-371 2604.5,-394 2732.5,-394 2732.5,-371 2604.5,-371"/>
|
||||||
|
<text text-anchor="start" x="2653" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-348 2499.5,-371 2604.5,-371 2604.5,-348 2499.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-348 2604.5,-371 2732.5,-371 2732.5,-348 2604.5,-348"/>
|
||||||
|
<text text-anchor="start" x="2653" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-325 2499.5,-348 2604.5,-348 2604.5,-325 2499.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-325 2604.5,-348 2732.5,-348 2732.5,-325 2604.5,-325"/>
|
||||||
|
<text text-anchor="start" x="2654" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-302 2499.5,-325 2604.5,-325 2604.5,-302 2499.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-302 2604.5,-325 2732.5,-325 2732.5,-302 2604.5,-302"/>
|
||||||
|
<text text-anchor="start" x="2654" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-279 2499.5,-302 2604.5,-302 2604.5,-279 2499.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-279 2604.5,-302 2732.5,-302 2732.5,-279 2604.5,-279"/>
|
||||||
|
<text text-anchor="start" x="2663.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2499.5,-256 2499.5,-279 2604.5,-279 2604.5,-256 2499.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2548" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="2604.5,-256 2604.5,-279 2732.5,-279 2732.5,-256 2604.5,-256"/>
|
||||||
|
<text text-anchor="start" x="2663.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polyline fill="none" stroke="black" points="2732.5,-23 2732.5,-256 2499.5,-256 2499.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="2503.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="2499.5,-23 2499.5,0 2732.5,0 2732.5,-23"/>
|
||||||
|
<text text-anchor="start" x="2558.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge2" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-386C752.44,-386.09 768.36,-381.09 833,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M689,-388C753.04,-388 768.96,-383 833,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-390C753.64,-389.91 769.56,-384.91 833,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge4" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-361C752.64,-361.03 768.62,-358.03 833,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-363C753.01,-363 768.99,-360 833,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-365C753.38,-364.97 769.36,-361.97 833,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge6" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-336C752.88,-336 768.87,-335 833,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-338C753,-338 769,-337 833,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-340C753.13,-340 769.12,-339 833,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge8" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-311C753.13,-311 769.12,-312 833,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-313C753,-313 769,-314 833,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-315C752.88,-315 768.87,-316 833,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge10" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-286C753.38,-286.03 769.36,-289.03 833,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-288C753.01,-288 768.99,-291 833,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-290C752.64,-289.97 768.62,-292.97 833,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X1 -->
|
||||||
|
<g id="edge12" class="edge">
|
||||||
|
<title>W1:e--X1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-261C753.64,-261.09 769.56,-266.09 833,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-263C753.04,-263 768.96,-268 833,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-265C752.44,-264.91 768.36,-269.91 833,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge14" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-386C1585.44,-386.09 1601.36,-381.09 1666,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1522,-388C1586.04,-388 1601.96,-383 1666,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-390C1586.64,-389.91 1602.56,-384.91 1666,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge16" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-361C1585.64,-361.03 1601.62,-358.03 1666,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-363C1586.01,-363 1601.99,-360 1666,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-365C1586.38,-364.97 1602.36,-361.97 1666,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge18" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-336C1585.88,-336 1601.87,-335 1666,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-338C1586,-338 1602,-337 1666,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-340C1586.13,-340 1602.12,-339 1666,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge20" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-311C1586.13,-311 1602.12,-312 1666,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-313C1586,-313 1602,-314 1666,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-315C1585.88,-315 1601.87,-316 1666,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge22" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-286C1586.38,-286.03 1602.36,-289.03 1666,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-288C1586.01,-288 1601.99,-291 1666,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-290C1585.64,-289.97 1601.62,-292.97 1666,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X2 -->
|
||||||
|
<g id="edge24" class="edge">
|
||||||
|
<title>W2:e--X2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-261C1586.64,-261.09 1602.56,-266.09 1666,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-263C1586.04,-263 1601.96,-268 1666,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-265C1585.44,-264.91 1601.36,-269.91 1666,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge26" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-386C2418.44,-386.09 2434.36,-381.09 2499,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M2355,-388C2419.04,-388 2434.96,-383 2499,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-390C2419.64,-389.91 2435.56,-384.91 2499,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge28" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-361C2418.64,-361.03 2434.62,-358.03 2499,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-363C2419.01,-363 2434.99,-360 2499,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-365C2419.38,-364.97 2435.36,-361.97 2499,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge30" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-336C2418.88,-336 2434.87,-335 2499,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-338C2419,-338 2435,-337 2499,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-340C2419.13,-340 2435.12,-339 2499,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge32" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-311C2419.13,-311 2435.12,-312 2499,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-313C2419,-313 2435,-314 2499,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-315C2418.88,-315 2434.87,-316 2499,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge34" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-286C2419.38,-286.03 2435.36,-289.03 2499,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-288C2419.01,-288 2434.99,-291 2499,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-290C2418.64,-289.97 2434.62,-292.97 2499,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W3--X3 -->
|
||||||
|
<g id="edge36" class="edge">
|
||||||
|
<title>W3:e--X3:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-261C2419.64,-261.09 2435.56,-266.09 2499,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M2355,-263C2419.04,-263 2434.96,-268 2499,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M2355,-265C2418.44,-264.91 2434.36,-269.91 2499,-270"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 47 KiB |
@@ -0,0 +1,61 @@
|
|||||||
|
templates:
|
||||||
|
- &template_con
|
||||||
|
type: IDC
|
||||||
|
subtype: female
|
||||||
|
pinlabels: [GND, GND, VDC, VDC, A, B]
|
||||||
|
image:
|
||||||
|
src: ../resources/idc.jpeg
|
||||||
|
caption: 2x3 IDC Connector
|
||||||
|
- &template_wire_jumper
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.03
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
- &template_wire_mobo
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.26
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
- &template_wire_front_back
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.475
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
|
||||||
|
connectors:
|
||||||
|
X0:
|
||||||
|
<<: *template_con
|
||||||
|
X1:
|
||||||
|
<<: *template_con
|
||||||
|
X2:
|
||||||
|
<<: *template_con
|
||||||
|
X3:
|
||||||
|
<<: *template_con
|
||||||
|
|
||||||
|
|
||||||
|
cables:
|
||||||
|
W1:
|
||||||
|
<<: *template_wire_mobo
|
||||||
|
W2:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
W3:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
|
||||||
|
connections:
|
||||||
|
-
|
||||||
|
- X0: [1-6]
|
||||||
|
- W1: [1-6]
|
||||||
|
- X1: [1-6]
|
||||||
|
-
|
||||||
|
- X1: [1-6]
|
||||||
|
- W2: [1-6]
|
||||||
|
- X2: [1-6]
|
||||||
|
-
|
||||||
|
- X2: [1-6]
|
||||||
|
- W3: [1-6]
|
||||||
|
- X3: [1-6]
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
Id Description Qty Unit Designators
|
||||||
|
1 Connector, IDC, female, 6 pins 3 X48, X49, X50
|
||||||
|
2 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, GY 0.3 m W1, W2
|
||||||
|
3 Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, RD 0.06 m W1, W2
|
||||||
|
@@ -0,0 +1,449 @@
|
|||||||
|
graph {
|
||||||
|
// Graph generated by WireViz 0.3.2
|
||||||
|
// https://github.com/formatc1702/WireViz
|
||||||
|
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||||
|
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||||
|
edge [fontname=arial style=bold]
|
||||||
|
X48 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X48</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p1r">1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p2r">2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p3r">3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p4r">4</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>A</td>
|
||||||
|
<td port="p5r">5</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B</td>
|
||||||
|
<td port="p6r">6</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
X49 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X49</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td port="p1l">1</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p1r">1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p2l">2</td>
|
||||||
|
<td>GND</td>
|
||||||
|
<td port="p2r">2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p3l">3</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p3r">3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p4l">4</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
<td port="p4r">4</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p5l">5</td>
|
||||||
|
<td>A</td>
|
||||||
|
<td port="p5r">5</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p6l">6</td>
|
||||||
|
<td>B</td>
|
||||||
|
<td port="p6r">6</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
X50 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">X50</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">IDC</td>
|
||||||
|
<td balign="left">female</td>
|
||||||
|
<td balign="left">6-pin</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||||
|
<tr>
|
||||||
|
<td port="p1l">1</td>
|
||||||
|
<td>GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p2l">2</td>
|
||||||
|
<td>GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p3l">3</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p4l">4</td>
|
||||||
|
<td>VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p5l">5</td>
|
||||||
|
<td>A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td port="p6l">6</td>
|
||||||
|
<td>B</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="TLR"><img scale="false" src="../resources/idc.jpeg"/></td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left" sides="BLR">2x3 IDC Connector</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||||
|
edge [color="#000000:#ff0000:#000000"]
|
||||||
|
X48:p1r:e -- W1:w1:w
|
||||||
|
W1:w1:e -- X49:p1l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X48:p2r:e -- W1:w2:w
|
||||||
|
W1:w2:e -- X49:p2l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X48:p3r:e -- W1:w3:w
|
||||||
|
W1:w3:e -- X49:p3l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X48:p4r:e -- W1:w4:w
|
||||||
|
W1:w4:e -- X49:p4l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X48:p5r:e -- W1:w5:w
|
||||||
|
W1:w5:e -- X49:p5l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X48:p6r:e -- W1:w6:w
|
||||||
|
W1:w6:e -- X49:p6l:w
|
||||||
|
W1 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">W1</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">1.27mm Pitch Ribbon Cable</td>
|
||||||
|
<td balign="left">6x</td>
|
||||||
|
<td balign="left">26 AWG</td>
|
||||||
|
<td balign="left">0.03 m</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellborder="0">
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:1:GND</td>
|
||||||
|
<td>
|
||||||
|
RD
|
||||||
|
</td>
|
||||||
|
<td>X49:1:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:2:GND</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X49:2:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:3:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X49:3:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:4:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X49:4:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:5:A</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X49:5:A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X48:6:B</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X49:6:B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||||
|
edge [color="#000000:#ff0000:#000000"]
|
||||||
|
X49:p1r:e -- W2:w1:w
|
||||||
|
W2:w1:e -- X50:p1l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X49:p2r:e -- W2:w2:w
|
||||||
|
W2:w2:e -- X50:p2l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X49:p3r:e -- W2:w3:w
|
||||||
|
W2:w3:e -- X50:p3l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X49:p4r:e -- W2:w4:w
|
||||||
|
W2:w4:e -- X50:p4l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X49:p5r:e -- W2:w5:w
|
||||||
|
W2:w5:e -- X50:p5l:w
|
||||||
|
edge [color="#000000:#999999:#000000"]
|
||||||
|
X49:p6r:e -- W2:w6:w
|
||||||
|
W2:w6:e -- X50:p6l:w
|
||||||
|
W2 [label=<
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">W2</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||||
|
<td balign="left">1.27mm Pitch Ribbon Cable</td>
|
||||||
|
<td balign="left">6x</td>
|
||||||
|
<td balign="left">26 AWG</td>
|
||||||
|
<td balign="left">0.03 m</td>
|
||||||
|
</tr></table>
|
||||||
|
</td></tr>
|
||||||
|
<tr><td>
|
||||||
|
<table border="0" cellspacing="0" cellborder="0">
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:1:GND</td>
|
||||||
|
<td>
|
||||||
|
RD
|
||||||
|
</td>
|
||||||
|
<td>X50:1:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:2:GND</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X50:2:GND</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:3:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X50:3:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:4:VDC</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X50:4:VDC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:5:A</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X50:5:A</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>X49:6:B</td>
|
||||||
|
<td>
|
||||||
|
GY
|
||||||
|
</td>
|
||||||
|
<td>X50:6:B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||||
|
<table cellspacing="0" cellborder="0" border="0">
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#999999" border="0"></td></tr>
|
||||||
|
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td> </td></tr>
|
||||||
|
</table>
|
||||||
|
</td></tr>
|
||||||
|
</table>
|
||||||
|
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,459 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en"><head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="generator" content="WireViz 0.3.2 - https://github.com/formatc1702/WireViz">
|
||||||
|
<title>feeder-floor-harness-tail</title>
|
||||||
|
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||||
|
<h1>feeder-floor-harness-tail</h1>
|
||||||
|
<h2>Diagram</h2>
|
||||||
|
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||||
|
<!-- Generated by graphviz version 6.0.1 (20220911.1526)
|
||||||
|
-->
|
||||||
|
<!-- Pages: 1 -->
|
||||||
|
<svg width="1907pt" height="483pt"
|
||||||
|
viewBox="0.00 0.00 1907.00 483.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 479)">
|
||||||
|
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-479 1903,-479 1903,4 -4,4"/>
|
||||||
|
<!-- X48 -->
|
||||||
|
<g id="node1" class="node">
|
||||||
|
<title>X48</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="233,-440 0,-440 0,0 233,0 233,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-417 0.5,-440 233.5,-440 233.5,-417 0.5,-417"/>
|
||||||
|
<text text-anchor="start" x="104.5" y="-424.8" font-family="arial" font-size="14.00">X48</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-394 0.5,-417 70.5,-417 70.5,-394 0.5,-394"/>
|
||||||
|
<text text-anchor="start" x="23.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="70.5,-394 70.5,-417 157.5,-417 157.5,-394 70.5,-394"/>
|
||||||
|
<text text-anchor="start" x="93" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="157.5,-394 157.5,-417 233.5,-417 233.5,-394 157.5,-394"/>
|
||||||
|
<text text-anchor="start" x="180" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-371 0.5,-394 128.5,-394 128.5,-371 0.5,-371"/>
|
||||||
|
<text text-anchor="start" x="49" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-371 128.5,-394 233.5,-394 233.5,-371 128.5,-371"/>
|
||||||
|
<text text-anchor="start" x="177" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-348 0.5,-371 128.5,-371 128.5,-348 0.5,-348"/>
|
||||||
|
<text text-anchor="start" x="49" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-348 128.5,-371 233.5,-371 233.5,-348 128.5,-348"/>
|
||||||
|
<text text-anchor="start" x="177" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-325 0.5,-348 128.5,-348 128.5,-325 0.5,-325"/>
|
||||||
|
<text text-anchor="start" x="50" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-325 128.5,-348 233.5,-348 233.5,-325 128.5,-325"/>
|
||||||
|
<text text-anchor="start" x="177" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-302 0.5,-325 128.5,-325 128.5,-302 0.5,-302"/>
|
||||||
|
<text text-anchor="start" x="50" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-302 128.5,-325 233.5,-325 233.5,-302 128.5,-302"/>
|
||||||
|
<text text-anchor="start" x="177" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-279 0.5,-302 128.5,-302 128.5,-279 0.5,-279"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-279 128.5,-302 233.5,-302 233.5,-279 128.5,-279"/>
|
||||||
|
<text text-anchor="start" x="177" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-256 0.5,-279 128.5,-279 128.5,-256 0.5,-256"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-256 128.5,-279 233.5,-279 233.5,-256 128.5,-256"/>
|
||||||
|
<text text-anchor="start" x="177" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="233.5,-23 233.5,-256 0.5,-256 0.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="0.5,-23 0.5,0 233.5,0 233.5,-23"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1 -->
|
||||||
|
<g id="node4" class="node">
|
||||||
|
<title>W1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="689,-475 377,-475 377,-241 689,-241 689,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-452 377,-475 689,-475 689,-452 377,-452"/>
|
||||||
|
<text text-anchor="start" x="522" y="-459.8" font-family="arial" font-size="14.00">W1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-429 377,-452 555,-452 555,-429 377,-429"/>
|
||||||
|
<text text-anchor="start" x="381" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="555,-429 555,-452 578,-452 578,-429 555,-429"/>
|
||||||
|
<text text-anchor="start" x="559" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="578,-429 578,-452 638,-452 638,-429 578,-429"/>
|
||||||
|
<text text-anchor="start" x="582" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="638,-429 638,-452 689,-452 689,-429 638,-429"/>
|
||||||
|
<text text-anchor="start" x="642" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="429.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="396.5" y="-396.8" font-family="arial" font-size="14.00">X48:1:GND</text>
|
||||||
|
<text text-anchor="start" x="506" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-396.8" font-family="arial" font-size="14.00">X49:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-389 377,-391 689,-391 689,-389 377,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="377,-387 377,-389 689,-389 689,-387 377,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-385 377,-387 689,-387 689,-385 377,-385"/>
|
||||||
|
<text text-anchor="start" x="396.5" y="-371.8" font-family="arial" font-size="14.00">X48:2:GND</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-371.8" font-family="arial" font-size="14.00">X49:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-364 377,-366 689,-366 689,-364 377,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-362 377,-364 689,-364 689,-362 377,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-360 377,-362 689,-362 689,-360 377,-360"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-346.8" font-family="arial" font-size="14.00">X48:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-346.8" font-family="arial" font-size="14.00">X49:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-339 377,-341 689,-341 689,-339 377,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-337 377,-339 689,-339 689,-337 377,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-335 377,-337 689,-337 689,-335 377,-335"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-321.8" font-family="arial" font-size="14.00">X48:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-321.8" font-family="arial" font-size="14.00">X49:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-314 377,-316 689,-316 689,-314 377,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-312 377,-314 689,-314 689,-312 377,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-310 377,-312 689,-312 689,-310 377,-310"/>
|
||||||
|
<text text-anchor="start" x="407" y="-296.8" font-family="arial" font-size="14.00">X48:5:A</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-296.8" font-family="arial" font-size="14.00">X49:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-289 377,-291 689,-291 689,-289 377,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-287 377,-289 689,-289 689,-287 377,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-285 377,-287 689,-287 689,-285 377,-285"/>
|
||||||
|
<text text-anchor="start" x="407" y="-271.8" font-family="arial" font-size="14.00">X48:6:B</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-271.8" font-family="arial" font-size="14.00">X49:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-264 377,-266 689,-266 689,-264 377,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-262 377,-264 689,-264 689,-262 377,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-260 377,-262 689,-262 689,-260 377,-260"/>
|
||||||
|
<text text-anchor="start" x="429.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge1" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-381C297.64,-381.09 313.56,-386.09 377,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M233,-383C297.04,-383 312.96,-388 377,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-385C296.44,-384.91 312.36,-389.91 377,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge3" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-358C297.38,-358.03 313.36,-361.03 377,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-360C297.01,-360 312.99,-363 377,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-362C296.64,-361.97 312.62,-364.97 377,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge5" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-335C297.13,-335 313.12,-336 377,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-337C297,-337 313,-338 377,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-339C296.88,-339 312.87,-340 377,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge7" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-312C296.88,-312 312.87,-311 377,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-314C297,-314 313,-313 377,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-316C297.13,-316 313.12,-315 377,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge9" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-289C296.64,-289.03 312.62,-286.03 377,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-291C297.01,-291 312.99,-288 377,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-293C297.38,-292.97 313.36,-289.97 377,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge11" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-266C296.44,-266.09 312.36,-261.09 377,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-268C297.04,-268 312.96,-263 377,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-270C297.64,-269.91 313.56,-264.91 377,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49 -->
|
||||||
|
<g id="node2" class="node">
|
||||||
|
<title>X49</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1066,-440 833,-440 833,0 1066,0 1066,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-417 833.5,-440 1066.5,-440 1066.5,-417 833.5,-417"/>
|
||||||
|
<text text-anchor="start" x="937.5" y="-424.8" font-family="arial" font-size="14.00">X49</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-394 833.5,-417 903.5,-417 903.5,-394 833.5,-394"/>
|
||||||
|
<text text-anchor="start" x="856.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-394 903.5,-417 990.5,-417 990.5,-394 903.5,-394"/>
|
||||||
|
<text text-anchor="start" x="926" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="990.5,-394 990.5,-417 1066.5,-417 1066.5,-394 990.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1013" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-371 833.5,-394 903.5,-394 903.5,-371 833.5,-371"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-371 903.5,-394 996.5,-394 996.5,-371 903.5,-371"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-371 996.5,-394 1066.5,-394 1066.5,-371 996.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-348 833.5,-371 903.5,-371 903.5,-348 833.5,-348"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-348 903.5,-371 996.5,-371 996.5,-348 903.5,-348"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-348 996.5,-371 1066.5,-371 1066.5,-348 996.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-325 833.5,-348 903.5,-348 903.5,-325 833.5,-325"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-325 903.5,-348 996.5,-348 996.5,-325 903.5,-325"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-325 996.5,-348 1066.5,-348 1066.5,-325 996.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-302 833.5,-325 903.5,-325 903.5,-302 833.5,-302"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-302 903.5,-325 996.5,-325 996.5,-302 903.5,-302"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-302 996.5,-325 1066.5,-325 1066.5,-302 996.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-279 833.5,-302 903.5,-302 903.5,-279 833.5,-279"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-279 903.5,-302 996.5,-302 996.5,-279 903.5,-279"/>
|
||||||
|
<text text-anchor="start" x="945" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-279 996.5,-302 1066.5,-302 1066.5,-279 996.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-256 833.5,-279 903.5,-279 903.5,-256 833.5,-256"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-256 903.5,-279 996.5,-279 996.5,-256 903.5,-256"/>
|
||||||
|
<text text-anchor="start" x="945" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-256 996.5,-279 1066.5,-279 1066.5,-256 996.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1066.5,-23 1066.5,-256 833.5,-256 833.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="837.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="833.5,-23 833.5,0 1066.5,0 1066.5,-23"/>
|
||||||
|
<text text-anchor="start" x="892.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W2 -->
|
||||||
|
<g id="node5" class="node">
|
||||||
|
<title>W2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1522,-475 1210,-475 1210,-241 1522,-241 1522,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-452 1210,-475 1522,-475 1522,-452 1210,-452"/>
|
||||||
|
<text text-anchor="start" x="1355" y="-459.8" font-family="arial" font-size="14.00">W2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-429 1210,-452 1388,-452 1388,-429 1210,-429"/>
|
||||||
|
<text text-anchor="start" x="1214" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1388,-429 1388,-452 1411,-452 1411,-429 1388,-429"/>
|
||||||
|
<text text-anchor="start" x="1392" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1411,-429 1411,-452 1471,-452 1471,-429 1411,-429"/>
|
||||||
|
<text text-anchor="start" x="1415" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1471,-429 1471,-452 1522,-452 1522,-429 1471,-429"/>
|
||||||
|
<text text-anchor="start" x="1475" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-396.8" font-family="arial" font-size="14.00">X49:1:GND</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-396.8" font-family="arial" font-size="14.00">X50:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-389 1210,-391 1522,-391 1522,-389 1210,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="1210,-387 1210,-389 1522,-389 1522,-387 1210,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-385 1210,-387 1522,-387 1522,-385 1210,-385"/>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-371.8" font-family="arial" font-size="14.00">X49:2:GND</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-371.8" font-family="arial" font-size="14.00">X50:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-364 1210,-366 1522,-366 1522,-364 1210,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-362 1210,-364 1522,-364 1522,-362 1210,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-360 1210,-362 1522,-362 1522,-360 1210,-360"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-346.8" font-family="arial" font-size="14.00">X49:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-346.8" font-family="arial" font-size="14.00">X50:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-339 1210,-341 1522,-341 1522,-339 1210,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-337 1210,-339 1522,-339 1522,-337 1210,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-335 1210,-337 1522,-337 1522,-335 1210,-335"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-321.8" font-family="arial" font-size="14.00">X49:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-321.8" font-family="arial" font-size="14.00">X50:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-314 1210,-316 1522,-316 1522,-314 1210,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-312 1210,-314 1522,-314 1522,-312 1210,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-310 1210,-312 1522,-312 1522,-310 1210,-310"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-296.8" font-family="arial" font-size="14.00">X49:5:A</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-296.8" font-family="arial" font-size="14.00">X50:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-289 1210,-291 1522,-291 1522,-289 1210,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-287 1210,-289 1522,-289 1522,-287 1210,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-285 1210,-287 1522,-287 1522,-285 1210,-285"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-271.8" font-family="arial" font-size="14.00">X49:6:B</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-271.8" font-family="arial" font-size="14.00">X50:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-264 1210,-266 1522,-266 1522,-264 1210,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-262 1210,-264 1522,-264 1522,-262 1210,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-260 1210,-262 1522,-262 1522,-260 1210,-260"/>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge13" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-381C1130.64,-381.09 1146.56,-386.09 1210,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066,-383C1130.04,-383 1145.96,-388 1210,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-385C1129.44,-384.91 1145.36,-389.91 1210,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge15" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-358C1130.38,-358.03 1146.36,-361.03 1210,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-360C1130.01,-360 1145.99,-363 1210,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-362C1129.64,-361.97 1145.62,-364.97 1210,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge17" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-335C1130.13,-335 1146.12,-336 1210,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-337C1130,-337 1146,-338 1210,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-339C1129.88,-339 1145.87,-340 1210,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge19" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-312C1129.88,-312 1145.87,-311 1210,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-314C1130,-314 1146,-313 1210,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-316C1130.13,-316 1146.12,-315 1210,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge21" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-289C1129.64,-289.03 1145.62,-286.03 1210,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-291C1130.01,-291 1145.99,-288 1210,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-293C1130.38,-292.97 1146.36,-289.97 1210,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge23" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-266C1129.44,-266.09 1145.36,-261.09 1210,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-268C1130.04,-268 1145.96,-263 1210,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-270C1130.64,-269.91 1146.56,-264.91 1210,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X50 -->
|
||||||
|
<g id="node3" class="node">
|
||||||
|
<title>X50</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1899,-440 1666,-440 1666,0 1899,0 1899,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-417 1666.5,-440 1899.5,-440 1899.5,-417 1666.5,-417"/>
|
||||||
|
<text text-anchor="start" x="1770.5" y="-424.8" font-family="arial" font-size="14.00">X50</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-394 1666.5,-417 1736.5,-417 1736.5,-394 1666.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1689.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-394 1736.5,-417 1823.5,-417 1823.5,-394 1736.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1759" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1823.5,-394 1823.5,-417 1899.5,-417 1899.5,-394 1823.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1846" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-371 1666.5,-394 1771.5,-394 1771.5,-371 1666.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-371 1771.5,-394 1899.5,-394 1899.5,-371 1771.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1820" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-348 1666.5,-371 1771.5,-371 1771.5,-348 1666.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-348 1771.5,-371 1899.5,-371 1899.5,-348 1771.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1820" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-325 1666.5,-348 1771.5,-348 1771.5,-325 1666.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-325 1771.5,-348 1899.5,-348 1899.5,-325 1771.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1821" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-302 1666.5,-325 1771.5,-325 1771.5,-302 1666.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-302 1771.5,-325 1899.5,-325 1899.5,-302 1771.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1821" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-279 1666.5,-302 1771.5,-302 1771.5,-279 1666.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-279 1771.5,-302 1899.5,-302 1899.5,-279 1771.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1830.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-256 1666.5,-279 1771.5,-279 1771.5,-256 1666.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-256 1771.5,-279 1899.5,-279 1899.5,-256 1771.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1830.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1899.5,-23 1899.5,-256 1666.5,-256 1666.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="1670.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="1666.5,-23 1666.5,0 1899.5,0 1899.5,-23"/>
|
||||||
|
<text text-anchor="start" x="1725.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge2" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-386C752.44,-386.09 768.36,-381.09 833,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M689,-388C753.04,-388 768.96,-383 833,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-390C753.64,-389.91 769.56,-384.91 833,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge4" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-361C752.64,-361.03 768.62,-358.03 833,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-363C753.01,-363 768.99,-360 833,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-365C753.38,-364.97 769.36,-361.97 833,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge6" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-336C752.88,-336 768.87,-335 833,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-338C753,-338 769,-337 833,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-340C753.13,-340 769.12,-339 833,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge8" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-311C753.13,-311 769.12,-312 833,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-313C753,-313 769,-314 833,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-315C752.88,-315 768.87,-316 833,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge10" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-286C753.38,-286.03 769.36,-289.03 833,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-288C753.01,-288 768.99,-291 833,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-290C752.64,-289.97 768.62,-292.97 833,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge12" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-261C753.64,-261.09 769.56,-266.09 833,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-263C753.04,-263 768.96,-268 833,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-265C752.44,-264.91 768.36,-269.91 833,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge14" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-386C1585.44,-386.09 1601.36,-381.09 1666,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1522,-388C1586.04,-388 1601.96,-383 1666,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-390C1586.64,-389.91 1602.56,-384.91 1666,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge16" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-361C1585.64,-361.03 1601.62,-358.03 1666,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-363C1586.01,-363 1601.99,-360 1666,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-365C1586.38,-364.97 1602.36,-361.97 1666,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge18" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-336C1585.88,-336 1601.87,-335 1666,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-338C1586,-338 1602,-337 1666,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-340C1586.13,-340 1602.12,-339 1666,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge20" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-311C1586.13,-311 1602.12,-312 1666,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-313C1586,-313 1602,-314 1666,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-315C1585.88,-315 1601.87,-316 1666,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge22" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-286C1586.38,-286.03 1602.36,-289.03 1666,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-288C1586.01,-288 1601.99,-291 1666,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-290C1585.64,-289.97 1601.62,-292.97 1666,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge24" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-261C1586.64,-261.09 1602.56,-266.09 1666,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-263C1586.04,-263 1601.96,-268 1666,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-265C1585.44,-264.91 1601.36,-269.91 1666,-270"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
<h2>Bill of Materials</h2>
|
||||||
|
<table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px">
|
||||||
|
<tr>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Id</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Description</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Qty</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Unit</th>
|
||||||
|
<th style="text-align:left; border:1px solid #000000; padding: 8px">Designators</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">1</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Connector, IDC, female, 6 pins</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">3</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px"></td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">X48, X49, X50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">2</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, GY</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.3</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">m</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">W1, W2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">3</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">Wire, 1.27mm Pitch Ribbon Cable, 26 AWG, RD</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.06</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">m</td>
|
||||||
|
<td style="border:1px solid #000000; padding: 4px">W1, W2</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body></html>
|
||||||
@@ -0,0 +1,421 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||||
|
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<!-- Generated by graphviz version 6.0.1 (20220911.1526)
|
||||||
|
-->
|
||||||
|
<!-- Pages: 1 -->
|
||||||
|
<svg width="1907pt" height="483pt"
|
||||||
|
viewBox="0.00 0.00 1907.00 483.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
|
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 479)">
|
||||||
|
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-479 1903,-479 1903,4 -4,4"/>
|
||||||
|
<!-- X48 -->
|
||||||
|
<g id="node1" class="node">
|
||||||
|
<title>X48</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="233,-440 0,-440 0,0 233,0 233,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-417 0.5,-440 233.5,-440 233.5,-417 0.5,-417"/>
|
||||||
|
<text text-anchor="start" x="104.5" y="-424.8" font-family="arial" font-size="14.00">X48</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-394 0.5,-417 70.5,-417 70.5,-394 0.5,-394"/>
|
||||||
|
<text text-anchor="start" x="23.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="70.5,-394 70.5,-417 157.5,-417 157.5,-394 70.5,-394"/>
|
||||||
|
<text text-anchor="start" x="93" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="157.5,-394 157.5,-417 233.5,-417 233.5,-394 157.5,-394"/>
|
||||||
|
<text text-anchor="start" x="180" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-371 0.5,-394 128.5,-394 128.5,-371 0.5,-371"/>
|
||||||
|
<text text-anchor="start" x="49" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-371 128.5,-394 233.5,-394 233.5,-371 128.5,-371"/>
|
||||||
|
<text text-anchor="start" x="177" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-348 0.5,-371 128.5,-371 128.5,-348 0.5,-348"/>
|
||||||
|
<text text-anchor="start" x="49" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-348 128.5,-371 233.5,-371 233.5,-348 128.5,-348"/>
|
||||||
|
<text text-anchor="start" x="177" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-325 0.5,-348 128.5,-348 128.5,-325 0.5,-325"/>
|
||||||
|
<text text-anchor="start" x="50" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-325 128.5,-348 233.5,-348 233.5,-325 128.5,-325"/>
|
||||||
|
<text text-anchor="start" x="177" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-302 0.5,-325 128.5,-325 128.5,-302 0.5,-302"/>
|
||||||
|
<text text-anchor="start" x="50" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-302 128.5,-325 233.5,-325 233.5,-302 128.5,-302"/>
|
||||||
|
<text text-anchor="start" x="177" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-279 0.5,-302 128.5,-302 128.5,-279 0.5,-279"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-279 128.5,-302 233.5,-302 233.5,-279 128.5,-279"/>
|
||||||
|
<text text-anchor="start" x="177" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="0.5,-256 0.5,-279 128.5,-279 128.5,-256 0.5,-256"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="128.5,-256 128.5,-279 233.5,-279 233.5,-256 128.5,-256"/>
|
||||||
|
<text text-anchor="start" x="177" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="233.5,-23 233.5,-256 0.5,-256 0.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="4.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="0.5,-23 0.5,0 233.5,0 233.5,-23"/>
|
||||||
|
<text text-anchor="start" x="59.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1 -->
|
||||||
|
<g id="node4" class="node">
|
||||||
|
<title>W1</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="689,-475 377,-475 377,-241 689,-241 689,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-452 377,-475 689,-475 689,-452 377,-452"/>
|
||||||
|
<text text-anchor="start" x="522" y="-459.8" font-family="arial" font-size="14.00">W1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="377,-429 377,-452 555,-452 555,-429 377,-429"/>
|
||||||
|
<text text-anchor="start" x="381" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="555,-429 555,-452 578,-452 578,-429 555,-429"/>
|
||||||
|
<text text-anchor="start" x="559" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="578,-429 578,-452 638,-452 638,-429 578,-429"/>
|
||||||
|
<text text-anchor="start" x="582" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="638,-429 638,-452 689,-452 689,-429 638,-429"/>
|
||||||
|
<text text-anchor="start" x="642" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="429.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="396.5" y="-396.8" font-family="arial" font-size="14.00">X48:1:GND</text>
|
||||||
|
<text text-anchor="start" x="506" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-396.8" font-family="arial" font-size="14.00">X49:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-389 377,-391 689,-391 689,-389 377,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="377,-387 377,-389 689,-389 689,-387 377,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-385 377,-387 689,-387 689,-385 377,-385"/>
|
||||||
|
<text text-anchor="start" x="396.5" y="-371.8" font-family="arial" font-size="14.00">X48:2:GND</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="599.5" y="-371.8" font-family="arial" font-size="14.00">X49:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-364 377,-366 689,-366 689,-364 377,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-362 377,-364 689,-364 689,-362 377,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-360 377,-362 689,-362 689,-360 377,-360"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-346.8" font-family="arial" font-size="14.00">X48:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-346.8" font-family="arial" font-size="14.00">X49:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-339 377,-341 689,-341 689,-339 377,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-337 377,-339 689,-339 689,-337 377,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-335 377,-337 689,-337 689,-335 377,-335"/>
|
||||||
|
<text text-anchor="start" x="397.5" y="-321.8" font-family="arial" font-size="14.00">X48:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="600.5" y="-321.8" font-family="arial" font-size="14.00">X49:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-314 377,-316 689,-316 689,-314 377,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-312 377,-314 689,-314 689,-312 377,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-310 377,-312 689,-312 689,-310 377,-310"/>
|
||||||
|
<text text-anchor="start" x="407" y="-296.8" font-family="arial" font-size="14.00">X48:5:A</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-296.8" font-family="arial" font-size="14.00">X49:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-289 377,-291 689,-291 689,-289 377,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-287 377,-289 689,-289 689,-287 377,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-285 377,-287 689,-287 689,-285 377,-285"/>
|
||||||
|
<text text-anchor="start" x="407" y="-271.8" font-family="arial" font-size="14.00">X48:6:B</text>
|
||||||
|
<text text-anchor="start" x="505.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="610" y="-271.8" font-family="arial" font-size="14.00">X49:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-264 377,-266 689,-266 689,-264 377,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="377,-262 377,-264 689,-264 689,-262 377,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="377,-260 377,-262 689,-262 689,-260 377,-260"/>
|
||||||
|
<text text-anchor="start" x="429.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge1" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-381C297.64,-381.09 313.56,-386.09 377,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M233,-383C297.04,-383 312.96,-388 377,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-385C296.44,-384.91 312.36,-389.91 377,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge3" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-358C297.38,-358.03 313.36,-361.03 377,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-360C297.01,-360 312.99,-363 377,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-362C296.64,-361.97 312.62,-364.97 377,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge5" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-335C297.13,-335 313.12,-336 377,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-337C297,-337 313,-338 377,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-339C296.88,-339 312.87,-340 377,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge7" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-312C296.88,-312 312.87,-311 377,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-314C297,-314 313,-313 377,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-316C297.13,-316 313.12,-315 377,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge9" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-289C296.64,-289.03 312.62,-286.03 377,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-291C297.01,-291 312.99,-288 377,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-293C297.38,-292.97 313.36,-289.97 377,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X48--W1 -->
|
||||||
|
<g id="edge11" class="edge">
|
||||||
|
<title>X48:e--W1:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-266C296.44,-266.09 312.36,-261.09 377,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M233,-268C297.04,-268 312.96,-263 377,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M233,-270C297.64,-269.91 313.56,-264.91 377,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49 -->
|
||||||
|
<g id="node2" class="node">
|
||||||
|
<title>X49</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1066,-440 833,-440 833,0 1066,0 1066,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-417 833.5,-440 1066.5,-440 1066.5,-417 833.5,-417"/>
|
||||||
|
<text text-anchor="start" x="937.5" y="-424.8" font-family="arial" font-size="14.00">X49</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-394 833.5,-417 903.5,-417 903.5,-394 833.5,-394"/>
|
||||||
|
<text text-anchor="start" x="856.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-394 903.5,-417 990.5,-417 990.5,-394 903.5,-394"/>
|
||||||
|
<text text-anchor="start" x="926" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="990.5,-394 990.5,-417 1066.5,-417 1066.5,-394 990.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1013" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-371 833.5,-394 903.5,-394 903.5,-371 833.5,-371"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-371 903.5,-394 996.5,-394 996.5,-371 903.5,-371"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-371 996.5,-394 1066.5,-394 1066.5,-371 996.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-348 833.5,-371 903.5,-371 903.5,-348 833.5,-348"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-348 903.5,-371 996.5,-371 996.5,-348 903.5,-348"/>
|
||||||
|
<text text-anchor="start" x="934.5" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-348 996.5,-371 1066.5,-371 1066.5,-348 996.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-325 833.5,-348 903.5,-348 903.5,-325 833.5,-325"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-325 903.5,-348 996.5,-348 996.5,-325 903.5,-325"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-325 996.5,-348 1066.5,-348 1066.5,-325 996.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-302 833.5,-325 903.5,-325 903.5,-302 833.5,-302"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-302 903.5,-325 996.5,-325 996.5,-302 903.5,-302"/>
|
||||||
|
<text text-anchor="start" x="935.5" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-302 996.5,-325 1066.5,-325 1066.5,-302 996.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-279 833.5,-302 903.5,-302 903.5,-279 833.5,-279"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-279 903.5,-302 996.5,-302 996.5,-279 903.5,-279"/>
|
||||||
|
<text text-anchor="start" x="945" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-279 996.5,-302 1066.5,-302 1066.5,-279 996.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="833.5,-256 833.5,-279 903.5,-279 903.5,-256 833.5,-256"/>
|
||||||
|
<text text-anchor="start" x="864.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="903.5,-256 903.5,-279 996.5,-279 996.5,-256 903.5,-256"/>
|
||||||
|
<text text-anchor="start" x="945" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polygon fill="none" stroke="black" points="996.5,-256 996.5,-279 1066.5,-279 1066.5,-256 996.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1027.5" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1066.5,-23 1066.5,-256 833.5,-256 833.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="837.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="833.5,-23 833.5,0 1066.5,0 1066.5,-23"/>
|
||||||
|
<text text-anchor="start" x="892.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W2 -->
|
||||||
|
<g id="node5" class="node">
|
||||||
|
<title>W2</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1522,-475 1210,-475 1210,-241 1522,-241 1522,-475"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-452 1210,-475 1522,-475 1522,-452 1210,-452"/>
|
||||||
|
<text text-anchor="start" x="1355" y="-459.8" font-family="arial" font-size="14.00">W2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1210,-429 1210,-452 1388,-452 1388,-429 1210,-429"/>
|
||||||
|
<text text-anchor="start" x="1214" y="-436.8" font-family="arial" font-size="14.00">1.27mm Pitch Ribbon Cable</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1388,-429 1388,-452 1411,-452 1411,-429 1388,-429"/>
|
||||||
|
<text text-anchor="start" x="1392" y="-436.8" font-family="arial" font-size="14.00">6x</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1411,-429 1411,-452 1471,-452 1471,-429 1411,-429"/>
|
||||||
|
<text text-anchor="start" x="1415" y="-436.8" font-family="arial" font-size="14.00">26 AWG</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1471,-429 1471,-452 1522,-452 1522,-429 1471,-429"/>
|
||||||
|
<text text-anchor="start" x="1475" y="-436.8" font-family="arial" font-size="14.00">0.03 m</text>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-415.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-396.8" font-family="arial" font-size="14.00">X49:1:GND</text>
|
||||||
|
<text text-anchor="start" x="1339" y="-396.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-396.8" font-family="arial" font-size="14.00">X50:1:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-389 1210,-391 1522,-391 1522,-389 1210,-389"/>
|
||||||
|
<polygon fill="#ff0000" stroke="none" points="1210,-387 1210,-389 1522,-389 1522,-387 1210,-387"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-385 1210,-387 1522,-387 1522,-385 1210,-385"/>
|
||||||
|
<text text-anchor="start" x="1229.5" y="-371.8" font-family="arial" font-size="14.00">X49:2:GND</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-371.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1432.5" y="-371.8" font-family="arial" font-size="14.00">X50:2:GND</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-364 1210,-366 1522,-366 1522,-364 1210,-364"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-362 1210,-364 1522,-364 1522,-362 1210,-362"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-360 1210,-362 1522,-362 1522,-360 1210,-360"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-346.8" font-family="arial" font-size="14.00">X49:3:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-346.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-346.8" font-family="arial" font-size="14.00">X50:3:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-339 1210,-341 1522,-341 1522,-339 1210,-339"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-337 1210,-339 1522,-339 1522,-337 1210,-337"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-335 1210,-337 1522,-337 1522,-335 1210,-335"/>
|
||||||
|
<text text-anchor="start" x="1230.5" y="-321.8" font-family="arial" font-size="14.00">X49:4:VDC</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-321.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1433.5" y="-321.8" font-family="arial" font-size="14.00">X50:4:VDC</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-314 1210,-316 1522,-316 1522,-314 1210,-314"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-312 1210,-314 1522,-314 1522,-312 1210,-312"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-310 1210,-312 1522,-312 1522,-310 1210,-310"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-296.8" font-family="arial" font-size="14.00">X49:5:A</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-296.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-296.8" font-family="arial" font-size="14.00">X50:5:A</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-289 1210,-291 1522,-291 1522,-289 1210,-289"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-287 1210,-289 1522,-289 1522,-287 1210,-287"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-285 1210,-287 1522,-287 1522,-285 1210,-285"/>
|
||||||
|
<text text-anchor="start" x="1240" y="-271.8" font-family="arial" font-size="14.00">X49:6:B</text>
|
||||||
|
<text text-anchor="start" x="1338.5" y="-271.8" font-family="arial" font-size="14.00">     GY    </text>
|
||||||
|
<text text-anchor="start" x="1443" y="-271.8" font-family="arial" font-size="14.00">X50:6:B</text>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-264 1210,-266 1522,-266 1522,-264 1210,-264"/>
|
||||||
|
<polygon fill="#999999" stroke="none" points="1210,-262 1210,-264 1522,-264 1522,-262 1210,-262"/>
|
||||||
|
<polygon fill="#000000" stroke="none" points="1210,-260 1210,-262 1522,-262 1522,-260 1210,-260"/>
|
||||||
|
<text text-anchor="start" x="1262.5" y="-246.8" font-family="arial" font-size="14.00"> </text>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge13" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-381C1130.64,-381.09 1146.56,-386.09 1210,-386"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066,-383C1130.04,-383 1145.96,-388 1210,-388"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-385C1129.44,-384.91 1145.36,-389.91 1210,-390"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge15" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-358C1130.38,-358.03 1146.36,-361.03 1210,-361"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-360C1130.01,-360 1145.99,-363 1210,-363"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-362C1129.64,-361.97 1145.62,-364.97 1210,-365"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge17" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-335C1130.13,-335 1146.12,-336 1210,-336"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-337C1130,-337 1146,-338 1210,-338"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-339C1129.88,-339 1145.87,-340 1210,-340"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge19" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-312C1129.88,-312 1145.87,-311 1210,-311"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-314C1130,-314 1146,-313 1210,-313"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-316C1130.13,-316 1146.12,-315 1210,-315"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge21" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-289C1129.64,-289.03 1145.62,-286.03 1210,-286"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-291C1130.01,-291 1145.99,-288 1210,-288"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-293C1130.38,-292.97 1146.36,-289.97 1210,-290"/>
|
||||||
|
</g>
|
||||||
|
<!-- X49--W2 -->
|
||||||
|
<g id="edge23" class="edge">
|
||||||
|
<title>X49:e--W2:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-266C1129.44,-266.09 1145.36,-261.09 1210,-261"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1066,-268C1130.04,-268 1145.96,-263 1210,-263"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1066,-270C1130.64,-269.91 1146.56,-264.91 1210,-265"/>
|
||||||
|
</g>
|
||||||
|
<!-- X50 -->
|
||||||
|
<g id="node3" class="node">
|
||||||
|
<title>X50</title>
|
||||||
|
<polygon fill="#ffffff" stroke="black" points="1899,-440 1666,-440 1666,0 1899,0 1899,-440"/>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-417 1666.5,-440 1899.5,-440 1899.5,-417 1666.5,-417"/>
|
||||||
|
<text text-anchor="start" x="1770.5" y="-424.8" font-family="arial" font-size="14.00">X50</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-394 1666.5,-417 1736.5,-417 1736.5,-394 1666.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1689.5" y="-401.8" font-family="arial" font-size="14.00">IDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1736.5,-394 1736.5,-417 1823.5,-417 1823.5,-394 1736.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1759" y="-401.8" font-family="arial" font-size="14.00">female</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1823.5,-394 1823.5,-417 1899.5,-417 1899.5,-394 1823.5,-394"/>
|
||||||
|
<text text-anchor="start" x="1846" y="-401.8" font-family="arial" font-size="14.00">6-pin</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-371 1666.5,-394 1771.5,-394 1771.5,-371 1666.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-378.8" font-family="arial" font-size="14.00">1</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-371 1771.5,-394 1899.5,-394 1899.5,-371 1771.5,-371"/>
|
||||||
|
<text text-anchor="start" x="1820" y="-378.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-348 1666.5,-371 1771.5,-371 1771.5,-348 1666.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-355.8" font-family="arial" font-size="14.00">2</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-348 1771.5,-371 1899.5,-371 1899.5,-348 1771.5,-348"/>
|
||||||
|
<text text-anchor="start" x="1820" y="-355.8" font-family="arial" font-size="14.00">GND</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-325 1666.5,-348 1771.5,-348 1771.5,-325 1666.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-332.8" font-family="arial" font-size="14.00">3</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-325 1771.5,-348 1899.5,-348 1899.5,-325 1771.5,-325"/>
|
||||||
|
<text text-anchor="start" x="1821" y="-332.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-302 1666.5,-325 1771.5,-325 1771.5,-302 1666.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-309.8" font-family="arial" font-size="14.00">4</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-302 1771.5,-325 1899.5,-325 1899.5,-302 1771.5,-302"/>
|
||||||
|
<text text-anchor="start" x="1821" y="-309.8" font-family="arial" font-size="14.00">VDC</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-279 1666.5,-302 1771.5,-302 1771.5,-279 1666.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-286.8" font-family="arial" font-size="14.00">5</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-279 1771.5,-302 1899.5,-302 1899.5,-279 1771.5,-279"/>
|
||||||
|
<text text-anchor="start" x="1830.5" y="-286.8" font-family="arial" font-size="14.00">A</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1666.5,-256 1666.5,-279 1771.5,-279 1771.5,-256 1666.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1715" y="-263.8" font-family="arial" font-size="14.00">6</text>
|
||||||
|
<polygon fill="none" stroke="black" points="1771.5,-256 1771.5,-279 1899.5,-279 1899.5,-256 1771.5,-256"/>
|
||||||
|
<text text-anchor="start" x="1830.5" y="-263.8" font-family="arial" font-size="14.00">B</text>
|
||||||
|
<polyline fill="none" stroke="black" points="1899.5,-23 1899.5,-256 1666.5,-256 1666.5,-23"/>
|
||||||
|
<image xlink:href="../resources/idc.jpeg" width="225px" height="225px" preserveAspectRatio="xMinYMin meet" x="1670.5" y="-252"/>
|
||||||
|
<polyline fill="none" stroke="black" points="1666.5,-23 1666.5,0 1899.5,0 1899.5,-23"/>
|
||||||
|
<text text-anchor="start" x="1725.5" y="-7.8" font-family="arial" font-size="14.00">2x3 IDC Connector</text>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge2" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-386C752.44,-386.09 768.36,-381.09 833,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M689,-388C753.04,-388 768.96,-383 833,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-390C753.64,-389.91 769.56,-384.91 833,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge4" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-361C752.64,-361.03 768.62,-358.03 833,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-363C753.01,-363 768.99,-360 833,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-365C753.38,-364.97 769.36,-361.97 833,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge6" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-336C752.88,-336 768.87,-335 833,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-338C753,-338 769,-337 833,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-340C753.13,-340 769.12,-339 833,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge8" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-311C753.13,-311 769.12,-312 833,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-313C753,-313 769,-314 833,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-315C752.88,-315 768.87,-316 833,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge10" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-286C753.38,-286.03 769.36,-289.03 833,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-288C753.01,-288 768.99,-291 833,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-290C752.64,-289.97 768.62,-292.97 833,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W1--X49 -->
|
||||||
|
<g id="edge12" class="edge">
|
||||||
|
<title>W1:e--X49:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-261C753.64,-261.09 769.56,-266.09 833,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M689,-263C753.04,-263 768.96,-268 833,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M689,-265C752.44,-264.91 768.36,-269.91 833,-270"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge14" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-386C1585.44,-386.09 1601.36,-381.09 1666,-381"/>
|
||||||
|
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1522,-388C1586.04,-388 1601.96,-383 1666,-383"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-390C1586.64,-389.91 1602.56,-384.91 1666,-385"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge16" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-361C1585.64,-361.03 1601.62,-358.03 1666,-358"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-363C1586.01,-363 1601.99,-360 1666,-360"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-365C1586.38,-364.97 1602.36,-361.97 1666,-362"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge18" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-336C1585.88,-336 1601.87,-335 1666,-335"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-338C1586,-338 1602,-337 1666,-337"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-340C1586.13,-340 1602.12,-339 1666,-339"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge20" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-311C1586.13,-311 1602.12,-312 1666,-312"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-313C1586,-313 1602,-314 1666,-314"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-315C1585.88,-315 1601.87,-316 1666,-316"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge22" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-286C1586.38,-286.03 1602.36,-289.03 1666,-289"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-288C1586.01,-288 1601.99,-291 1666,-291"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-290C1585.64,-289.97 1601.62,-292.97 1666,-293"/>
|
||||||
|
</g>
|
||||||
|
<!-- W2--X50 -->
|
||||||
|
<g id="edge24" class="edge">
|
||||||
|
<title>W2:e--X50:w</title>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-261C1586.64,-261.09 1602.56,-266.09 1666,-266"/>
|
||||||
|
<path fill="none" stroke="#999999" stroke-width="2" d="M1522,-263C1586.04,-263 1601.96,-268 1666,-268"/>
|
||||||
|
<path fill="none" stroke="#000000" stroke-width="2" d="M1522,-265C1585.44,-264.91 1601.36,-269.91 1666,-270"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,52 @@
|
|||||||
|
templates:
|
||||||
|
- &template_con
|
||||||
|
type: IDC
|
||||||
|
subtype: female
|
||||||
|
pinlabels: [GND, GND, VDC, VDC, A, B]
|
||||||
|
image:
|
||||||
|
src: ../resources/idc.jpeg
|
||||||
|
caption: 2x3 IDC Connector
|
||||||
|
- &template_wire_jumper
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.03
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
- &template_wire_mobo
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.26
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
- &template_wire_front_back
|
||||||
|
gauge: 26 AWG
|
||||||
|
length: 0.475
|
||||||
|
colors: [RD, GY, GY, GY, GY, GY]
|
||||||
|
category: bundle
|
||||||
|
type: 1.27mm Pitch Ribbon Cable
|
||||||
|
notes: NOTE - This cable is longer than the rest.
|
||||||
|
|
||||||
|
connectors:
|
||||||
|
X48:
|
||||||
|
<<: *template_con
|
||||||
|
X49:
|
||||||
|
<<: *template_con
|
||||||
|
X50:
|
||||||
|
<<: *template_con
|
||||||
|
|
||||||
|
cables:
|
||||||
|
W1:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
W2:
|
||||||
|
<<: *template_wire_jumper
|
||||||
|
|
||||||
|
connections:
|
||||||
|
-
|
||||||
|
- X48: [1-6]
|
||||||
|
- W1: [1-6]
|
||||||
|
- X49: [1-6]
|
||||||
|
-
|
||||||
|
- X49: [1-6]
|
||||||
|
- W2: [1-6]
|
||||||
|
- X50: [1-6]
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
frame-12.FCStd filter=lfs diff=lfs merge=lfs -text
|
||||||
|
After Width: | Height: | Size: 536 KiB |
|
After Width: | Height: | Size: 207 KiB |
|
After Width: | Height: | Size: 71 KiB |
@@ -0,0 +1,922 @@
|
|||||||
|
999
|
||||||
|
FreeCAD v1.0 39319 (Git)
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
HEADER
|
||||||
|
9
|
||||||
|
$ACADVER
|
||||||
|
1
|
||||||
|
AC1014
|
||||||
|
9
|
||||||
|
$ACADMAINTVER
|
||||||
|
70
|
||||||
|
9
|
||||||
|
9
|
||||||
|
$DWGCODEPAGE
|
||||||
|
3
|
||||||
|
ANSI_1252
|
||||||
|
9
|
||||||
|
$TEXTSTYLE
|
||||||
|
7
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$DIMSTYLE
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$DIMTXSTY
|
||||||
|
7
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$CMLSTYLE
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$LUNITS
|
||||||
|
70
|
||||||
|
2
|
||||||
|
9
|
||||||
|
$INSUNITS
|
||||||
|
70
|
||||||
|
4
|
||||||
|
9
|
||||||
|
$PEXTMAX
|
||||||
|
10
|
||||||
|
50
|
||||||
|
20
|
||||||
|
50
|
||||||
|
30
|
||||||
|
50
|
||||||
|
9
|
||||||
|
$PEXTMIN
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
9
|
||||||
|
$HANDSEED
|
||||||
|
5
|
||||||
|
FFFF
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
CLASSES
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
ACDBDICTIONARYWDFLT
|
||||||
|
2
|
||||||
|
AcDbDictionaryWithDefault
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
XRECORD
|
||||||
|
2
|
||||||
|
AcDbXrecord
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
LWPOLYLINE
|
||||||
|
2
|
||||||
|
AcDbPolyline
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
1
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
TABLES
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
VPORT
|
||||||
|
5
|
||||||
|
20
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
1
|
||||||
|
0
|
||||||
|
VPORT
|
||||||
|
5
|
||||||
|
21
|
||||||
|
330
|
||||||
|
20
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbViewportTableRecord
|
||||||
|
2
|
||||||
|
*ACTIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
22
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
1
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
23
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
BYBLOCK
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
24
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
BYLAYER
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
25
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
CONTINUOUS
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
Solid line
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A10
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
3
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A11
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
0
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A12
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
none
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A13
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
Sketch055
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
70
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
71
|
||||||
|
330
|
||||||
|
70
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbTextStyleTableRecord
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
1.0
|
||||||
|
50
|
||||||
|
0.0
|
||||||
|
71
|
||||||
|
0
|
||||||
|
42
|
||||||
|
2.5
|
||||||
|
3
|
||||||
|
arial.ttf
|
||||||
|
4
|
||||||
|
|
||||||
|
0
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
72
|
||||||
|
330
|
||||||
|
70
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbTextStyleTableRecord
|
||||||
|
2
|
||||||
|
ANNOTATIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
1.0
|
||||||
|
50
|
||||||
|
0.0
|
||||||
|
71
|
||||||
|
0
|
||||||
|
42
|
||||||
|
2.5
|
||||||
|
3
|
||||||
|
arial.ttf
|
||||||
|
4
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
VIEW
|
||||||
|
5
|
||||||
|
73
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
UCS
|
||||||
|
5
|
||||||
|
74
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
75
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
76
|
||||||
|
330
|
||||||
|
75
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbRegAppTableRecord
|
||||||
|
2
|
||||||
|
ACAD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
77
|
||||||
|
330
|
||||||
|
75
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbRegAppTableRecord
|
||||||
|
2
|
||||||
|
ACADANNOTATIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
DIMSTYLE
|
||||||
|
5
|
||||||
|
78
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
DIMSTYLE
|
||||||
|
105
|
||||||
|
79
|
||||||
|
330
|
||||||
|
78
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbDimStyleTableRecord
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
4
|
||||||
|
|
||||||
|
5
|
||||||
|
|
||||||
|
6
|
||||||
|
|
||||||
|
7
|
||||||
|
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
2.5
|
||||||
|
42
|
||||||
|
0.625
|
||||||
|
43
|
||||||
|
3.75
|
||||||
|
44
|
||||||
|
1.25
|
||||||
|
45
|
||||||
|
0.0
|
||||||
|
46
|
||||||
|
0.0
|
||||||
|
47
|
||||||
|
0.0
|
||||||
|
48
|
||||||
|
0.0
|
||||||
|
140
|
||||||
|
2.5
|
||||||
|
141
|
||||||
|
2.5
|
||||||
|
142
|
||||||
|
0.0
|
||||||
|
143
|
||||||
|
0.03937007874016
|
||||||
|
144
|
||||||
|
1.0
|
||||||
|
145
|
||||||
|
0.0
|
||||||
|
146
|
||||||
|
1.0
|
||||||
|
147
|
||||||
|
0.625
|
||||||
|
71
|
||||||
|
0
|
||||||
|
72
|
||||||
|
0
|
||||||
|
73
|
||||||
|
0
|
||||||
|
74
|
||||||
|
0
|
||||||
|
75
|
||||||
|
0
|
||||||
|
76
|
||||||
|
0
|
||||||
|
77
|
||||||
|
1
|
||||||
|
78
|
||||||
|
8
|
||||||
|
170
|
||||||
|
0
|
||||||
|
171
|
||||||
|
3
|
||||||
|
172
|
||||||
|
1
|
||||||
|
173
|
||||||
|
0
|
||||||
|
174
|
||||||
|
0
|
||||||
|
175
|
||||||
|
0
|
||||||
|
176
|
||||||
|
0
|
||||||
|
177
|
||||||
|
0
|
||||||
|
178
|
||||||
|
0
|
||||||
|
270
|
||||||
|
2
|
||||||
|
271
|
||||||
|
2
|
||||||
|
272
|
||||||
|
2
|
||||||
|
273
|
||||||
|
2
|
||||||
|
274
|
||||||
|
3
|
||||||
|
340
|
||||||
|
71
|
||||||
|
275
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
282
|
||||||
|
0
|
||||||
|
283
|
||||||
|
0
|
||||||
|
284
|
||||||
|
8
|
||||||
|
285
|
||||||
|
0
|
||||||
|
286
|
||||||
|
0
|
||||||
|
287
|
||||||
|
3
|
||||||
|
288
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A01
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
5
|
||||||
|
0
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A02
|
||||||
|
330
|
||||||
|
A01
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbBlockTableRecord
|
||||||
|
2
|
||||||
|
*MODEL_SPACE
|
||||||
|
0
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A03
|
||||||
|
330
|
||||||
|
A01
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbBlockTableRecord
|
||||||
|
2
|
||||||
|
*PAPER_SPACE
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
BLOCKS
|
||||||
|
0
|
||||||
|
BLOCK
|
||||||
|
5
|
||||||
|
A04
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockBegin
|
||||||
|
2
|
||||||
|
*MODEL_SPACE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
3
|
||||||
|
*MODEL_SPACE
|
||||||
|
1
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDBLK
|
||||||
|
5
|
||||||
|
A05
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockEnd
|
||||||
|
0
|
||||||
|
BLOCK
|
||||||
|
5
|
||||||
|
A06
|
||||||
|
330
|
||||||
|
A03
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
67
|
||||||
|
1
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockBegin
|
||||||
|
2
|
||||||
|
*PAPER_SPACE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
3
|
||||||
|
*PAPER_SPACE
|
||||||
|
1
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDBLK
|
||||||
|
5
|
||||||
|
A07
|
||||||
|
330
|
||||||
|
A03
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
67
|
||||||
|
1
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockEnd
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
ENTITIES
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A08
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-11.500000000
|
||||||
|
20
|
||||||
|
-1.600000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-20.500000000
|
||||||
|
21
|
||||||
|
-1.600000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A09
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-20.500000000
|
||||||
|
20
|
||||||
|
-1.600000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-20.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0A
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-20.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-31.600000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0B
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-31.600000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-31.600000000
|
||||||
|
21
|
||||||
|
-11.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0C
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-31.600000000
|
||||||
|
20
|
||||||
|
-11.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-0.500000000
|
||||||
|
21
|
||||||
|
-11.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0D
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-0.500000000
|
||||||
|
20
|
||||||
|
-11.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-0.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0E
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-0.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-11.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0F
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-11.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-11.500000000
|
||||||
|
21
|
||||||
|
-1.600000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
OBJECTS
|
||||||
|
0
|
||||||
|
DICTIONARY
|
||||||
|
5
|
||||||
|
F000
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbDictionary
|
||||||
|
3
|
||||||
|
ACAD_GROUP
|
||||||
|
350
|
||||||
|
F001
|
||||||
|
0
|
||||||
|
DICTIONARY
|
||||||
|
5
|
||||||
|
F001
|
||||||
|
330
|
||||||
|
F000
|
||||||
|
100
|
||||||
|
AcDbDictionary
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
EOF
|
||||||
@@ -0,0 +1,922 @@
|
|||||||
|
999
|
||||||
|
FreeCAD v1.0 39319 (Git)
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
HEADER
|
||||||
|
9
|
||||||
|
$ACADVER
|
||||||
|
1
|
||||||
|
AC1014
|
||||||
|
9
|
||||||
|
$ACADMAINTVER
|
||||||
|
70
|
||||||
|
9
|
||||||
|
9
|
||||||
|
$DWGCODEPAGE
|
||||||
|
3
|
||||||
|
ANSI_1252
|
||||||
|
9
|
||||||
|
$TEXTSTYLE
|
||||||
|
7
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$DIMSTYLE
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$DIMTXSTY
|
||||||
|
7
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$CMLSTYLE
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
9
|
||||||
|
$LUNITS
|
||||||
|
70
|
||||||
|
2
|
||||||
|
9
|
||||||
|
$INSUNITS
|
||||||
|
70
|
||||||
|
4
|
||||||
|
9
|
||||||
|
$PEXTMAX
|
||||||
|
10
|
||||||
|
50
|
||||||
|
20
|
||||||
|
50
|
||||||
|
30
|
||||||
|
50
|
||||||
|
9
|
||||||
|
$PEXTMIN
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
9
|
||||||
|
$HANDSEED
|
||||||
|
5
|
||||||
|
FFFF
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
CLASSES
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
ACDBDICTIONARYWDFLT
|
||||||
|
2
|
||||||
|
AcDbDictionaryWithDefault
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
XRECORD
|
||||||
|
2
|
||||||
|
AcDbXrecord
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
0
|
||||||
|
CLASS
|
||||||
|
1
|
||||||
|
LWPOLYLINE
|
||||||
|
2
|
||||||
|
AcDbPolyline
|
||||||
|
3
|
||||||
|
ObjectDBX Classes
|
||||||
|
90
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
1
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
TABLES
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
VPORT
|
||||||
|
5
|
||||||
|
20
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
1
|
||||||
|
0
|
||||||
|
VPORT
|
||||||
|
5
|
||||||
|
21
|
||||||
|
330
|
||||||
|
20
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbViewportTableRecord
|
||||||
|
2
|
||||||
|
*ACTIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
22
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
1
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
23
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
BYBLOCK
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
24
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
BYLAYER
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
LTYPE
|
||||||
|
5
|
||||||
|
25
|
||||||
|
330
|
||||||
|
21
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLinetypeTableRecord
|
||||||
|
2
|
||||||
|
CONTINUOUS
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
Solid line
|
||||||
|
72
|
||||||
|
65
|
||||||
|
73
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A10
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
3
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A11
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
0
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A12
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
none
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
LAYER
|
||||||
|
5
|
||||||
|
A13
|
||||||
|
330
|
||||||
|
A10
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbLayerTableRecord
|
||||||
|
2
|
||||||
|
Sketch055
|
||||||
|
70
|
||||||
|
0
|
||||||
|
62
|
||||||
|
7
|
||||||
|
6
|
||||||
|
CONTINUOUS
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
70
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
71
|
||||||
|
330
|
||||||
|
70
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbTextStyleTableRecord
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
1.0
|
||||||
|
50
|
||||||
|
0.0
|
||||||
|
71
|
||||||
|
0
|
||||||
|
42
|
||||||
|
2.5
|
||||||
|
3
|
||||||
|
arial.ttf
|
||||||
|
4
|
||||||
|
|
||||||
|
0
|
||||||
|
STYLE
|
||||||
|
5
|
||||||
|
72
|
||||||
|
330
|
||||||
|
70
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbTextStyleTableRecord
|
||||||
|
2
|
||||||
|
ANNOTATIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
1.0
|
||||||
|
50
|
||||||
|
0.0
|
||||||
|
71
|
||||||
|
0
|
||||||
|
42
|
||||||
|
2.5
|
||||||
|
3
|
||||||
|
arial.ttf
|
||||||
|
4
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
VIEW
|
||||||
|
5
|
||||||
|
73
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
UCS
|
||||||
|
5
|
||||||
|
74
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
75
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
76
|
||||||
|
330
|
||||||
|
75
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbRegAppTableRecord
|
||||||
|
2
|
||||||
|
ACAD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
APPID
|
||||||
|
5
|
||||||
|
77
|
||||||
|
330
|
||||||
|
75
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbRegAppTableRecord
|
||||||
|
2
|
||||||
|
ACADANNOTATIVE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
DIMSTYLE
|
||||||
|
5
|
||||||
|
78
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
2
|
||||||
|
0
|
||||||
|
DIMSTYLE
|
||||||
|
105
|
||||||
|
79
|
||||||
|
330
|
||||||
|
78
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbDimStyleTableRecord
|
||||||
|
2
|
||||||
|
STANDARD
|
||||||
|
70
|
||||||
|
0
|
||||||
|
3
|
||||||
|
|
||||||
|
4
|
||||||
|
|
||||||
|
5
|
||||||
|
|
||||||
|
6
|
||||||
|
|
||||||
|
7
|
||||||
|
|
||||||
|
40
|
||||||
|
0.0
|
||||||
|
41
|
||||||
|
2.5
|
||||||
|
42
|
||||||
|
0.625
|
||||||
|
43
|
||||||
|
3.75
|
||||||
|
44
|
||||||
|
1.25
|
||||||
|
45
|
||||||
|
0.0
|
||||||
|
46
|
||||||
|
0.0
|
||||||
|
47
|
||||||
|
0.0
|
||||||
|
48
|
||||||
|
0.0
|
||||||
|
140
|
||||||
|
2.5
|
||||||
|
141
|
||||||
|
2.5
|
||||||
|
142
|
||||||
|
0.0
|
||||||
|
143
|
||||||
|
0.03937007874016
|
||||||
|
144
|
||||||
|
1.0
|
||||||
|
145
|
||||||
|
0.0
|
||||||
|
146
|
||||||
|
1.0
|
||||||
|
147
|
||||||
|
0.625
|
||||||
|
71
|
||||||
|
0
|
||||||
|
72
|
||||||
|
0
|
||||||
|
73
|
||||||
|
0
|
||||||
|
74
|
||||||
|
0
|
||||||
|
75
|
||||||
|
0
|
||||||
|
76
|
||||||
|
0
|
||||||
|
77
|
||||||
|
1
|
||||||
|
78
|
||||||
|
8
|
||||||
|
170
|
||||||
|
0
|
||||||
|
171
|
||||||
|
3
|
||||||
|
172
|
||||||
|
1
|
||||||
|
173
|
||||||
|
0
|
||||||
|
174
|
||||||
|
0
|
||||||
|
175
|
||||||
|
0
|
||||||
|
176
|
||||||
|
0
|
||||||
|
177
|
||||||
|
0
|
||||||
|
178
|
||||||
|
0
|
||||||
|
270
|
||||||
|
2
|
||||||
|
271
|
||||||
|
2
|
||||||
|
272
|
||||||
|
2
|
||||||
|
273
|
||||||
|
2
|
||||||
|
274
|
||||||
|
3
|
||||||
|
340
|
||||||
|
71
|
||||||
|
275
|
||||||
|
0
|
||||||
|
280
|
||||||
|
0
|
||||||
|
281
|
||||||
|
0
|
||||||
|
282
|
||||||
|
0
|
||||||
|
283
|
||||||
|
0
|
||||||
|
284
|
||||||
|
8
|
||||||
|
285
|
||||||
|
0
|
||||||
|
286
|
||||||
|
0
|
||||||
|
287
|
||||||
|
3
|
||||||
|
288
|
||||||
|
0
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
TABLE
|
||||||
|
2
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A01
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbSymbolTable
|
||||||
|
70
|
||||||
|
5
|
||||||
|
0
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A02
|
||||||
|
330
|
||||||
|
A01
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbBlockTableRecord
|
||||||
|
2
|
||||||
|
*MODEL_SPACE
|
||||||
|
0
|
||||||
|
BLOCK_RECORD
|
||||||
|
5
|
||||||
|
A03
|
||||||
|
330
|
||||||
|
A01
|
||||||
|
100
|
||||||
|
AcDbSymbolTableRecord
|
||||||
|
100
|
||||||
|
AcDbBlockTableRecord
|
||||||
|
2
|
||||||
|
*PAPER_SPACE
|
||||||
|
0
|
||||||
|
ENDTAB
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
BLOCKS
|
||||||
|
0
|
||||||
|
BLOCK
|
||||||
|
5
|
||||||
|
A04
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockBegin
|
||||||
|
2
|
||||||
|
*MODEL_SPACE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
3
|
||||||
|
*MODEL_SPACE
|
||||||
|
1
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDBLK
|
||||||
|
5
|
||||||
|
A05
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockEnd
|
||||||
|
0
|
||||||
|
BLOCK
|
||||||
|
5
|
||||||
|
A06
|
||||||
|
330
|
||||||
|
A03
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
67
|
||||||
|
1
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockBegin
|
||||||
|
2
|
||||||
|
*PAPER_SPACE
|
||||||
|
70
|
||||||
|
0
|
||||||
|
10
|
||||||
|
0
|
||||||
|
20
|
||||||
|
0
|
||||||
|
30
|
||||||
|
0
|
||||||
|
3
|
||||||
|
*PAPER_SPACE
|
||||||
|
1
|
||||||
|
|
||||||
|
0
|
||||||
|
ENDBLK
|
||||||
|
5
|
||||||
|
A07
|
||||||
|
330
|
||||||
|
A03
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
67
|
||||||
|
1
|
||||||
|
8
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbBlockEnd
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
ENTITIES
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A08
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-11.500000000
|
||||||
|
20
|
||||||
|
-1.600000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-20.500000000
|
||||||
|
21
|
||||||
|
-1.600000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A09
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-20.500000000
|
||||||
|
20
|
||||||
|
-1.600000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-20.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0A
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-20.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-31.600000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0B
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-31.600000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-31.600000000
|
||||||
|
21
|
||||||
|
-30.350000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0C
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-31.600000000
|
||||||
|
20
|
||||||
|
-30.350000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-0.500000000
|
||||||
|
21
|
||||||
|
-30.350000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0D
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-0.500000000
|
||||||
|
20
|
||||||
|
-30.350000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-0.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0E
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-0.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-11.500000000
|
||||||
|
21
|
||||||
|
-6.100000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
LINE
|
||||||
|
5
|
||||||
|
A0F
|
||||||
|
330
|
||||||
|
A02
|
||||||
|
100
|
||||||
|
AcDbEntity
|
||||||
|
8
|
||||||
|
Sketch055
|
||||||
|
100
|
||||||
|
AcDbLine
|
||||||
|
10
|
||||||
|
-11.500000000
|
||||||
|
20
|
||||||
|
-6.100000000
|
||||||
|
30
|
||||||
|
0.000000000
|
||||||
|
11
|
||||||
|
-11.500000000
|
||||||
|
21
|
||||||
|
-1.600000000
|
||||||
|
31
|
||||||
|
0.000000000
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
SECTION
|
||||||
|
2
|
||||||
|
OBJECTS
|
||||||
|
0
|
||||||
|
DICTIONARY
|
||||||
|
5
|
||||||
|
F000
|
||||||
|
330
|
||||||
|
0
|
||||||
|
100
|
||||||
|
AcDbDictionary
|
||||||
|
3
|
||||||
|
ACAD_GROUP
|
||||||
|
350
|
||||||
|
F001
|
||||||
|
0
|
||||||
|
DICTIONARY
|
||||||
|
5
|
||||||
|
F001
|
||||||
|
330
|
||||||
|
F000
|
||||||
|
100
|
||||||
|
AcDbDictionary
|
||||||
|
0
|
||||||
|
ENDSEC
|
||||||
|
0
|
||||||
|
EOF
|
||||||
|
After Width: | Height: | Size: 8.3 KiB |
@@ -0,0 +1,440 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="210mm"
|
||||||
|
height="297mm"
|
||||||
|
viewBox="0 0 210 297"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
|
||||||
|
sodipodi:docname="stickers.svg"
|
||||||
|
inkscape:export-filename="../../../Downloads/teststicker.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:zoom="2.1115924"
|
||||||
|
inkscape:cx="408.22272"
|
||||||
|
inkscape:cy="555.97851"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1381"
|
||||||
|
inkscape:window-x="1920"
|
||||||
|
inkscape:window-y="31"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false" /><defs
|
||||||
|
id="defs1"><marker
|
||||||
|
id="DistanceX"
|
||||||
|
orient="auto"
|
||||||
|
refX="0.0"
|
||||||
|
refY="0.0"
|
||||||
|
style="overflow:visible"><path
|
||||||
|
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||||
|
style="stroke:#000000; stroke-width:0.5"
|
||||||
|
id="path1" /></marker><pattern
|
||||||
|
id="Hatch"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="8"
|
||||||
|
height="8"
|
||||||
|
x="0"
|
||||||
|
y="0"><path
|
||||||
|
d="M8 4 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path2" /><path
|
||||||
|
d="M6 2 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path3" /><path
|
||||||
|
d="M4 0 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path4" /></pattern><symbol
|
||||||
|
id="*MODEL_SPACE" /><symbol
|
||||||
|
id="*PAPER_SPACE" /><marker
|
||||||
|
id="DistanceX-3"
|
||||||
|
orient="auto"
|
||||||
|
refX="0.0"
|
||||||
|
refY="0.0"
|
||||||
|
style="overflow:visible"><path
|
||||||
|
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||||
|
style="stroke:#000000; stroke-width:0.5"
|
||||||
|
id="path1-9" /></marker><pattern
|
||||||
|
id="Hatch-0"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="8"
|
||||||
|
height="8"
|
||||||
|
x="0"
|
||||||
|
y="0"><path
|
||||||
|
d="M8 4 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path2-5" /><path
|
||||||
|
d="M6 2 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path3-2" /><path
|
||||||
|
d="M4 0 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path4-2" /></pattern><symbol
|
||||||
|
id="*MODEL_SPACE-7" /><symbol
|
||||||
|
id="*PAPER_SPACE-3" /><marker
|
||||||
|
id="DistanceX-1"
|
||||||
|
orient="auto"
|
||||||
|
refX="0.0"
|
||||||
|
refY="0.0"
|
||||||
|
style="overflow:visible"><path
|
||||||
|
d="M 3,-3 L -3,3 M 0,-5 L 0,5"
|
||||||
|
style="stroke:#000000; stroke-width:0.5"
|
||||||
|
id="path1-4" /></marker><pattern
|
||||||
|
id="Hatch-7"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
width="8"
|
||||||
|
height="8"
|
||||||
|
x="0"
|
||||||
|
y="0"><path
|
||||||
|
d="M8 4 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path2-1" /><path
|
||||||
|
d="M6 2 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path3-3" /><path
|
||||||
|
d="M4 0 l-4,4"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-width="0.25"
|
||||||
|
linecap="square"
|
||||||
|
id="path4-8" /></pattern><symbol
|
||||||
|
id="*MODEL_SPACE-4" /><symbol
|
||||||
|
id="*PAPER_SPACE-8" /></defs><g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"><rect
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect14"
|
||||||
|
width="65.372803"
|
||||||
|
height="67.136452"
|
||||||
|
x="94.512039"
|
||||||
|
y="128.87753"
|
||||||
|
inkscape:label="rect14" /><g
|
||||||
|
inkscape:label="0"
|
||||||
|
id="g4"
|
||||||
|
style="fill:none;stroke:#ff0000;stroke-width:25.9022;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
transform="matrix(0,-0.01032805,0.01013448,0,85.391758,130.57663)" /><g
|
||||||
|
inkscape:label="none"
|
||||||
|
id="g5"
|
||||||
|
style="fill:none;stroke:#ff0000;stroke-width:25.9022;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
transform="matrix(0,-0.01032805,0.01013448,0,85.391758,130.57663)" /><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:9.87778px;line-height:1.25;font-family:Figtree;-inkscape-font-specification:Figtree;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="109.86727"
|
||||||
|
y="147.89633"
|
||||||
|
id="text13"
|
||||||
|
inkscape:label="text13"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan13"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.87778px;font-family:Figtree;-inkscape-font-specification:'Figtree Semi-Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="109.86727"
|
||||||
|
y="147.89633">16</tspan></text><g
|
||||||
|
id="g15"
|
||||||
|
transform="rotate(180,98.47819,146.38071)"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect15"
|
||||||
|
width="3.0510385"
|
||||||
|
height="3.0510385"
|
||||||
|
x="97.520706"
|
||||||
|
y="144.85579"
|
||||||
|
rx="10" /><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect15-4"
|
||||||
|
width="3.0510385"
|
||||||
|
height="3.0510385"
|
||||||
|
x="96.063148"
|
||||||
|
y="144.85458"
|
||||||
|
inkscape:transform-center-x="-0.013707566"
|
||||||
|
inkscape:transform-center-y="0.013707619" /></g><g
|
||||||
|
id="g15-3"
|
||||||
|
transform="rotate(180,113.68335,146.61532)"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect15-8"
|
||||||
|
width="3.0510385"
|
||||||
|
height="3.0510385"
|
||||||
|
x="97.520706"
|
||||||
|
y="144.85579"
|
||||||
|
rx="10" /><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect15-4-1"
|
||||||
|
width="3.0510385"
|
||||||
|
height="3.0510385"
|
||||||
|
x="96.063148"
|
||||||
|
y="144.85458"
|
||||||
|
inkscape:transform-center-x="-0.013707566"
|
||||||
|
inkscape:transform-center-y="0.013707619" /></g><g
|
||||||
|
id="g16"
|
||||||
|
transform="translate(0.04102534,-1.6820389)"
|
||||||
|
inkscape:label="g16"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect13"
|
||||||
|
width="0.74058235"
|
||||||
|
height="2.7259381"
|
||||||
|
x="104.75137"
|
||||||
|
y="136.7804" /><path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 105.14794,135.13747 -1.10769,1.68203 2.13332,-0.0227 z"
|
||||||
|
id="path16" /></g><g
|
||||||
|
id="g16-5"
|
||||||
|
transform="matrix(1,0,0,-1,0.04147732,294.82331)"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect13-2"
|
||||||
|
width="0.74058235"
|
||||||
|
height="2.7259381"
|
||||||
|
x="104.75137"
|
||||||
|
y="136.7804" /><path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 105.14794,135.13747 -1.10769,1.68203 2.13332,-0.0227 z"
|
||||||
|
id="path16-1" /></g><g
|
||||||
|
id="g2"
|
||||||
|
transform="matrix(0,-0.01032805,0.01032109,0,85.099333,130.59694)"
|
||||||
|
style="stroke-width:25.6266;stroke:#ffffff;stroke-opacity:1"><g
|
||||||
|
inkscape:label="0"
|
||||||
|
id="g4-7"
|
||||||
|
style="stroke-width:25.6266;stroke:#ffffff;stroke-opacity:1" /><g
|
||||||
|
inkscape:label="none"
|
||||||
|
id="g5-9"
|
||||||
|
style="stroke-width:25.6266;stroke:#ffffff;stroke-opacity:1" /><g
|
||||||
|
inkscape:label="Sketch055"
|
||||||
|
id="g12-0"
|
||||||
|
style="stroke-width:25.6266;stroke:#ffffff;stroke-opacity:1"><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="m -1104,1276.12 h -864"
|
||||||
|
id="path5-2" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="m -1968,1276.12 v 432"
|
||||||
|
id="path6-3" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="M -1968,1708.12 H -3033.6"
|
||||||
|
id="path7-9" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="m -3033.6,1708.12 v 2328"
|
||||||
|
id="path8-9" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="M -3033.6,4036.12 H -48"
|
||||||
|
id="path9-7" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="m -48,4036.12 v -2328"
|
||||||
|
id="path10-0" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="M -48,1708.12 H -1104"
|
||||||
|
id="path11-3" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1"
|
||||||
|
d="m -1104,1708.12 v -432"
|
||||||
|
id="path12-9" /></g></g><g
|
||||||
|
id="g3"
|
||||||
|
transform="matrix(0.61327422,0,0,0.61327422,34.075145,83.676515)"
|
||||||
|
style="stroke-width:1.63059"><path
|
||||||
|
d="m 116.91091,141.17783 a 5.310432,5.310432 0 0 1 4.98223,4.98224 h 0.64682 v 0.63725 h -0.64682 a 5.310432,5.310432 0 0 1 -4.98223,4.98224 v 0.64682 h -0.63726 v -0.64682 a 5.310432,5.310432 0 0 1 -4.98223,-4.98224 h -0.64682 v -0.63725 h 0.64682 a 5.310432,5.310432 0 0 1 4.98223,-4.98224 v -0.64682 h 0.63726 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path6" /><path
|
||||||
|
d="m 114.89294,146.79732 h -2.96297 a 4.6731802,4.6731802 0 0 0 4.34368,4.34368 v -1.05121 h 0.63726 v 1.05121 a 4.6731802,4.6731802 0 0 0 4.34368,-4.34368 h -1.05122 v -0.63725 h 1.05122 a 4.6731802,4.6731802 0 0 0 -4.34368,-4.34368 v 2.96297 h -0.63726 v -2.96297 a 4.6731802,4.6731802 0 0 0 -4.34368,4.34368 h 2.96297 z"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path5" /><path
|
||||||
|
d="m 116.91091,146.16007 h 0.74346 v 0.63725 h -0.74346 v 0.74346 h -0.63726 v -0.74346 h -0.74346 v -0.63725 h 0.74346 v -0.74346 h 0.63726 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path7" /></g><g
|
||||||
|
id="g3-0"
|
||||||
|
transform="matrix(0.61327422,0,0,0.61327422,84.567562,78.815737)"
|
||||||
|
style="stroke-width:1.63059"><path
|
||||||
|
d="m 116.91091,141.17783 a 5.310432,5.310432 0 0 1 4.98223,4.98224 h 0.64682 v 0.63725 h -0.64682 a 5.310432,5.310432 0 0 1 -4.98223,4.98224 v 0.64682 h -0.63726 v -0.64682 a 5.310432,5.310432 0 0 1 -4.98223,-4.98224 h -0.64682 v -0.63725 h 0.64682 a 5.310432,5.310432 0 0 1 4.98223,-4.98224 v -0.64682 h 0.63726 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path6-2" /><path
|
||||||
|
d="m 114.89294,146.79732 h -2.96297 a 4.6731802,4.6731802 0 0 0 4.34368,4.34368 v -1.05121 h 0.63726 v 1.05121 a 4.6731802,4.6731802 0 0 0 4.34368,-4.34368 h -1.05122 v -0.63725 h 1.05122 a 4.6731802,4.6731802 0 0 0 -4.34368,-4.34368 v 2.96297 h -0.63726 v -2.96297 a 4.6731802,4.6731802 0 0 0 -4.34368,4.34368 h 2.96297 z"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path5-3" /><path
|
||||||
|
d="m 116.91091,146.16007 h 0.74346 v 0.63725 h -0.74346 v 0.74346 h -0.63726 v -0.74346 h -0.74346 v -0.63725 h 0.74346 v -0.74346 h 0.63726 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.431427"
|
||||||
|
id="path7-99" /></g><g
|
||||||
|
id="g6"
|
||||||
|
transform="matrix(0.02194832,0,0,0.02194832,116.24045,171.50274)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548"><path
|
||||||
|
d="M 240.06,67.75 C 239.62,106.83 191.8,126.07 164.7,97.58 148,80.93 148.73,51.63 166.23,35.82 194.01,9.27 240.07,29.3 240.06,67.75 Z m -43.83,-30.1 c -16.75,0.14 -29.36,13.24 -29.85,28.73 0.59,41.25 57.63,40.38 59.73,2.2 0.53,-17.61 -13.49,-30.9 -29.88,-30.93 z"
|
||||||
|
id="path109"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 248.69,99.76 c 0,-14.11 0,-43.09 0,-43.09 0,0 18.2,0.01 26.84,0 18.5,0 28.42,12.51 28.42,26.65 0,15.46 -9.98,27.38 -26.54,27.38 -2.84,0 -13.28,0 -13.28,0 l 0.02,32.45 -15.48,0.02 c 0,0 0.02,-29.23 0.02,-43.41 z M 264.15,83.3 c 0,4.38 0,13.84 0,13.84 0,0 6.89,-0.05 11.29,-0.05 7.82,0 15.29,-3.43 15.29,-13.49 0,-10.85 -6.49,-14.07 -15.49,-14.07 -3.42,-0.04 -11.1,-0.02 -11.1,-0.02 0,0 0.01,9.46 0.01,13.79 z"
|
||||||
|
id="path111"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 363.66,110.69 c -5.84,0 -25.88,0.03 -30.07,0.03 -13.35,0 -20.7,-10.65 -20.7,-23.35 0,-10 -0.02,-30.7 -0.02,-30.7 h 15.07 c 0,0 -0.02,20.23 -0.02,30.02 0,7.35 3.55,10.18 14.49,10.18 1.5,0 5.98,0 5.98,0 l -0.02,-40.2 h 15.28 c 0.01,0 0.01,47.69 0.01,54.02 z"
|
||||||
|
id="path113"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 424.82,110.71 c -14.74,0 -27.5,-12.05 -27.03,-27.99 0.41,-13.8 11.85,-26.55 28.08,-26.06 13.73,0.42 26.49,11.83 25.98,28.07 -0.46,13.94 -11.88,25.89 -27.03,25.98 z m 13.17,-26.96 c -0.07,-7.37 -5.89,-13.03 -12.83,-13.21 -7.77,-0.2 -13.47,5.94 -13.63,12.82 -0.19,7.74 5.95,13.44 12.85,13.61 7.66,0.19 13.58,-5.97 13.61,-13.22 z"
|
||||||
|
id="path115"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 373.64,23.94 h 15.46 c 0,28.32 0.01,58.47 0,86.77 -4.87,0.01 -15.48,0.02 -15.48,0.02 0.03,-14.16 0.02,-86.79 0.02,-86.79 z"
|
||||||
|
id="path117"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><g
|
||||||
|
id="Sketch_00000163793952748931256020000003875778274186330264_"
|
||||||
|
transform="matrix(1,0,0,-1,28.56,28.56)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548">
|
||||||
|
<path
|
||||||
|
d="m 51,20.74 v -6.47 c 26.84,-1.61 48.25,-23.02 49.86,-49.86 h 6.47 v -6.38 h -6.47 C 99.25,-68.82 77.84,-90.23 51,-91.85 v -6.47 h -6.38 v 6.47 c -26.84,1.62 -48.25,23.03 -49.86,49.87 v 0 h -6.47 v 6.38 h 6.47 c 1.61,26.84 23.02,48.25 49.86,49.86 v 6.47 H 51 M 44.62,7.87 C 21.3,6.28 2.74,-12.28 1.15,-35.6 H 30.8 v -6.38 H 1.15 C 2.74,-65.3 21.3,-83.86 44.62,-85.45 v 10.52 H 51 v -10.52 c 23.32,1.59 41.88,20.16 43.47,43.47 H 83.95 v 6.38 H 94.47 C 92.88,-12.28 74.32,6.28 51,7.87 V -21.78 H 44.62 V 7.87"
|
||||||
|
id="path119"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" />
|
||||||
|
<path
|
||||||
|
id="Sketch_w0002_00000062871477408809884110000011827936560669940638_"
|
||||||
|
d="m 37.18,-35.6 v -6.38 h 7.44 v -7.44 H 51 v 7.44 h 7.44 v 6.38 H 51 v 7.44 h -6.38 v -7.44 h -7.44"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" />
|
||||||
|
</g><path
|
||||||
|
d="m 451.50118,52.563202 v 7.19 h -1.65 v -7.19 h -2.6 v -1.34 h 6.88 v 1.34 z"
|
||||||
|
id="path123"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 457.89118,54.423202 0.92,-3.21 h 2.04 v 8.53 h -1.51 v -2.53 l 0.07,-3.99 -1.12,3.7 h -0.81 l -1,-3.54 0.07,3.83 v 2.53 h -1.51 v -8.53 h 2.04 z"
|
||||||
|
id="path125"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /></g><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:9.87778px;line-height:1.25;font-family:Figtree;-inkscape-font-specification:Figtree;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="139.74637"
|
||||||
|
y="147.32704"
|
||||||
|
id="text13-4"
|
||||||
|
inkscape:label="text13"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan13-3"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.87778px;font-family:Figtree;-inkscape-font-specification:'Figtree Semi-Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="139.74637"
|
||||||
|
y="147.32704">24</tspan></text><g
|
||||||
|
id="g16-54"
|
||||||
|
transform="translate(30.16379,-1.3948638)"
|
||||||
|
inkscape:label="g16"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect13-9"
|
||||||
|
width="0.74058235"
|
||||||
|
height="2.7259381"
|
||||||
|
x="104.75137"
|
||||||
|
y="136.7804" /><path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 105.14794,135.13747 -1.10769,1.68203 2.13332,-0.0227 z"
|
||||||
|
id="path16-17" /></g><g
|
||||||
|
id="g16-5-5"
|
||||||
|
transform="matrix(1,0,0,-1,30.164242,295.11049)"><rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:square;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect13-2-5"
|
||||||
|
width="0.74058235"
|
||||||
|
height="2.7259381"
|
||||||
|
x="104.75137"
|
||||||
|
y="136.7804" /><path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 105.14794,135.13747 -1.10769,1.68203 2.13332,-0.0227 z"
|
||||||
|
id="path16-1-4" /></g><g
|
||||||
|
id="g2-1"
|
||||||
|
transform="matrix(0,-0.01032805,0.01032109,0,115.2221,130.88412)"
|
||||||
|
style="stroke:#ff00ed;stroke-width:25.6266;stroke-opacity:1"><g
|
||||||
|
inkscape:label="0"
|
||||||
|
id="g4-7-8"
|
||||||
|
style="stroke:#ff00ed;stroke-width:25.6266;stroke-opacity:1" /><g
|
||||||
|
inkscape:label="none"
|
||||||
|
id="g5-9-8"
|
||||||
|
style="stroke:#ff00ed;stroke-width:25.6266;stroke-opacity:1" /><g
|
||||||
|
inkscape:label="Sketch055"
|
||||||
|
id="g12-0-3"
|
||||||
|
style="stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill:none;fill-opacity:1"><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m -1104,1276.12 h -864"
|
||||||
|
id="path5-2-5" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m -1968,1276.12 v 432"
|
||||||
|
id="path6-3-2" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="M -1968,1708.12 H -3033.6"
|
||||||
|
id="path7-9-2" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m -3033.6,1708.12 v 2328"
|
||||||
|
id="path8-9-6" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="M -3033.6,4036.12 H -48"
|
||||||
|
id="path9-7-6" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m -48,4036.12 v -2328"
|
||||||
|
id="path10-0-7" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="M -48,1708.12 H -1104"
|
||||||
|
id="path11-3-8" /><path
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:25.6266;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m -1104,1708.12 v -432"
|
||||||
|
id="path12-9-4" /></g></g><g
|
||||||
|
id="g6-1"
|
||||||
|
transform="matrix(0.02194832,0,0,0.02194832,141.2244,175.35855)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548"><path
|
||||||
|
d="M 240.06,67.75 C 239.62,106.83 191.8,126.07 164.7,97.58 148,80.93 148.73,51.63 166.23,35.82 194.01,9.27 240.07,29.3 240.06,67.75 Z m -43.83,-30.1 c -16.75,0.14 -29.36,13.24 -29.85,28.73 0.59,41.25 57.63,40.38 59.73,2.2 0.53,-17.61 -13.49,-30.9 -29.88,-30.93 z"
|
||||||
|
id="path109-7"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 248.69,99.76 c 0,-14.11 0,-43.09 0,-43.09 0,0 18.2,0.01 26.84,0 18.5,0 28.42,12.51 28.42,26.65 0,15.46 -9.98,27.38 -26.54,27.38 -2.84,0 -13.28,0 -13.28,0 l 0.02,32.45 -15.48,0.02 c 0,0 0.02,-29.23 0.02,-43.41 z M 264.15,83.3 c 0,4.38 0,13.84 0,13.84 0,0 6.89,-0.05 11.29,-0.05 7.82,0 15.29,-3.43 15.29,-13.49 0,-10.85 -6.49,-14.07 -15.49,-14.07 -3.42,-0.04 -11.1,-0.02 -11.1,-0.02 0,0 0.01,9.46 0.01,13.79 z"
|
||||||
|
id="path111-1"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 363.66,110.69 c -5.84,0 -25.88,0.03 -30.07,0.03 -13.35,0 -20.7,-10.65 -20.7,-23.35 0,-10 -0.02,-30.7 -0.02,-30.7 h 15.07 c 0,0 -0.02,20.23 -0.02,30.02 0,7.35 3.55,10.18 14.49,10.18 1.5,0 5.98,0 5.98,0 l -0.02,-40.2 h 15.28 c 0.01,0 0.01,47.69 0.01,54.02 z"
|
||||||
|
id="path113-8"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 424.82,110.71 c -14.74,0 -27.5,-12.05 -27.03,-27.99 0.41,-13.8 11.85,-26.55 28.08,-26.06 13.73,0.42 26.49,11.83 25.98,28.07 -0.46,13.94 -11.88,25.89 -27.03,25.98 z m 13.17,-26.96 c -0.07,-7.37 -5.89,-13.03 -12.83,-13.21 -7.77,-0.2 -13.47,5.94 -13.63,12.82 -0.19,7.74 5.95,13.44 12.85,13.61 7.66,0.19 13.58,-5.97 13.61,-13.22 z"
|
||||||
|
id="path115-7"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 373.64,23.94 h 15.46 c 0,28.32 0.01,58.47 0,86.77 -4.87,0.01 -15.48,0.02 -15.48,0.02 0.03,-14.16 0.02,-86.79 0.02,-86.79 z"
|
||||||
|
id="path117-8"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><g
|
||||||
|
id="Sketch_00000163793952748931256020000003875778274186330264_-7"
|
||||||
|
transform="matrix(1,0,0,-1,28.56,28.56)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548">
|
||||||
|
<path
|
||||||
|
d="m 51,20.74 v -6.47 c 26.84,-1.61 48.25,-23.02 49.86,-49.86 h 6.47 v -6.38 h -6.47 C 99.25,-68.82 77.84,-90.23 51,-91.85 v -6.47 h -6.38 v 6.47 c -26.84,1.62 -48.25,23.03 -49.86,49.87 v 0 h -6.47 v 6.38 h 6.47 c 1.61,26.84 23.02,48.25 49.86,49.86 v 6.47 H 51 M 44.62,7.87 C 21.3,6.28 2.74,-12.28 1.15,-35.6 H 30.8 v -6.38 H 1.15 C 2.74,-65.3 21.3,-83.86 44.62,-85.45 v 10.52 H 51 v -10.52 c 23.32,1.59 41.88,20.16 43.47,43.47 H 83.95 v 6.38 H 94.47 C 92.88,-12.28 74.32,6.28 51,7.87 V -21.78 H 44.62 V 7.87"
|
||||||
|
id="path119-7"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" />
|
||||||
|
<path
|
||||||
|
id="Sketch_w0002_00000062871477408809884110000011827936560669940638_-4"
|
||||||
|
d="m 37.18,-35.6 v -6.38 h 7.44 v -7.44 H 51 v 7.44 h 7.44 v 6.38 H 51 v 7.44 h -6.38 v -7.44 h -7.44"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" />
|
||||||
|
</g><path
|
||||||
|
d="m 451.50118,52.563202 v 7.19 h -1.65 v -7.19 h -2.6 v -1.34 h 6.88 v 1.34 z"
|
||||||
|
id="path123-4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /><path
|
||||||
|
d="m 457.89118,54.423202 0.92,-3.21 h 2.04 v 8.53 h -1.51 v -2.53 l 0.07,-3.99 -1.12,3.7 h -0.81 l -1,-3.54 0.07,3.83 v 2.53 h -1.51 v -8.53 h 2.04 z"
|
||||||
|
id="path125-9"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:12.0548" /></g><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:7.05556px;line-height:1.25;font-family:Figtree;-inkscape-font-specification:Figtree;stroke-width:0.264583"
|
||||||
|
x="139.31926"
|
||||||
|
y="152.73729"
|
||||||
|
id="text1"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:7.05556px;font-family:Figtree;-inkscape-font-specification:'Figtree Semi-Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="139.31926"
|
||||||
|
y="152.73729">mm</tspan></text><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:5.64444px;line-height:1.25;font-family:Figtree;-inkscape-font-specification:Figtree;stroke-width:0.264583"
|
||||||
|
x="110.2211"
|
||||||
|
y="152.23836"
|
||||||
|
id="text1-8"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1-0"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:5.64444px;font-family:Figtree;-inkscape-font-specification:'Figtree Semi-Bold';fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||||
|
x="110.2211"
|
||||||
|
y="152.23836">mm</tspan></text></g></svg>
|
||||||
|
After Width: | Height: | Size: 24 KiB |
@@ -1,531 +0,0 @@
|
|||||||
ISO-10303-21;
|
|
||||||
HEADER;
|
|
||||||
/* Generated by software containing ST-Developer
|
|
||||||
* from STEP Tools, Inc. (www.steptools.com)
|
|
||||||
*/
|
|
||||||
|
|
||||||
FILE_DESCRIPTION(
|
|
||||||
/* description */ (''),
|
|
||||||
/* implementation_level */ '2;1');
|
|
||||||
|
|
||||||
FILE_NAME(
|
|
||||||
/* name */ '/Users/stephen/feeder/cad/rev06/right-angle-n20.step',
|
|
||||||
/* time_stamp */ '2022-07-08T14:54:03-04:00',
|
|
||||||
/* author */ (''),
|
|
||||||
/* organization */ (''),
|
|
||||||
/* preprocessor_version */ 'ST-DEVELOPER v19',
|
|
||||||
/* originating_system */ 'Autodesk Translation Framework v11.7.0.108',
|
|
||||||
/* authorisation */ '');
|
|
||||||
|
|
||||||
FILE_SCHEMA (('AUTOMOTIVE_DESIGN { 1 0 10303 214 3 1 1 }'));
|
|
||||||
ENDSEC;
|
|
||||||
|
|
||||||
DATA;
|
|
||||||
#10=MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',(#13),#444);
|
|
||||||
#11=SHAPE_REPRESENTATION_RELATIONSHIP('SRR','None',#451,#12);
|
|
||||||
#12=ADVANCED_BREP_SHAPE_REPRESENTATION('',(#14),#443);
|
|
||||||
#13=STYLED_ITEM('',(#461),#14);
|
|
||||||
#14=MANIFOLD_SOLID_BREP('Body1',#258);
|
|
||||||
#15=FACE_BOUND('',#53,.T.);
|
|
||||||
#16=PLANE('',#276);
|
|
||||||
#17=PLANE('',#277);
|
|
||||||
#18=PLANE('',#278);
|
|
||||||
#19=PLANE('',#279);
|
|
||||||
#20=PLANE('',#280);
|
|
||||||
#21=PLANE('',#285);
|
|
||||||
#22=PLANE('',#287);
|
|
||||||
#23=PLANE('',#288);
|
|
||||||
#24=PLANE('',#289);
|
|
||||||
#25=PLANE('',#290);
|
|
||||||
#26=PLANE('',#291);
|
|
||||||
#27=PLANE('',#292);
|
|
||||||
#28=PLANE('',#295);
|
|
||||||
#29=FACE_OUTER_BOUND('',#45,.T.);
|
|
||||||
#30=FACE_OUTER_BOUND('',#46,.T.);
|
|
||||||
#31=FACE_OUTER_BOUND('',#47,.T.);
|
|
||||||
#32=FACE_OUTER_BOUND('',#48,.T.);
|
|
||||||
#33=FACE_OUTER_BOUND('',#49,.T.);
|
|
||||||
#34=FACE_OUTER_BOUND('',#50,.T.);
|
|
||||||
#35=FACE_OUTER_BOUND('',#51,.T.);
|
|
||||||
#36=FACE_OUTER_BOUND('',#52,.T.);
|
|
||||||
#37=FACE_OUTER_BOUND('',#54,.T.);
|
|
||||||
#38=FACE_OUTER_BOUND('',#55,.T.);
|
|
||||||
#39=FACE_OUTER_BOUND('',#56,.T.);
|
|
||||||
#40=FACE_OUTER_BOUND('',#57,.T.);
|
|
||||||
#41=FACE_OUTER_BOUND('',#58,.T.);
|
|
||||||
#42=FACE_OUTER_BOUND('',#59,.T.);
|
|
||||||
#43=FACE_OUTER_BOUND('',#60,.T.);
|
|
||||||
#44=FACE_OUTER_BOUND('',#61,.T.);
|
|
||||||
#45=EDGE_LOOP('',(#173,#174,#175,#176,#177));
|
|
||||||
#46=EDGE_LOOP('',(#178,#179,#180,#181));
|
|
||||||
#47=EDGE_LOOP('',(#182,#183,#184,#185));
|
|
||||||
#48=EDGE_LOOP('',(#186,#187,#188));
|
|
||||||
#49=EDGE_LOOP('',(#189,#190,#191));
|
|
||||||
#50=EDGE_LOOP('',(#192,#193,#194,#195));
|
|
||||||
#51=EDGE_LOOP('',(#196,#197,#198,#199,#200));
|
|
||||||
#52=EDGE_LOOP('',(#201,#202,#203,#204,#205,#206));
|
|
||||||
#53=EDGE_LOOP('',(#207));
|
|
||||||
#54=EDGE_LOOP('',(#208,#209,#210,#211,#212,#213));
|
|
||||||
#55=EDGE_LOOP('',(#214,#215,#216,#217,#218));
|
|
||||||
#56=EDGE_LOOP('',(#219,#220,#221));
|
|
||||||
#57=EDGE_LOOP('',(#222,#223,#224));
|
|
||||||
#58=EDGE_LOOP('',(#225,#226,#227,#228));
|
|
||||||
#59=EDGE_LOOP('',(#229,#230,#231,#232,#233));
|
|
||||||
#60=EDGE_LOOP('',(#234,#235,#236,#237));
|
|
||||||
#61=EDGE_LOOP('',(#238));
|
|
||||||
#62=CIRCLE('',#273,6.);
|
|
||||||
#63=CIRCLE('',#274,6.);
|
|
||||||
#64=CIRCLE('',#275,6.);
|
|
||||||
#65=CIRCLE('',#281,6.);
|
|
||||||
#66=CIRCLE('',#283,6.);
|
|
||||||
#67=CIRCLE('',#284,6.);
|
|
||||||
#68=CIRCLE('',#286,1.5);
|
|
||||||
#69=CIRCLE('',#294,1.5);
|
|
||||||
#70=LINE('',#375,#95);
|
|
||||||
#71=LINE('',#381,#96);
|
|
||||||
#72=LINE('',#385,#97);
|
|
||||||
#73=LINE('',#387,#98);
|
|
||||||
#74=LINE('',#388,#99);
|
|
||||||
#75=LINE('',#391,#100);
|
|
||||||
#76=LINE('',#393,#101);
|
|
||||||
#77=LINE('',#394,#102);
|
|
||||||
#78=LINE('',#397,#103);
|
|
||||||
#79=LINE('',#398,#104);
|
|
||||||
#80=LINE('',#401,#105);
|
|
||||||
#81=LINE('',#402,#106);
|
|
||||||
#82=LINE('',#411,#107);
|
|
||||||
#83=LINE('',#413,#108);
|
|
||||||
#84=LINE('',#415,#109);
|
|
||||||
#85=LINE('',#416,#110);
|
|
||||||
#86=LINE('',#422,#111);
|
|
||||||
#87=LINE('',#423,#112);
|
|
||||||
#88=LINE('',#425,#113);
|
|
||||||
#89=LINE('',#426,#114);
|
|
||||||
#90=LINE('',#428,#115);
|
|
||||||
#91=LINE('',#430,#116);
|
|
||||||
#92=LINE('',#432,#117);
|
|
||||||
#93=LINE('',#434,#118);
|
|
||||||
#94=LINE('',#438,#119);
|
|
||||||
#95=VECTOR('',#300,1.);
|
|
||||||
#96=VECTOR('',#305,1.);
|
|
||||||
#97=VECTOR('',#310,1.);
|
|
||||||
#98=VECTOR('',#311,1.);
|
|
||||||
#99=VECTOR('',#312,1.);
|
|
||||||
#100=VECTOR('',#315,1.);
|
|
||||||
#101=VECTOR('',#316,1.);
|
|
||||||
#102=VECTOR('',#317,1.);
|
|
||||||
#103=VECTOR('',#320,1.);
|
|
||||||
#104=VECTOR('',#321,1.);
|
|
||||||
#105=VECTOR('',#324,1.);
|
|
||||||
#106=VECTOR('',#325,1.);
|
|
||||||
#107=VECTOR('',#338,1.);
|
|
||||||
#108=VECTOR('',#339,1.);
|
|
||||||
#109=VECTOR('',#340,1.);
|
|
||||||
#110=VECTOR('',#341,1.);
|
|
||||||
#111=VECTOR('',#346,1.);
|
|
||||||
#112=VECTOR('',#347,1.);
|
|
||||||
#113=VECTOR('',#348,1.);
|
|
||||||
#114=VECTOR('',#349,1.);
|
|
||||||
#115=VECTOR('',#352,1.);
|
|
||||||
#116=VECTOR('',#355,1.);
|
|
||||||
#117=VECTOR('',#358,1.);
|
|
||||||
#118=VECTOR('',#361,1.);
|
|
||||||
#119=VECTOR('',#366,1.5);
|
|
||||||
#120=VERTEX_POINT('',#373);
|
|
||||||
#121=VERTEX_POINT('',#374);
|
|
||||||
#122=VERTEX_POINT('',#376);
|
|
||||||
#123=VERTEX_POINT('',#378);
|
|
||||||
#124=VERTEX_POINT('',#380);
|
|
||||||
#125=VERTEX_POINT('',#384);
|
|
||||||
#126=VERTEX_POINT('',#386);
|
|
||||||
#127=VERTEX_POINT('',#390);
|
|
||||||
#128=VERTEX_POINT('',#392);
|
|
||||||
#129=VERTEX_POINT('',#396);
|
|
||||||
#130=VERTEX_POINT('',#400);
|
|
||||||
#131=VERTEX_POINT('',#406);
|
|
||||||
#132=VERTEX_POINT('',#410);
|
|
||||||
#133=VERTEX_POINT('',#412);
|
|
||||||
#134=VERTEX_POINT('',#414);
|
|
||||||
#135=VERTEX_POINT('',#417);
|
|
||||||
#136=VERTEX_POINT('',#420);
|
|
||||||
#137=VERTEX_POINT('',#421);
|
|
||||||
#138=VERTEX_POINT('',#424);
|
|
||||||
#139=VERTEX_POINT('',#437);
|
|
||||||
#140=EDGE_CURVE('',#120,#121,#70,.T.);
|
|
||||||
#141=EDGE_CURVE('',#120,#122,#62,.T.);
|
|
||||||
#142=EDGE_CURVE('',#122,#123,#63,.T.);
|
|
||||||
#143=EDGE_CURVE('',#123,#124,#71,.T.);
|
|
||||||
#144=EDGE_CURVE('',#121,#124,#64,.T.);
|
|
||||||
#145=EDGE_CURVE('',#121,#125,#72,.T.);
|
|
||||||
#146=EDGE_CURVE('',#126,#125,#73,.T.);
|
|
||||||
#147=EDGE_CURVE('',#120,#126,#74,.T.);
|
|
||||||
#148=EDGE_CURVE('',#123,#127,#75,.T.);
|
|
||||||
#149=EDGE_CURVE('',#127,#128,#76,.T.);
|
|
||||||
#150=EDGE_CURVE('',#124,#128,#77,.T.);
|
|
||||||
#151=EDGE_CURVE('',#122,#129,#78,.T.);
|
|
||||||
#152=EDGE_CURVE('',#129,#120,#79,.T.);
|
|
||||||
#153=EDGE_CURVE('',#130,#122,#80,.T.);
|
|
||||||
#154=EDGE_CURVE('',#123,#130,#81,.T.);
|
|
||||||
#155=EDGE_CURVE('',#128,#125,#65,.T.);
|
|
||||||
#156=EDGE_CURVE('',#127,#131,#66,.T.);
|
|
||||||
#157=EDGE_CURVE('',#131,#126,#67,.T.);
|
|
||||||
#158=EDGE_CURVE('',#129,#132,#82,.T.);
|
|
||||||
#159=EDGE_CURVE('',#126,#133,#83,.T.);
|
|
||||||
#160=EDGE_CURVE('',#133,#134,#84,.T.);
|
|
||||||
#161=EDGE_CURVE('',#132,#134,#85,.T.);
|
|
||||||
#162=EDGE_CURVE('',#135,#135,#68,.T.);
|
|
||||||
#163=EDGE_CURVE('',#136,#137,#86,.T.);
|
|
||||||
#164=EDGE_CURVE('',#136,#127,#87,.T.);
|
|
||||||
#165=EDGE_CURVE('',#130,#138,#88,.T.);
|
|
||||||
#166=EDGE_CURVE('',#137,#138,#89,.T.);
|
|
||||||
#167=EDGE_CURVE('',#138,#132,#90,.T.);
|
|
||||||
#168=EDGE_CURVE('',#131,#136,#91,.T.);
|
|
||||||
#169=EDGE_CURVE('',#133,#131,#92,.T.);
|
|
||||||
#170=EDGE_CURVE('',#134,#137,#93,.T.);
|
|
||||||
#171=EDGE_CURVE('',#135,#139,#94,.T.);
|
|
||||||
#172=EDGE_CURVE('',#139,#139,#69,.T.);
|
|
||||||
#173=ORIENTED_EDGE('',*,*,#140,.F.);
|
|
||||||
#174=ORIENTED_EDGE('',*,*,#141,.T.);
|
|
||||||
#175=ORIENTED_EDGE('',*,*,#142,.T.);
|
|
||||||
#176=ORIENTED_EDGE('',*,*,#143,.T.);
|
|
||||||
#177=ORIENTED_EDGE('',*,*,#144,.F.);
|
|
||||||
#178=ORIENTED_EDGE('',*,*,#140,.T.);
|
|
||||||
#179=ORIENTED_EDGE('',*,*,#145,.T.);
|
|
||||||
#180=ORIENTED_EDGE('',*,*,#146,.F.);
|
|
||||||
#181=ORIENTED_EDGE('',*,*,#147,.F.);
|
|
||||||
#182=ORIENTED_EDGE('',*,*,#143,.F.);
|
|
||||||
#183=ORIENTED_EDGE('',*,*,#148,.T.);
|
|
||||||
#184=ORIENTED_EDGE('',*,*,#149,.T.);
|
|
||||||
#185=ORIENTED_EDGE('',*,*,#150,.F.);
|
|
||||||
#186=ORIENTED_EDGE('',*,*,#151,.F.);
|
|
||||||
#187=ORIENTED_EDGE('',*,*,#141,.F.);
|
|
||||||
#188=ORIENTED_EDGE('',*,*,#152,.F.);
|
|
||||||
#189=ORIENTED_EDGE('',*,*,#153,.F.);
|
|
||||||
#190=ORIENTED_EDGE('',*,*,#154,.F.);
|
|
||||||
#191=ORIENTED_EDGE('',*,*,#142,.F.);
|
|
||||||
#192=ORIENTED_EDGE('',*,*,#144,.T.);
|
|
||||||
#193=ORIENTED_EDGE('',*,*,#150,.T.);
|
|
||||||
#194=ORIENTED_EDGE('',*,*,#155,.T.);
|
|
||||||
#195=ORIENTED_EDGE('',*,*,#145,.F.);
|
|
||||||
#196=ORIENTED_EDGE('',*,*,#149,.F.);
|
|
||||||
#197=ORIENTED_EDGE('',*,*,#156,.T.);
|
|
||||||
#198=ORIENTED_EDGE('',*,*,#157,.T.);
|
|
||||||
#199=ORIENTED_EDGE('',*,*,#146,.T.);
|
|
||||||
#200=ORIENTED_EDGE('',*,*,#155,.F.);
|
|
||||||
#201=ORIENTED_EDGE('',*,*,#158,.F.);
|
|
||||||
#202=ORIENTED_EDGE('',*,*,#152,.T.);
|
|
||||||
#203=ORIENTED_EDGE('',*,*,#147,.T.);
|
|
||||||
#204=ORIENTED_EDGE('',*,*,#159,.T.);
|
|
||||||
#205=ORIENTED_EDGE('',*,*,#160,.T.);
|
|
||||||
#206=ORIENTED_EDGE('',*,*,#161,.F.);
|
|
||||||
#207=ORIENTED_EDGE('',*,*,#162,.T.);
|
|
||||||
#208=ORIENTED_EDGE('',*,*,#163,.F.);
|
|
||||||
#209=ORIENTED_EDGE('',*,*,#164,.T.);
|
|
||||||
#210=ORIENTED_EDGE('',*,*,#148,.F.);
|
|
||||||
#211=ORIENTED_EDGE('',*,*,#154,.T.);
|
|
||||||
#212=ORIENTED_EDGE('',*,*,#165,.T.);
|
|
||||||
#213=ORIENTED_EDGE('',*,*,#166,.F.);
|
|
||||||
#214=ORIENTED_EDGE('',*,*,#165,.F.);
|
|
||||||
#215=ORIENTED_EDGE('',*,*,#153,.T.);
|
|
||||||
#216=ORIENTED_EDGE('',*,*,#151,.T.);
|
|
||||||
#217=ORIENTED_EDGE('',*,*,#158,.T.);
|
|
||||||
#218=ORIENTED_EDGE('',*,*,#167,.F.);
|
|
||||||
#219=ORIENTED_EDGE('',*,*,#156,.F.);
|
|
||||||
#220=ORIENTED_EDGE('',*,*,#164,.F.);
|
|
||||||
#221=ORIENTED_EDGE('',*,*,#168,.F.);
|
|
||||||
#222=ORIENTED_EDGE('',*,*,#157,.F.);
|
|
||||||
#223=ORIENTED_EDGE('',*,*,#169,.F.);
|
|
||||||
#224=ORIENTED_EDGE('',*,*,#159,.F.);
|
|
||||||
#225=ORIENTED_EDGE('',*,*,#161,.T.);
|
|
||||||
#226=ORIENTED_EDGE('',*,*,#170,.T.);
|
|
||||||
#227=ORIENTED_EDGE('',*,*,#166,.T.);
|
|
||||||
#228=ORIENTED_EDGE('',*,*,#167,.T.);
|
|
||||||
#229=ORIENTED_EDGE('',*,*,#160,.F.);
|
|
||||||
#230=ORIENTED_EDGE('',*,*,#169,.T.);
|
|
||||||
#231=ORIENTED_EDGE('',*,*,#168,.T.);
|
|
||||||
#232=ORIENTED_EDGE('',*,*,#163,.T.);
|
|
||||||
#233=ORIENTED_EDGE('',*,*,#170,.F.);
|
|
||||||
#234=ORIENTED_EDGE('',*,*,#162,.F.);
|
|
||||||
#235=ORIENTED_EDGE('',*,*,#171,.T.);
|
|
||||||
#236=ORIENTED_EDGE('',*,*,#172,.F.);
|
|
||||||
#237=ORIENTED_EDGE('',*,*,#171,.F.);
|
|
||||||
#238=ORIENTED_EDGE('',*,*,#172,.T.);
|
|
||||||
#239=CYLINDRICAL_SURFACE('',#272,6.);
|
|
||||||
#240=CYLINDRICAL_SURFACE('',#282,6.);
|
|
||||||
#241=CYLINDRICAL_SURFACE('',#293,1.5);
|
|
||||||
#242=ADVANCED_FACE('',(#29),#239,.T.);
|
|
||||||
#243=ADVANCED_FACE('',(#30),#16,.T.);
|
|
||||||
#244=ADVANCED_FACE('',(#31),#17,.F.);
|
|
||||||
#245=ADVANCED_FACE('',(#32),#18,.F.);
|
|
||||||
#246=ADVANCED_FACE('',(#33),#19,.F.);
|
|
||||||
#247=ADVANCED_FACE('',(#34),#20,.F.);
|
|
||||||
#248=ADVANCED_FACE('',(#35),#240,.T.);
|
|
||||||
#249=ADVANCED_FACE('',(#36,#15),#21,.F.);
|
|
||||||
#250=ADVANCED_FACE('',(#37),#22,.F.);
|
|
||||||
#251=ADVANCED_FACE('',(#38),#23,.F.);
|
|
||||||
#252=ADVANCED_FACE('',(#39),#24,.F.);
|
|
||||||
#253=ADVANCED_FACE('',(#40),#25,.F.);
|
|
||||||
#254=ADVANCED_FACE('',(#41),#26,.T.);
|
|
||||||
#255=ADVANCED_FACE('',(#42),#27,.F.);
|
|
||||||
#256=ADVANCED_FACE('',(#43),#241,.T.);
|
|
||||||
#257=ADVANCED_FACE('',(#44),#28,.T.);
|
|
||||||
#258=CLOSED_SHELL('',(#242,#243,#244,#245,#246,#247,#248,#249,#250,#251,
|
|
||||||
#252,#253,#254,#255,#256,#257));
|
|
||||||
#259=DERIVED_UNIT_ELEMENT(#261,1.);
|
|
||||||
#260=DERIVED_UNIT_ELEMENT(#446,-3.);
|
|
||||||
#261=(
|
|
||||||
MASS_UNIT()
|
|
||||||
NAMED_UNIT(*)
|
|
||||||
SI_UNIT(.KILO.,.GRAM.)
|
|
||||||
);
|
|
||||||
#262=DERIVED_UNIT((#259,#260));
|
|
||||||
#263=MEASURE_REPRESENTATION_ITEM('density measure',
|
|
||||||
POSITIVE_RATIO_MEASURE(7850.),#262);
|
|
||||||
#264=PROPERTY_DEFINITION_REPRESENTATION(#269,#266);
|
|
||||||
#265=PROPERTY_DEFINITION_REPRESENTATION(#270,#267);
|
|
||||||
#266=REPRESENTATION('material name',(#268),#443);
|
|
||||||
#267=REPRESENTATION('density',(#263),#443);
|
|
||||||
#268=DESCRIPTIVE_REPRESENTATION_ITEM('Steel','Steel');
|
|
||||||
#269=PROPERTY_DEFINITION('material property','material name',#453);
|
|
||||||
#270=PROPERTY_DEFINITION('material property','density of part',#453);
|
|
||||||
#271=AXIS2_PLACEMENT_3D('placement',#371,#296,#297);
|
|
||||||
#272=AXIS2_PLACEMENT_3D('',#372,#298,#299);
|
|
||||||
#273=AXIS2_PLACEMENT_3D('',#377,#301,#302);
|
|
||||||
#274=AXIS2_PLACEMENT_3D('',#379,#303,#304);
|
|
||||||
#275=AXIS2_PLACEMENT_3D('',#382,#306,#307);
|
|
||||||
#276=AXIS2_PLACEMENT_3D('',#383,#308,#309);
|
|
||||||
#277=AXIS2_PLACEMENT_3D('',#389,#313,#314);
|
|
||||||
#278=AXIS2_PLACEMENT_3D('',#395,#318,#319);
|
|
||||||
#279=AXIS2_PLACEMENT_3D('',#399,#322,#323);
|
|
||||||
#280=AXIS2_PLACEMENT_3D('',#403,#326,#327);
|
|
||||||
#281=AXIS2_PLACEMENT_3D('',#404,#328,#329);
|
|
||||||
#282=AXIS2_PLACEMENT_3D('',#405,#330,#331);
|
|
||||||
#283=AXIS2_PLACEMENT_3D('',#407,#332,#333);
|
|
||||||
#284=AXIS2_PLACEMENT_3D('',#408,#334,#335);
|
|
||||||
#285=AXIS2_PLACEMENT_3D('',#409,#336,#337);
|
|
||||||
#286=AXIS2_PLACEMENT_3D('',#418,#342,#343);
|
|
||||||
#287=AXIS2_PLACEMENT_3D('',#419,#344,#345);
|
|
||||||
#288=AXIS2_PLACEMENT_3D('',#427,#350,#351);
|
|
||||||
#289=AXIS2_PLACEMENT_3D('',#429,#353,#354);
|
|
||||||
#290=AXIS2_PLACEMENT_3D('',#431,#356,#357);
|
|
||||||
#291=AXIS2_PLACEMENT_3D('',#433,#359,#360);
|
|
||||||
#292=AXIS2_PLACEMENT_3D('',#435,#362,#363);
|
|
||||||
#293=AXIS2_PLACEMENT_3D('',#436,#364,#365);
|
|
||||||
#294=AXIS2_PLACEMENT_3D('',#439,#367,#368);
|
|
||||||
#295=AXIS2_PLACEMENT_3D('',#440,#369,#370);
|
|
||||||
#296=DIRECTION('axis',(0.,0.,1.));
|
|
||||||
#297=DIRECTION('refdir',(1.,0.,0.));
|
|
||||||
#298=DIRECTION('center_axis',(0.,1.,-6.7E-16));
|
|
||||||
#299=DIRECTION('ref_axis',(-1.,4.64982555490714E-29,6.94003814165245E-14));
|
|
||||||
#300=DIRECTION('',(0.,-1.,6.7E-16));
|
|
||||||
#301=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#302=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#303=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#304=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#305=DIRECTION('',(0.,-1.,6.7E-16));
|
|
||||||
#306=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#307=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#308=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
|
||||||
#309=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#310=DIRECTION('',(1.,0.,0.));
|
|
||||||
#311=DIRECTION('',(0.,-1.,6.7E-16));
|
|
||||||
#312=DIRECTION('',(1.,0.,0.));
|
|
||||||
#313=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
|
||||||
#314=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#315=DIRECTION('',(1.,0.,0.));
|
|
||||||
#316=DIRECTION('',(0.,-1.,6.7E-16));
|
|
||||||
#317=DIRECTION('',(1.,0.,0.));
|
|
||||||
#318=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#319=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#320=DIRECTION('',(0.,2.2E-16,1.));
|
|
||||||
#321=DIRECTION('',(1.,0.,0.));
|
|
||||||
#322=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#323=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#324=DIRECTION('',(0.,2.2E-16,1.));
|
|
||||||
#325=DIRECTION('',(-1.,0.,0.));
|
|
||||||
#326=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#327=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#328=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#329=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#330=DIRECTION('center_axis',(0.,1.,-6.7E-16));
|
|
||||||
#331=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#332=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#333=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#334=DIRECTION('center_axis',(0.,-1.,2.2E-16));
|
|
||||||
#335=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#336=DIRECTION('center_axis',(0.,-6.7E-16,-1.));
|
|
||||||
#337=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#338=DIRECTION('',(0.,1.,-6.7E-16));
|
|
||||||
#339=DIRECTION('',(1.,0.,0.));
|
|
||||||
#340=DIRECTION('',(0.,1.,-6.7E-16));
|
|
||||||
#341=DIRECTION('',(1.,0.,0.));
|
|
||||||
#342=DIRECTION('center_axis',(0.,-4.4E-16,-1.));
|
|
||||||
#343=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#344=DIRECTION('center_axis',(0.,6.7E-16,1.));
|
|
||||||
#345=DIRECTION('ref_axis',(-1.,0.,0.));
|
|
||||||
#346=DIRECTION('',(0.,1.,-6.7E-16));
|
|
||||||
#347=DIRECTION('',(-1.,0.,0.));
|
|
||||||
#348=DIRECTION('',(0.,1.,-6.7E-16));
|
|
||||||
#349=DIRECTION('',(-1.,0.,0.));
|
|
||||||
#350=DIRECTION('center_axis',(1.,0.,0.));
|
|
||||||
#351=DIRECTION('ref_axis',(0.,6.7E-16,1.));
|
|
||||||
#352=DIRECTION('',(0.,2.2E-16,1.));
|
|
||||||
#353=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#354=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#355=DIRECTION('',(0.,-2.2E-16,-1.));
|
|
||||||
#356=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#357=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#358=DIRECTION('',(0.,-2.2E-16,-1.));
|
|
||||||
#359=DIRECTION('center_axis',(0.,1.,-4.4E-16));
|
|
||||||
#360=DIRECTION('ref_axis',(0.,4.4E-16,1.));
|
|
||||||
#361=DIRECTION('',(0.,-2.2E-16,-1.));
|
|
||||||
#362=DIRECTION('center_axis',(-1.,0.,0.));
|
|
||||||
#363=DIRECTION('ref_axis',(0.,-6.7E-16,-1.));
|
|
||||||
#364=DIRECTION('center_axis',(0.,-4.4E-16,-1.));
|
|
||||||
#365=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#366=DIRECTION('',(0.,4.4E-16,1.));
|
|
||||||
#367=DIRECTION('center_axis',(0.,2.2E-16,1.));
|
|
||||||
#368=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#369=DIRECTION('center_axis',(0.,2.2E-16,1.));
|
|
||||||
#370=DIRECTION('ref_axis',(1.,0.,0.));
|
|
||||||
#371=CARTESIAN_POINT('',(0.,0.,0.));
|
|
||||||
#372=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#373=CARTESIAN_POINT('',(-3.316624790355,9.E-15,5.));
|
|
||||||
#374=CARTESIAN_POINT('',(-3.316624790355,-17.,5.));
|
|
||||||
#375=CARTESIAN_POINT('',(-3.316624790355,3.33E-15,5.));
|
|
||||||
#376=CARTESIAN_POINT('',(-6.,0.,-1.254291E-8));
|
|
||||||
#377=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#378=CARTESIAN_POINT('',(-3.316624790356,-9.E-15,-5.));
|
|
||||||
#379=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#380=CARTESIAN_POINT('',(-3.316624790356,-17.,-5.));
|
|
||||||
#381=CARTESIAN_POINT('',(-3.316624790356,-3.33E-15,-5.));
|
|
||||||
#382=CARTESIAN_POINT('Origin',(0.,-17.,3.552713678801E-15));
|
|
||||||
#383=CARTESIAN_POINT('Origin',(-3.316624790355,3.33E-15,5.));
|
|
||||||
#384=CARTESIAN_POINT('',(3.316624790355,-17.,5.));
|
|
||||||
#385=CARTESIAN_POINT('',(-3.316624790355,-17.,5.));
|
|
||||||
#386=CARTESIAN_POINT('',(3.316624790355,9.E-15,5.));
|
|
||||||
#387=CARTESIAN_POINT('',(3.316624790355,3.33E-15,5.));
|
|
||||||
#388=CARTESIAN_POINT('',(-3.316624790355,1.11E-15,5.));
|
|
||||||
#389=CARTESIAN_POINT('Origin',(-3.316624790356,-3.33E-15,-5.));
|
|
||||||
#390=CARTESIAN_POINT('',(3.316624790356,-9.E-15,-5.));
|
|
||||||
#391=CARTESIAN_POINT('',(-3.316624790356,-1.11E-15,-5.));
|
|
||||||
#392=CARTESIAN_POINT('',(3.316624790356,-17.,-5.));
|
|
||||||
#393=CARTESIAN_POINT('',(3.316624790356,-3.33E-15,-5.));
|
|
||||||
#394=CARTESIAN_POINT('',(-3.316624790356,-17.,-5.));
|
|
||||||
#395=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#396=CARTESIAN_POINT('',(-6.,7.E-15,5.));
|
|
||||||
#397=CARTESIAN_POINT('',(-6.,-1.11E-15,-5.));
|
|
||||||
#398=CARTESIAN_POINT('',(-6.,1.11E-15,5.));
|
|
||||||
#399=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#400=CARTESIAN_POINT('',(-6.,-7.E-15,-5.));
|
|
||||||
#401=CARTESIAN_POINT('',(-6.,-1.11E-15,-5.));
|
|
||||||
#402=CARTESIAN_POINT('',(6.,-1.11E-15,-5.));
|
|
||||||
#403=CARTESIAN_POINT('Origin',(-7.64E-15,-17.,3.19744231092E-14));
|
|
||||||
#404=CARTESIAN_POINT('Origin',(0.,-17.,3.552713678801E-15));
|
|
||||||
#405=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#406=CARTESIAN_POINT('',(6.,0.,4.E-15));
|
|
||||||
#407=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#408=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#409=CARTESIAN_POINT('Origin',(-6.,3.33E-15,5.));
|
|
||||||
#410=CARTESIAN_POINT('',(-6.,18.,5.));
|
|
||||||
#411=CARTESIAN_POINT('',(-6.,3.33E-15,5.));
|
|
||||||
#412=CARTESIAN_POINT('',(6.,7.E-15,5.));
|
|
||||||
#413=CARTESIAN_POINT('',(-6.,1.11E-15,5.));
|
|
||||||
#414=CARTESIAN_POINT('',(6.,18.,5.));
|
|
||||||
#415=CARTESIAN_POINT('',(6.,3.33E-15,5.));
|
|
||||||
#416=CARTESIAN_POINT('',(-6.,18.,5.));
|
|
||||||
#417=CARTESIAN_POINT('',(-1.5,14.,5.));
|
|
||||||
#418=CARTESIAN_POINT('Origin',(0.,14.,5.));
|
|
||||||
#419=CARTESIAN_POINT('Origin',(6.,-3.33E-15,-5.));
|
|
||||||
#420=CARTESIAN_POINT('',(6.,-7.E-15,-5.));
|
|
||||||
#421=CARTESIAN_POINT('',(6.,18.,-5.));
|
|
||||||
#422=CARTESIAN_POINT('',(6.,-3.33E-15,-5.));
|
|
||||||
#423=CARTESIAN_POINT('',(6.,-1.11E-15,-5.));
|
|
||||||
#424=CARTESIAN_POINT('',(-6.,18.,-5.));
|
|
||||||
#425=CARTESIAN_POINT('',(-6.,-3.33E-15,-5.));
|
|
||||||
#426=CARTESIAN_POINT('',(6.,18.,-5.));
|
|
||||||
#427=CARTESIAN_POINT('Origin',(-6.,-3.33E-15,-5.));
|
|
||||||
#428=CARTESIAN_POINT('',(-6.,18.,-5.));
|
|
||||||
#429=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#430=CARTESIAN_POINT('',(6.,1.11E-15,5.));
|
|
||||||
#431=CARTESIAN_POINT('Origin',(0.,0.,0.));
|
|
||||||
#432=CARTESIAN_POINT('',(6.,1.11E-15,5.));
|
|
||||||
#433=CARTESIAN_POINT('Origin',(0.,18.,-7.105427357601E-15));
|
|
||||||
#434=CARTESIAN_POINT('',(6.,18.,5.));
|
|
||||||
#435=CARTESIAN_POINT('Origin',(6.,3.33E-15,5.));
|
|
||||||
#436=CARTESIAN_POINT('Origin',(0.,14.,-6.22E-15));
|
|
||||||
#437=CARTESIAN_POINT('',(-1.5,14.,13.));
|
|
||||||
#438=CARTESIAN_POINT('',(-1.5,14.,-6.22E-15));
|
|
||||||
#439=CARTESIAN_POINT('Origin',(0.,14.,13.));
|
|
||||||
#440=CARTESIAN_POINT('Origin',(-1.1E-16,14.,13.));
|
|
||||||
#441=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#445,
|
|
||||||
'DISTANCE_ACCURACY_VALUE',
|
|
||||||
'Maximum model space distance between geometric entities at asserted c
|
|
||||||
onnectivities');
|
|
||||||
#442=UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(0.01),#445,
|
|
||||||
'DISTANCE_ACCURACY_VALUE',
|
|
||||||
'Maximum model space distance between geometric entities at asserted c
|
|
||||||
onnectivities');
|
|
||||||
#443=(
|
|
||||||
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
|
||||||
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#441))
|
|
||||||
GLOBAL_UNIT_ASSIGNED_CONTEXT((#445,#447,#448))
|
|
||||||
REPRESENTATION_CONTEXT('','3D')
|
|
||||||
);
|
|
||||||
#444=(
|
|
||||||
GEOMETRIC_REPRESENTATION_CONTEXT(3)
|
|
||||||
GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#442))
|
|
||||||
GLOBAL_UNIT_ASSIGNED_CONTEXT((#445,#447,#448))
|
|
||||||
REPRESENTATION_CONTEXT('','3D')
|
|
||||||
);
|
|
||||||
#445=(
|
|
||||||
LENGTH_UNIT()
|
|
||||||
NAMED_UNIT(*)
|
|
||||||
SI_UNIT(.MILLI.,.METRE.)
|
|
||||||
);
|
|
||||||
#446=(
|
|
||||||
LENGTH_UNIT()
|
|
||||||
NAMED_UNIT(*)
|
|
||||||
SI_UNIT($,.METRE.)
|
|
||||||
);
|
|
||||||
#447=(
|
|
||||||
NAMED_UNIT(*)
|
|
||||||
PLANE_ANGLE_UNIT()
|
|
||||||
SI_UNIT($,.RADIAN.)
|
|
||||||
);
|
|
||||||
#448=(
|
|
||||||
NAMED_UNIT(*)
|
|
||||||
SI_UNIT($,.STERADIAN.)
|
|
||||||
SOLID_ANGLE_UNIT()
|
|
||||||
);
|
|
||||||
#449=SHAPE_DEFINITION_REPRESENTATION(#450,#451);
|
|
||||||
#450=PRODUCT_DEFINITION_SHAPE('',$,#453);
|
|
||||||
#451=SHAPE_REPRESENTATION('',(#271),#443);
|
|
||||||
#452=PRODUCT_DEFINITION_CONTEXT('part definition',#457,'design');
|
|
||||||
#453=PRODUCT_DEFINITION('right-angle-n20-Body',
|
|
||||||
'right-angle-n20-Body v1',#454,#452);
|
|
||||||
#454=PRODUCT_DEFINITION_FORMATION('',$,#459);
|
|
||||||
#455=PRODUCT_RELATED_PRODUCT_CATEGORY('right-angle-n20-Body v1',
|
|
||||||
'right-angle-n20-Body v1',(#459));
|
|
||||||
#456=APPLICATION_PROTOCOL_DEFINITION('international standard',
|
|
||||||
'automotive_design',2009,#457);
|
|
||||||
#457=APPLICATION_CONTEXT(
|
|
||||||
'Core Data for Automotive Mechanical Design Process');
|
|
||||||
#458=PRODUCT_CONTEXT('part definition',#457,'mechanical');
|
|
||||||
#459=PRODUCT('right-angle-n20-Body','right-angle-n20-Body v1',$,(#458));
|
|
||||||
#460=PRESENTATION_STYLE_ASSIGNMENT((#462));
|
|
||||||
#461=PRESENTATION_STYLE_ASSIGNMENT((#463));
|
|
||||||
#462=SURFACE_STYLE_USAGE(.BOTH.,#464);
|
|
||||||
#463=SURFACE_STYLE_USAGE(.BOTH.,#465);
|
|
||||||
#464=SURFACE_SIDE_STYLE('',(#466));
|
|
||||||
#465=SURFACE_SIDE_STYLE('',(#467));
|
|
||||||
#466=SURFACE_STYLE_FILL_AREA(#468);
|
|
||||||
#467=SURFACE_STYLE_FILL_AREA(#469);
|
|
||||||
#468=FILL_AREA_STYLE('Steel - Satin',(#470));
|
|
||||||
#469=FILL_AREA_STYLE('Opaque(204,204,204)',(#471));
|
|
||||||
#470=FILL_AREA_STYLE_COLOUR('Steel - Satin',#472);
|
|
||||||
#471=FILL_AREA_STYLE_COLOUR('Opaque(204,204,204)',#473);
|
|
||||||
#472=COLOUR_RGB('Steel - Satin',0.627450980392157,0.627450980392157,0.627450980392157);
|
|
||||||
#473=COLOUR_RGB('Opaque(204,204,204)',0.8,0.8,0.8);
|
|
||||||
ENDSEC;
|
|
||||||
END-ISO-10303-21;
|
|
||||||
@@ -1,66 +1,772 @@
|
|||||||
(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor)
|
(kicad_symbol_lib
|
||||||
(symbol "DS28E05" (in_bom yes) (on_board yes)
|
(version 20241209)
|
||||||
(property "Reference" "U" (id 0) (at -6.35 3.81 0)
|
(generator "kicad_symbol_editor")
|
||||||
(effects (font (size 1.27 1.27)))
|
(generator_version "9.0")
|
||||||
)
|
(symbol "AP2210"
|
||||||
(property "Value" "DS28E05" (id 1) (at 0 -1.27 0)
|
(exclude_from_sim no)
|
||||||
(effects (font (size 1.27 1.27)))
|
(in_bom yes)
|
||||||
)
|
(on_board yes)
|
||||||
(property "Footprint" "" (id 2) (at 0 0 0)
|
(property "Reference" "U"
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
(at 0 -9.144 0)
|
||||||
)
|
(effects
|
||||||
(property "Datasheet" "" (id 3) (at 0 0 0)
|
(font
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
(size 1.27 1.27)
|
||||||
)
|
)
|
||||||
(symbol "DS28E05_0_1"
|
)
|
||||||
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
|
)
|
||||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
(property "Value" "AP2210"
|
||||||
(fill (type none))
|
(at 0 8.89 0)
|
||||||
)
|
(effects
|
||||||
)
|
(font
|
||||||
(symbol "DS28E05_1_1"
|
(size 1.27 1.27)
|
||||||
(pin passive line (at -6.35 -7.62 90) (length 2.54)
|
)
|
||||||
(name "IO" (effects (font (size 1.27 1.27))))
|
)
|
||||||
(number "1" (effects (font (size 1.27 1.27))))
|
)
|
||||||
)
|
(property "Footprint" ""
|
||||||
(pin passive line (at 6.35 -7.62 90) (length 2.54)
|
(at 0 0 0)
|
||||||
(name "NC" (effects (font (size 1.27 1.27))))
|
(effects
|
||||||
(number "2" (effects (font (size 1.27 1.27))))
|
(font
|
||||||
)
|
(size 1.27 1.27)
|
||||||
(pin passive line (at 0 7.62 270) (length 2.54)
|
)
|
||||||
(name "GND" (effects (font (size 1.27 1.27))))
|
(hide yes)
|
||||||
(number "3" (effects (font (size 1.27 1.27))))
|
)
|
||||||
)
|
)
|
||||||
)
|
(property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2412251014_Diodes-Incorporated-AP2210K-3-3TRG1_C176959.pdf"
|
||||||
)
|
(at 0.254 13.462 0)
|
||||||
(symbol "DS28E07" (in_bom yes) (on_board yes)
|
(effects
|
||||||
(property "Reference" "U" (id 0) (at 0 -3.81 0)
|
(font
|
||||||
(effects (font (size 1.27 1.27)))
|
(size 1.27 1.27)
|
||||||
)
|
)
|
||||||
(property "Value" "DS28E07" (id 1) (at 0 -1.27 0)
|
(hide yes)
|
||||||
(effects (font (size 1.27 1.27)))
|
)
|
||||||
)
|
)
|
||||||
(property "Footprint" "" (id 2) (at -3.81 0 0)
|
(property "Description" ""
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
(at 0 0 0)
|
||||||
)
|
(effects
|
||||||
(property "Datasheet" "" (id 3) (at -3.81 0 0)
|
(font
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
(size 1.27 1.27)
|
||||||
)
|
)
|
||||||
(symbol "DS28E07_0_1"
|
(hide yes)
|
||||||
(rectangle (start -6.35 5.08) (end 6.35 0)
|
)
|
||||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
)
|
||||||
(fill (type none))
|
(symbol "AP2210_1_1"
|
||||||
)
|
(rectangle
|
||||||
)
|
(start -6.35 7.62)
|
||||||
(symbol "DS28E07_1_1"
|
(end 6.35 -7.62)
|
||||||
(pin unspecified line (at -8.89 2.54 0) (length 2.54)
|
(stroke
|
||||||
(name "GND" (effects (font (size 1.27 1.27))))
|
(width 0)
|
||||||
(number "1" (effects (font (size 1.27 1.27))))
|
(type solid)
|
||||||
)
|
)
|
||||||
(pin unspecified line (at 8.89 2.54 180) (length 2.54)
|
(fill
|
||||||
(name "IO" (effects (font (size 1.27 1.27))))
|
(type background)
|
||||||
(number "2" (effects (font (size 1.27 1.27))))
|
)
|
||||||
)
|
)
|
||||||
)
|
(pin input line
|
||||||
)
|
(at -8.89 5.08 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "VIN"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -8.89 0 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "GND"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -8.89 -5.08 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "EN"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "3"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 8.89 5.08 180)
|
||||||
|
(length 2.54)
|
||||||
|
(name "VOUT"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "5"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 8.89 -5.08 180)
|
||||||
|
(length 2.54)
|
||||||
|
(name "BYP/ADJ"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "4"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
|
(symbol "DRV5053VAQDBZR"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(property "Reference" "U"
|
||||||
|
(at 4.318 5.334 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "Package_TO_SOT_SMD:SOT-23"
|
||||||
|
(at -0.508 -9.906 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/drv5053.pdf"
|
||||||
|
(at -0.254 -14.478 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "Analog-Bipolar Hall Effect Sensor"
|
||||||
|
(at 0 -12.192 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "DRV5053VAQDBZR_1_1"
|
||||||
|
(rectangle
|
||||||
|
(start -6.35 7.366)
|
||||||
|
(end 6.35 -7.366)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type solid)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type background)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin power_in line
|
||||||
|
(at -8.89 3.81 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "VCC"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin power_in line
|
||||||
|
(at -8.89 -5.08 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "GND"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "3"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin output line
|
||||||
|
(at 8.89 0 180)
|
||||||
|
(length 2.54)
|
||||||
|
(name "OUT"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
|
(symbol "DS28E05"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(property "Reference" "U"
|
||||||
|
(at -6.35 3.81 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "DS28E05"
|
||||||
|
(at 0 -1.27 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" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "DS28E05_0_1"
|
||||||
|
(rectangle
|
||||||
|
(start -7.62 5.08)
|
||||||
|
(end 7.62 -5.08)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type none)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "DS28E05_1_1"
|
||||||
|
(pin passive line
|
||||||
|
(at -6.35 -7.62 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "IO"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin passive line
|
||||||
|
(at 0 7.62 270)
|
||||||
|
(length 2.54)
|
||||||
|
(name "GND"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "3"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin passive line
|
||||||
|
(at 6.35 -7.62 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "NC"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
|
(symbol "DS28E07"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(property "Reference" "U"
|
||||||
|
(at 0 -3.81 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "DS28E07"
|
||||||
|
(at 0 -1.27 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" ""
|
||||||
|
(at -3.81 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" ""
|
||||||
|
(at -3.81 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "DS28E07_0_1"
|
||||||
|
(rectangle
|
||||||
|
(start -6.35 5.08)
|
||||||
|
(end 6.35 0)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type none)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "DS28E07_1_1"
|
||||||
|
(pin unspecified line
|
||||||
|
(at -8.89 2.54 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "GND"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin unspecified line
|
||||||
|
(at 8.89 2.54 180)
|
||||||
|
(length 2.54)
|
||||||
|
(name "IO"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
|
(symbol "MHS110FRGBCT"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(property "Reference" "U"
|
||||||
|
(at 11.176 -5.842 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "MHS110FRGBCT"
|
||||||
|
(at 0 11.176 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "index:MHS110FRGBCT"
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2003172139_MEIHUA-MHS110FRGBCT_C496820.pdf"
|
||||||
|
(at 0.762 14.478 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "MHS110FRGBCT_1_1"
|
||||||
|
(polyline
|
||||||
|
(pts
|
||||||
|
(xy -8.89 0) (xy -12.7 0) (xy -12.7 -3.81) (xy 12.7 -3.81) (xy 12.7 0) (xy 8.89 0)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type solid)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type background)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(arc
|
||||||
|
(start -10.16 0)
|
||||||
|
(mid 0 10.16)
|
||||||
|
(end 10.16 0)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type solid)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type background)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -7.62 -6.35 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "RED"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "4"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -2.54 -6.35 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "GREEN"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "3"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 2.54 -6.35 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "BLUE"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 7.62 -6.35 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "ANODE"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
|
(symbol "SKTDLDE010"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(property "Reference" "SW"
|
||||||
|
(at 1.524 17.78 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "SKTDLDE010"
|
||||||
|
(at 5.334 15.748 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "feeder:SKTDLDE010"
|
||||||
|
(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" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(symbol "SKTDLDE010_1_1"
|
||||||
|
(rectangle
|
||||||
|
(start 0 14.732)
|
||||||
|
(end 8.89 0)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type solid)
|
||||||
|
)
|
||||||
|
(fill
|
||||||
|
(type background)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -2.54 12.7 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "TERM1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at -2.54 10.16 0)
|
||||||
|
(length 2.54)
|
||||||
|
(name "TERM2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 2.54 -2.54 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "MNT1"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "3"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin input line
|
||||||
|
(at 6.35 -2.54 90)
|
||||||
|
(length 2.54)
|
||||||
|
(name "MNT2"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(number "4"
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,216 @@
|
|||||||
|
(footprint "SKTDLDE010"
|
||||||
|
(version 20241229)
|
||||||
|
(generator "pcbnew")
|
||||||
|
(generator_version "9.0")
|
||||||
|
(layer "F.Cu")
|
||||||
|
(property "Reference" "REF**"
|
||||||
|
(at 0 2.95 0)
|
||||||
|
(unlocked yes)
|
||||||
|
(layer "F.SilkS")
|
||||||
|
(uuid "da8bd078-0bfc-43d2-ab7f-63cdd99d3f01")
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1 1)
|
||||||
|
(thickness 0.15)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "SKTDLDE010"
|
||||||
|
(at 0 4.4 0)
|
||||||
|
(unlocked yes)
|
||||||
|
(layer "F.Fab")
|
||||||
|
(uuid "5ee5f95c-2f1c-4e16-97d6-a052a18eec90")
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1 1)
|
||||||
|
(thickness 0.15)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(unlocked yes)
|
||||||
|
(layer "F.Fab")
|
||||||
|
(hide yes)
|
||||||
|
(uuid "49bc823d-d6e2-4cc9-9be2-ef2bf15c76f7")
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1 1)
|
||||||
|
(thickness 0.15)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" ""
|
||||||
|
(at 0 0 0)
|
||||||
|
(unlocked yes)
|
||||||
|
(layer "F.Fab")
|
||||||
|
(hide yes)
|
||||||
|
(uuid "15d003d4-e2c9-4cf9-9936-f07e994e317e")
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1 1)
|
||||||
|
(thickness 0.15)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(attr board_only exclude_from_pos_files exclude_from_bom)
|
||||||
|
(fp_line
|
||||||
|
(start -1.95 -0.55)
|
||||||
|
(end 1.95 -0.55)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "F.SilkS")
|
||||||
|
(uuid "5d04dfc1-f04a-4d58-90f8-fbd37b229500")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start -1.95 -0.55)
|
||||||
|
(end -1.95 1.4)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "6e4f7414-4202-475b-8a23-9ea9ef147029")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start -1.95 1.4)
|
||||||
|
(end 1.95 1.4)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "04b46dae-ae13-4136-be6e-550f16471a78")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start -0.85 -0.55)
|
||||||
|
(end -1.95 -0.55)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "179458a2-ea84-4ca6-a633-2443970f4437")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start -0.8 -1.5)
|
||||||
|
(end -0.85 -0.55)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "7e4fb2f6-bcf4-4a1b-b20b-82cd66de8fe6")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start -0.8 -1.5)
|
||||||
|
(end 0.8 -1.5)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "8751b100-5821-447d-9f0b-b51d1e836231")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start 0.8 -1.5)
|
||||||
|
(end 0.85 -0.55)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "4aaab276-1cd3-494b-9e76-4b92dd4afa11")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start 0.85 -0.55)
|
||||||
|
(end 1.95 -0.55)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "f8a7d30d-a30f-409f-8094-b30a3dd4eddf")
|
||||||
|
)
|
||||||
|
(fp_line
|
||||||
|
(start 1.95 -0.55)
|
||||||
|
(end 1.95 1.4)
|
||||||
|
(stroke
|
||||||
|
(width 0.12)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(layer "Dwgs.User")
|
||||||
|
(uuid "b8061e64-8827-4c45-9182-2098032070f8")
|
||||||
|
)
|
||||||
|
(fp_text user "${REFERENCE}"
|
||||||
|
(at 0 5.9 0)
|
||||||
|
(unlocked yes)
|
||||||
|
(layer "F.Fab")
|
||||||
|
(uuid "4039981e-3f82-4552-95df-fea83601119e")
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1 1)
|
||||||
|
(thickness 0.15)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pad "1" smd roundrect
|
||||||
|
(at -1.4 1.35)
|
||||||
|
(size 0.7 1.1)
|
||||||
|
(layers "F.Cu" "F.Mask" "F.Paste")
|
||||||
|
(roundrect_rratio 0.15)
|
||||||
|
(thermal_bridge_angle 45)
|
||||||
|
(uuid "931c6788-c8db-4154-b63c-4e7668d17875")
|
||||||
|
)
|
||||||
|
(pad "2" smd roundrect
|
||||||
|
(at 1.4 1.35)
|
||||||
|
(size 0.7 1.1)
|
||||||
|
(layers "F.Cu" "F.Mask" "F.Paste")
|
||||||
|
(roundrect_rratio 0.15)
|
||||||
|
(thermal_bridge_angle 45)
|
||||||
|
(uuid "ddf94fa6-b349-42ee-9c9a-93ec8a26c1cf")
|
||||||
|
)
|
||||||
|
(pad "3" thru_hole roundrect
|
||||||
|
(at -1.85 0)
|
||||||
|
(size 1.25 1)
|
||||||
|
(drill 0.6
|
||||||
|
(offset -0.2 0)
|
||||||
|
)
|
||||||
|
(layers "*.Cu" "F.Mask")
|
||||||
|
(remove_unused_layers no)
|
||||||
|
(roundrect_rratio 0.25)
|
||||||
|
(uuid "8e0bd4dd-9475-400e-b116-4e97317d45cf")
|
||||||
|
)
|
||||||
|
(pad "3" thru_hole roundrect
|
||||||
|
(at 1.85 0)
|
||||||
|
(size 1.25 1)
|
||||||
|
(drill 0.6
|
||||||
|
(offset 0.2 0)
|
||||||
|
)
|
||||||
|
(layers "*.Cu" "F.Mask")
|
||||||
|
(remove_unused_layers no)
|
||||||
|
(roundrect_rratio 0.25)
|
||||||
|
(uuid "eaca53e9-38e6-4083-a648-2786cf39eae2")
|
||||||
|
)
|
||||||
|
(pad "4" smd roundrect
|
||||||
|
(at 0 1.5)
|
||||||
|
(size 1.4 1.1)
|
||||||
|
(layers "F.Cu" "F.Mask" "F.Paste")
|
||||||
|
(roundrect_rratio 0.1818181818)
|
||||||
|
(uuid "bebbc6a9-85ed-4964-a898-828d34330bb8")
|
||||||
|
)
|
||||||
|
(embedded_fonts no)
|
||||||
|
(model "/Users/stephen/feeder/lib/kicad/3d/SKTDLDE010.stp"
|
||||||
|
(offset
|
||||||
|
(xyz 0 -1.35 0.7)
|
||||||
|
)
|
||||||
|
(scale
|
||||||
|
(xyz 1 1 1)
|
||||||
|
)
|
||||||
|
(rotate
|
||||||
|
(xyz -90 -0 -180)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||