Merge branch 'dev' of github.com:slightlynybbled/WireViz into dev
11
.github/workflows/main.yml
vendored
@ -1,6 +1,6 @@
|
||||
name: Create Examples
|
||||
|
||||
on: [push, pull_request]
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@ -22,4 +22,11 @@ jobs:
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
- name: Create Examples
|
||||
run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py
|
||||
run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py
|
||||
- name: Upload examples, demos, and tutorials
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: examples-and-tutorials
|
||||
path: |
|
||||
examples/
|
||||
tutorial/
|
||||
3
.gitignore
vendored
@ -8,3 +8,6 @@ build
|
||||
data
|
||||
dist
|
||||
venv/
|
||||
desktop.ini
|
||||
thumbs.db
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
### New features
|
||||
- Add bidirectional AWG/mm2 conversion ([#41](https://github.com/formatc1702/WireViz/pull/41))
|
||||
- Add support for part numbers ([#11](https://github.com/formatc1702/WireViz/pull/11))
|
||||
- Add support for multicolored wires ([#17](https://github.com/formatc1702/WireViz/pull/17))
|
||||
- Add support for multicolored wires ([#17](https://github.com/formatc1702/WireViz/pull/17), [#96](https://github.com/formatc1702/WireViz/pull/96))
|
||||
- Add ability to export data directly to other programs ([#55](https://github.com/formatc1702/WireViz/pull/55))
|
||||
- Add support for line breaks in various fields ([#63](https://github.com/formatc1702/WireViz/issues/63))
|
||||
- Allow using connector pin names to define connections ([#72](https://github.com/formatc1702/WireViz/issues/72))
|
||||
|
||||
@ -11,11 +11,14 @@ WireViz is a tool for easily documenting cables, wiring harnesses and connector
|
||||
* Human readable
|
||||
* Easy version control
|
||||
* YAML syntax
|
||||
* UTF-8 input and output files for special character support
|
||||
* Understands and uses color abbreviations as per [IEC 60757](https://en.wikipedia.org/wiki/Electronic_color_code#Color_band_system) (black=BK, red=RD, ...)
|
||||
* Optionally outputs colors as abbreviation (e.g. 'YE'), full name (e.g. 'yellow') or hex value (e.g. '#ffff00'), with choice of UPPER or lower case
|
||||
* Auto-generates standard wire color schemes and allows custom ones if needed
|
||||
* [DIN 47100](https://en.wikipedia.org/wiki/DIN_47100) (WT/BN/GN/YE/GY/PK/BU/RD/BK/VT/...)
|
||||
* [IEC 62](https://en.wikipedia.org/wiki/Electronic_color_code#Color_band_system) (BN/RD/OR/YE/GN/BU/VT/GY/WT/BK/...)
|
||||
* [25 Pair Color Code](https://en.wikipedia.org/wiki/25-pair_color_code#Color_coding) (BUWH/WHBU/OGWH/WHOG/GNWH/WHGN/BNWH/...)
|
||||
* [TIA/EIA 568 A/B](https://en.wikipedia.org/wiki/TIA/EIA-568#Wiring) (Subset of 25-Pair, used in CAT-5/6/...)
|
||||
* Understands wire gauge in mm² or AWG
|
||||
* Optionally auto-calculates equivalent gauge between mm² and AWG
|
||||
* Allows more than one connector per side, as well as loopbacks
|
||||
@ -47,11 +50,11 @@ connectors:
|
||||
X1:
|
||||
type: D-Sub
|
||||
subtype: female
|
||||
pinout: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
pinlabels: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
X2:
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, RX, TX]
|
||||
pinlabels: [GND, RX, TX]
|
||||
|
||||
cables:
|
||||
W1:
|
||||
|
||||
@ -4,18 +4,18 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{D-Sub|female|9-pin}|{{DCD|RX|TX|DTR|GND|DSR|RTS|CTS|RI}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4|<p5r>5|<p6r>6|<p7r>7|<p8r>8|<p9r>9}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|3-pin}|{{<p1l>1|<p2l>2|<p3l>3}|{GND|RX|TX}}"]
|
||||
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">D-Sub</td><td balign="left">female</td><td balign="left">9-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td>DCD</td><td port="p1r">1</td></tr><tr><td>RX</td><td port="p2r">2</td></tr><tr><td>TX</td><td port="p3r">3</td></tr><tr><td>DTR</td><td port="p4r">4</td></tr><tr><td>GND</td><td port="p5r">5</td></tr><tr><td>DSR</td><td port="p6r">6</td></tr><tr><td>RTS</td><td port="p7r">7</td></tr><tr><td>CTS</td><td port="p8r">8</td></tr><tr><td>RI</td><td port="p9r">9</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">3-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>RX</td></tr><tr><td port="p3l">3</td><td>TX</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p5r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p3l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p2l:w
|
||||
edge [color="#000000"]
|
||||
edge [color="#000000:#aaaaaa:#000000"]
|
||||
X1:p5r:e -- W1:ws:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td>3x</td><td>0.25 mm²</td><td>+ S</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:5</td><td>WH</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>BN</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>GN</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w3"></td></tr><tr><td> </td></tr><tr><td>X1:5</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td balign="left">3x</td><td balign="left">0.25 mm²</td><td balign="left">+ S</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:5</td><td>WH</td><td>X2:1</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="#ffffff" 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</td><td>BN</td><td>X2:3</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="#895956" 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</td><td>GN</td><td>X2:2</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="#00ff00" 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><tr><td>X1:5</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,171 +1,174 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="825pt" height="290pt"
|
||||
viewBox="0.00 0.00 825.00 289.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 285.5)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-285.5 821,-285.5 821,4 -4,4"/>
|
||||
<svg width="777pt" height="288pt"
|
||||
viewBox="0.00 0.00 777.00 288.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 284)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-284 773,-284 773,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-0.5 0,-253.5 160,-253.5 160,-0.5 0,-0.5"/>
|
||||
<text text-anchor="middle" x="80" y="-238.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-230.5 160,-230.5 "/>
|
||||
<text text-anchor="middle" x="27.5" y="-215.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="55,-207.5 55,-230.5 "/>
|
||||
<text text-anchor="middle" x="84" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="113,-207.5 113,-230.5 "/>
|
||||
<text text-anchor="middle" x="136.5" y="-215.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-207.5 160,-207.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-192.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polyline fill="none" stroke="black" points="0,-184.5 91,-184.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-161.5 91,-161.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-146.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-138.5 91,-138.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-123.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polyline fill="none" stroke="black" points="0,-115.5 91,-115.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-100.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-92.5 91,-92.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-77.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polyline fill="none" stroke="black" points="0,-69.5 91,-69.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-54.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polyline fill="none" stroke="black" points="0,-46.5 91,-46.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-31.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polyline fill="none" stroke="black" points="0,-23.5 91,-23.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-8.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polyline fill="none" stroke="black" points="91,-0.5 91,-207.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="91,-184.5 160,-184.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="91,-161.5 160,-161.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="91,-138.5 160,-138.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-123.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="91,-115.5 160,-115.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-100.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="91,-92.5 160,-92.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-77.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="91,-69.5 160,-69.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-54.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="91,-46.5 160,-46.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-31.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polyline fill="none" stroke="black" points="91,-23.5 160,-23.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-8.3" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="white" stroke="transparent" points="136,-253 0,-253 0,0 136,0 136,-253"/>
|
||||
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
|
||||
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
|
||||
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
|
||||
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
|
||||
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
|
||||
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
|
||||
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
|
||||
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
|
||||
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
|
||||
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
|
||||
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
|
||||
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
|
||||
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
|
||||
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
|
||||
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
|
||||
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
|
||||
<text text-anchor="start" x="104" y="-7.3" font-family="arial" font-size="14.00">9</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="467,-281.5 304,-281.5 304,-82.5 467,-82.5 467,-281.5"/>
|
||||
<polygon fill="none" stroke="black" points="304.5,-258 304.5,-281 467.5,-281 467.5,-258 304.5,-258"/>
|
||||
<text text-anchor="start" x="375" y="-265.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="304.5,-235 304.5,-258 327.5,-258 327.5,-235 304.5,-235"/>
|
||||
<text text-anchor="start" x="308.5" y="-242.8" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-235 327.5,-258 394.5,-258 394.5,-235 327.5,-235"/>
|
||||
<text text-anchor="start" x="331.5" y="-242.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="394.5,-235 394.5,-258 424.5,-258 424.5,-235 394.5,-235"/>
|
||||
<text text-anchor="start" x="398.5" y="-242.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="424.5,-235 424.5,-258 467.5,-258 467.5,-235 424.5,-235"/>
|
||||
<text text-anchor="start" x="428.5" y="-242.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="384" y="-223.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="316" y="-206.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="374" y="-206.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="428" y="-206.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="304.5,-195 304.5,-201 467.5,-201 467.5,-195 304.5,-195"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-196 466.5,-196 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-200 305.5,-200 "/>
|
||||
<text text-anchor="start" x="316" y="-181.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="376.5" y="-181.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="428" y="-181.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="304.5,-170 304.5,-176 467.5,-176 467.5,-170 304.5,-170"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-171 466.5,-171 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-175 305.5,-175 "/>
|
||||
<text text-anchor="start" x="316" y="-156.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="375" y="-156.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="428" y="-156.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="304.5,-145 304.5,-151 467.5,-151 467.5,-145 304.5,-145"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-146 466.5,-146 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-150 305.5,-150 "/>
|
||||
<text text-anchor="start" x="328" y="-131.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="316" y="-112.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="367" y="-112.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-102 466.5,-102 "/>
|
||||
<text text-anchor="start" x="328" y="-87.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="443,-280 280,-280 280,-81 443,-81 443,-280"/>
|
||||
<polygon fill="none" stroke="black" points="280.5,-256.5 280.5,-279.5 443.5,-279.5 443.5,-256.5 280.5,-256.5"/>
|
||||
<text text-anchor="start" x="351" y="-264.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="280.5,-233.5 280.5,-256.5 303.5,-256.5 303.5,-233.5 280.5,-233.5"/>
|
||||
<text text-anchor="start" x="284.5" y="-241.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="303.5,-233.5 303.5,-256.5 370.5,-256.5 370.5,-233.5 303.5,-233.5"/>
|
||||
<text text-anchor="start" x="307.5" y="-241.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="370.5,-233.5 370.5,-256.5 400.5,-256.5 400.5,-233.5 370.5,-233.5"/>
|
||||
<text text-anchor="start" x="374.5" y="-241.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="400.5,-233.5 400.5,-256.5 443.5,-256.5 443.5,-233.5 400.5,-233.5"/>
|
||||
<text text-anchor="start" x="404.5" y="-241.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="360" y="-222.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="292" y="-205.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="350" y="-205.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="404" y="-205.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-197.5 280.5,-199.5 443.5,-199.5 443.5,-197.5 280.5,-197.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="280.5,-195.5 280.5,-197.5 443.5,-197.5 443.5,-195.5 280.5,-195.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-193.5 280.5,-195.5 443.5,-195.5 443.5,-193.5 280.5,-193.5"/>
|
||||
<text text-anchor="start" x="292" y="-180.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="352.5" y="-180.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="404" y="-180.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-172.5 280.5,-174.5 443.5,-174.5 443.5,-172.5 280.5,-172.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="280.5,-170.5 280.5,-172.5 443.5,-172.5 443.5,-170.5 280.5,-170.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-168.5 280.5,-170.5 443.5,-170.5 443.5,-168.5 280.5,-168.5"/>
|
||||
<text text-anchor="start" x="292" y="-155.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="351" y="-155.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="404" y="-155.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-147.5 280.5,-149.5 443.5,-149.5 443.5,-147.5 280.5,-147.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="280.5,-145.5 280.5,-147.5 443.5,-147.5 443.5,-145.5 280.5,-145.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-143.5 280.5,-145.5 443.5,-145.5 443.5,-143.5 280.5,-143.5"/>
|
||||
<text text-anchor="start" x="304" y="-130.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="292" y="-111.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="343" y="-111.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="281.5,-100.5 442.5,-100.5 "/>
|
||||
<text text-anchor="start" x="304" y="-86.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-102C238.42,-104.19 229.56,-198.19 304,-196"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M160,-104C236.43,-104 227.57,-198 304,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-106C234.44,-103.81 225.58,-197.81 304,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.42,-102.69 205.56,-196.69 280,-194.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.43,-102.5 203.57,-196.5 280,-196.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.44,-102.31 201.58,-196.31 280,-198.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-171C224,-171 240,-171 304,-171"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M160,-173C224,-173 240,-173 304,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-175C224,-175 240,-175 304,-175"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-170.5C199.88,-170.5 215.87,-169.5 280,-169.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200,-172.5 216,-171.5 280,-171.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.13,-174.5 216.12,-173.5 280,-173.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-148C223.76,-148.02 239.75,-146.02 304,-146"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M160,-150C224.01,-150 239.99,-148 304,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-152C224.25,-151.98 240.24,-149.98 304,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-147.5C199.64,-147.53 215.62,-144.53 280,-144.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.01,-149.5 215.99,-146.5 280,-146.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.38,-151.47 216.36,-148.47 280,-148.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-104C224,-104 240,-104 304,-104"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C200,-100.5 216,-100.5 280,-100.5"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M136,-102.5C200,-102.5 216,-102.5 280,-102.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C200,-104.5 216,-104.5 280,-104.5"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="611,-140.5 611,-255.5 817,-255.5 817,-140.5 611,-140.5"/>
|
||||
<text text-anchor="middle" x="714" y="-240.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="611,-232.5 817,-232.5 "/>
|
||||
<text text-anchor="middle" x="661.5" y="-217.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="712,-209.5 712,-232.5 "/>
|
||||
<text text-anchor="middle" x="741" y="-217.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="770,-209.5 770,-232.5 "/>
|
||||
<text text-anchor="middle" x="793.5" y="-217.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polyline fill="none" stroke="black" points="611,-209.5 817,-209.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-194.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="611,-186.5 702,-186.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-171.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="611,-163.5 702,-163.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-148.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="702,-140.5 702,-209.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-194.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="702,-186.5 817,-186.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-171.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="702,-163.5 817,-163.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-148.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="769,-255 587,-255 587,-140 769,-140 769,-255"/>
|
||||
<polygon fill="none" stroke="black" points="587,-231.5 587,-254.5 769,-254.5 769,-231.5 587,-231.5"/>
|
||||
<text text-anchor="start" x="669.5" y="-239.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="587,-208.5 587,-231.5 680,-231.5 680,-208.5 587,-208.5"/>
|
||||
<text text-anchor="start" x="591" y="-216.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="680,-208.5 680,-231.5 730,-231.5 730,-208.5 680,-208.5"/>
|
||||
<text text-anchor="start" x="684" y="-216.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="730,-208.5 730,-231.5 769,-231.5 769,-208.5 730,-208.5"/>
|
||||
<text text-anchor="start" x="734" y="-216.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="587,-185.5 587,-208.5 667,-208.5 667,-185.5 587,-185.5"/>
|
||||
<text text-anchor="start" x="623" y="-193.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="667,-185.5 667,-208.5 769,-208.5 769,-185.5 667,-185.5"/>
|
||||
<text text-anchor="start" x="702.5" y="-193.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="587,-162.5 587,-185.5 667,-185.5 667,-162.5 587,-162.5"/>
|
||||
<text text-anchor="start" x="623" y="-170.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="667,-162.5 667,-185.5 769,-185.5 769,-162.5 667,-162.5"/>
|
||||
<text text-anchor="start" x="708.5" y="-170.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="587,-139.5 587,-162.5 667,-162.5 667,-139.5 587,-139.5"/>
|
||||
<text text-anchor="start" x="623" y="-147.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="667,-139.5 667,-162.5 769,-162.5 769,-139.5 667,-139.5"/>
|
||||
<text text-anchor="start" x="709" y="-147.3" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-196C531,-196 547,-196 611,-196"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M467,-198C531,-198 547,-198 611,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-200C531,-200 547,-200 611,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-194.5C507,-194.5 523,-194.5 587,-194.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M443,-196.5C507,-196.5 523,-196.5 587,-196.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-198.5C507,-198.5 523,-198.5 587,-198.5"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-171C530.04,-171.86 544.68,-150.86 611,-150"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M467,-173C531.68,-173 546.32,-152 611,-152"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-175C533.32,-174.14 547.96,-153.14 611,-154"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-169.5C506.04,-170.36 520.68,-149.36 587,-148.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M443,-171.5C507.68,-171.5 522.32,-150.5 587,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-173.5C509.32,-172.64 523.96,-151.64 587,-152.5"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-146C533.9,-147.09 547.67,-174.09 611,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M467,-148C532.12,-148 545.88,-175 611,-175"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-150C530.33,-148.91 544.1,-175.91 611,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-144.5C509.9,-145.59 523.67,-172.59 587,-171.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M443,-146.5C508.12,-146.5 521.88,-173.5 587,-173.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-148.5C506.33,-147.41 520.1,-174.41 587,-175.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, D-Sub, female, 9 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 3 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 3 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, D-Sub, female, 9 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 3 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 3 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
@ -4,167 +4,171 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="825pt" height="290pt"
|
||||
viewBox="0.00 0.00 825.00 289.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 285.5)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-285.5 821,-285.5 821,4 -4,4"/>
|
||||
<svg width="777pt" height="288pt"
|
||||
viewBox="0.00 0.00 777.00 288.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 284)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-284 773,-284 773,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-0.5 0,-253.5 160,-253.5 160,-0.5 0,-0.5"/>
|
||||
<text text-anchor="middle" x="80" y="-238.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-230.5 160,-230.5 "/>
|
||||
<text text-anchor="middle" x="27.5" y="-215.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="55,-207.5 55,-230.5 "/>
|
||||
<text text-anchor="middle" x="84" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="113,-207.5 113,-230.5 "/>
|
||||
<text text-anchor="middle" x="136.5" y="-215.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-207.5 160,-207.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-192.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polyline fill="none" stroke="black" points="0,-184.5 91,-184.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-161.5 91,-161.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-146.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-138.5 91,-138.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-123.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polyline fill="none" stroke="black" points="0,-115.5 91,-115.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-100.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-92.5 91,-92.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-77.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polyline fill="none" stroke="black" points="0,-69.5 91,-69.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-54.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polyline fill="none" stroke="black" points="0,-46.5 91,-46.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-31.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polyline fill="none" stroke="black" points="0,-23.5 91,-23.5 "/>
|
||||
<text text-anchor="middle" x="45.5" y="-8.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polyline fill="none" stroke="black" points="91,-0.5 91,-207.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="91,-184.5 160,-184.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="91,-161.5 160,-161.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="91,-138.5 160,-138.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-123.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="91,-115.5 160,-115.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-100.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="91,-92.5 160,-92.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-77.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="91,-69.5 160,-69.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-54.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="91,-46.5 160,-46.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-31.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polyline fill="none" stroke="black" points="91,-23.5 160,-23.5 "/>
|
||||
<text text-anchor="middle" x="125.5" y="-8.3" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="white" stroke="transparent" points="136,-253 0,-253 0,0 136,0 136,-253"/>
|
||||
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
|
||||
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
|
||||
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
|
||||
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
|
||||
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
|
||||
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
|
||||
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
|
||||
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
|
||||
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
|
||||
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
|
||||
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
|
||||
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
|
||||
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
|
||||
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
|
||||
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
|
||||
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
|
||||
<text text-anchor="start" x="104" y="-7.3" font-family="arial" font-size="14.00">9</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="467,-281.5 304,-281.5 304,-82.5 467,-82.5 467,-281.5"/>
|
||||
<polygon fill="none" stroke="black" points="304.5,-258 304.5,-281 467.5,-281 467.5,-258 304.5,-258"/>
|
||||
<text text-anchor="start" x="375" y="-265.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="304.5,-235 304.5,-258 327.5,-258 327.5,-235 304.5,-235"/>
|
||||
<text text-anchor="start" x="308.5" y="-242.8" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-235 327.5,-258 394.5,-258 394.5,-235 327.5,-235"/>
|
||||
<text text-anchor="start" x="331.5" y="-242.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="394.5,-235 394.5,-258 424.5,-258 424.5,-235 394.5,-235"/>
|
||||
<text text-anchor="start" x="398.5" y="-242.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="424.5,-235 424.5,-258 467.5,-258 467.5,-235 424.5,-235"/>
|
||||
<text text-anchor="start" x="428.5" y="-242.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="384" y="-223.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="316" y="-206.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="374" y="-206.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="428" y="-206.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="304.5,-195 304.5,-201 467.5,-201 467.5,-195 304.5,-195"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-196 466.5,-196 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-200 305.5,-200 "/>
|
||||
<text text-anchor="start" x="316" y="-181.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="376.5" y="-181.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="428" y="-181.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="304.5,-170 304.5,-176 467.5,-176 467.5,-170 304.5,-170"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-171 466.5,-171 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-175 305.5,-175 "/>
|
||||
<text text-anchor="start" x="316" y="-156.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="375" y="-156.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="428" y="-156.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="304.5,-145 304.5,-151 467.5,-151 467.5,-145 304.5,-145"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-146 466.5,-146 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="466.5,-150 305.5,-150 "/>
|
||||
<text text-anchor="start" x="328" y="-131.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="316" y="-112.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="367" y="-112.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="305.5,-102 466.5,-102 "/>
|
||||
<text text-anchor="start" x="328" y="-87.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="443,-280 280,-280 280,-81 443,-81 443,-280"/>
|
||||
<polygon fill="none" stroke="black" points="280.5,-256.5 280.5,-279.5 443.5,-279.5 443.5,-256.5 280.5,-256.5"/>
|
||||
<text text-anchor="start" x="351" y="-264.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="280.5,-233.5 280.5,-256.5 303.5,-256.5 303.5,-233.5 280.5,-233.5"/>
|
||||
<text text-anchor="start" x="284.5" y="-241.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="303.5,-233.5 303.5,-256.5 370.5,-256.5 370.5,-233.5 303.5,-233.5"/>
|
||||
<text text-anchor="start" x="307.5" y="-241.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="370.5,-233.5 370.5,-256.5 400.5,-256.5 400.5,-233.5 370.5,-233.5"/>
|
||||
<text text-anchor="start" x="374.5" y="-241.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="400.5,-233.5 400.5,-256.5 443.5,-256.5 443.5,-233.5 400.5,-233.5"/>
|
||||
<text text-anchor="start" x="404.5" y="-241.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="360" y="-222.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="292" y="-205.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="350" y="-205.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="404" y="-205.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-197.5 280.5,-199.5 443.5,-199.5 443.5,-197.5 280.5,-197.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="280.5,-195.5 280.5,-197.5 443.5,-197.5 443.5,-195.5 280.5,-195.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-193.5 280.5,-195.5 443.5,-195.5 443.5,-193.5 280.5,-193.5"/>
|
||||
<text text-anchor="start" x="292" y="-180.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="352.5" y="-180.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="404" y="-180.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-172.5 280.5,-174.5 443.5,-174.5 443.5,-172.5 280.5,-172.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="280.5,-170.5 280.5,-172.5 443.5,-172.5 443.5,-170.5 280.5,-170.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-168.5 280.5,-170.5 443.5,-170.5 443.5,-168.5 280.5,-168.5"/>
|
||||
<text text-anchor="start" x="292" y="-155.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="351" y="-155.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="404" y="-155.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-147.5 280.5,-149.5 443.5,-149.5 443.5,-147.5 280.5,-147.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="280.5,-145.5 280.5,-147.5 443.5,-147.5 443.5,-145.5 280.5,-145.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="280.5,-143.5 280.5,-145.5 443.5,-145.5 443.5,-143.5 280.5,-143.5"/>
|
||||
<text text-anchor="start" x="304" y="-130.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="292" y="-111.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="343" y="-111.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="281.5,-100.5 442.5,-100.5 "/>
|
||||
<text text-anchor="start" x="304" y="-86.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-102C238.42,-104.19 229.56,-198.19 304,-196"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M160,-104C236.43,-104 227.57,-198 304,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-106C234.44,-103.81 225.58,-197.81 304,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.42,-102.69 205.56,-196.69 280,-194.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.43,-102.5 203.57,-196.5 280,-196.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.44,-102.31 201.58,-196.31 280,-198.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-171C224,-171 240,-171 304,-171"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M160,-173C224,-173 240,-173 304,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-175C224,-175 240,-175 304,-175"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-170.5C199.88,-170.5 215.87,-169.5 280,-169.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200,-172.5 216,-171.5 280,-171.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.13,-174.5 216.12,-173.5 280,-173.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-148C223.76,-148.02 239.75,-146.02 304,-146"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M160,-150C224.01,-150 239.99,-148 304,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-152C224.25,-151.98 240.24,-149.98 304,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-147.5C199.64,-147.53 215.62,-144.53 280,-144.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.01,-149.5 215.99,-146.5 280,-146.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.38,-151.47 216.36,-148.47 280,-148.5"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M160,-104C224,-104 240,-104 304,-104"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C200,-100.5 216,-100.5 280,-100.5"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M136,-102.5C200,-102.5 216,-102.5 280,-102.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C200,-104.5 216,-104.5 280,-104.5"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="611,-140.5 611,-255.5 817,-255.5 817,-140.5 611,-140.5"/>
|
||||
<text text-anchor="middle" x="714" y="-240.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="611,-232.5 817,-232.5 "/>
|
||||
<text text-anchor="middle" x="661.5" y="-217.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="712,-209.5 712,-232.5 "/>
|
||||
<text text-anchor="middle" x="741" y="-217.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="770,-209.5 770,-232.5 "/>
|
||||
<text text-anchor="middle" x="793.5" y="-217.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polyline fill="none" stroke="black" points="611,-209.5 817,-209.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-194.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="611,-186.5 702,-186.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-171.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="611,-163.5 702,-163.5 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-148.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="702,-140.5 702,-209.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-194.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="702,-186.5 817,-186.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-171.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="702,-163.5 817,-163.5 "/>
|
||||
<text text-anchor="middle" x="759.5" y="-148.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="769,-255 587,-255 587,-140 769,-140 769,-255"/>
|
||||
<polygon fill="none" stroke="black" points="587,-231.5 587,-254.5 769,-254.5 769,-231.5 587,-231.5"/>
|
||||
<text text-anchor="start" x="669.5" y="-239.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="587,-208.5 587,-231.5 680,-231.5 680,-208.5 587,-208.5"/>
|
||||
<text text-anchor="start" x="591" y="-216.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="680,-208.5 680,-231.5 730,-231.5 730,-208.5 680,-208.5"/>
|
||||
<text text-anchor="start" x="684" y="-216.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="730,-208.5 730,-231.5 769,-231.5 769,-208.5 730,-208.5"/>
|
||||
<text text-anchor="start" x="734" y="-216.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="587,-185.5 587,-208.5 667,-208.5 667,-185.5 587,-185.5"/>
|
||||
<text text-anchor="start" x="623" y="-193.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="667,-185.5 667,-208.5 769,-208.5 769,-185.5 667,-185.5"/>
|
||||
<text text-anchor="start" x="702.5" y="-193.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="587,-162.5 587,-185.5 667,-185.5 667,-162.5 587,-162.5"/>
|
||||
<text text-anchor="start" x="623" y="-170.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="667,-162.5 667,-185.5 769,-185.5 769,-162.5 667,-162.5"/>
|
||||
<text text-anchor="start" x="708.5" y="-170.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="587,-139.5 587,-162.5 667,-162.5 667,-139.5 587,-139.5"/>
|
||||
<text text-anchor="start" x="623" y="-147.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="667,-139.5 667,-162.5 769,-162.5 769,-139.5 667,-139.5"/>
|
||||
<text text-anchor="start" x="709" y="-147.3" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-196C531,-196 547,-196 611,-196"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M467,-198C531,-198 547,-198 611,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-200C531,-200 547,-200 611,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-194.5C507,-194.5 523,-194.5 587,-194.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M443,-196.5C507,-196.5 523,-196.5 587,-196.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-198.5C507,-198.5 523,-198.5 587,-198.5"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-171C530.04,-171.86 544.68,-150.86 611,-150"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M467,-173C531.68,-173 546.32,-152 611,-152"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-175C533.32,-174.14 547.96,-153.14 611,-154"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-169.5C506.04,-170.36 520.68,-149.36 587,-148.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M443,-171.5C507.68,-171.5 522.32,-150.5 587,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-173.5C509.32,-172.64 523.96,-151.64 587,-152.5"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-146C533.9,-147.09 547.67,-174.09 611,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M467,-148C532.12,-148 545.88,-175 611,-175"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-150C530.33,-148.91 544.1,-175.91 611,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-144.5C509.9,-145.59 523.67,-172.59 587,-171.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M443,-146.5C508.12,-146.5 521.88,-173.5 587,-173.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M443,-148.5C506.33,-147.41 520.1,-174.41 587,-175.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
@ -2,11 +2,11 @@ connectors:
|
||||
X1:
|
||||
type: D-Sub
|
||||
subtype: female
|
||||
pinout: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
pinlabels: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
X2:
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, RX, TX]
|
||||
pinlabels: [GND, RX, TX]
|
||||
|
||||
cables:
|
||||
W1:
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
Item Qty Unit Designators
|
||||
Connector, Crimp ferrule, 0.25 mm² 2
|
||||
Connector, Crimp ferrule, 0.25 mm², YE 2
|
||||
Connector, Molex KK 254, female, 4 pins 2 X2, X3
|
||||
Connector, Molex KK 254, female, 5 pins 1 X4
|
||||
Connector, Molex KK 254, female, 8 pins 1 X1
|
||||
|
||||
|
@ -4,30 +4,12 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|8-pin}|{{GND|+5V|SCL|SDA|MISO|MOSI|SCK|N/C}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4|<p5r>5|<p6r>6|<p7r>7|<p8r>8}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|+5V|SCL|SDA}}"]
|
||||
X3 [label="X3|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|+5V|SCL|SDA}}"]
|
||||
X4 [label="X4|{Molex KK 254|female|5-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4|<p5l>5}|{GND|+12V|MISO|MOSI|SCK}}"]
|
||||
_F1 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule, 0.25 mm² </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F2 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule, 0.25 mm² </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">8-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>+5V</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr><tr><td>MISO</td><td port="p5r">5</td></tr><tr><td>MOSI</td><td port="p6r">6</td></tr><tr><td>SCK</td><td port="p7r">7</td></tr><tr><td>N/C</td><td port="p8r">8</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>+5V</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>+5V</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex KK 254</td><td balign="left">female</td><td balign="left">5-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>+12V</td></tr><tr><td port="p3l">3</td><td>MISO</td></tr><tr><td port="p4l">4</td><td>MOSI</td></tr><tr><td port="p5l">5</td><td>SCK</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.25 mm²</td><td balign="left">YE</td><td balign="left" bgcolor="#FFFF00" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.25 mm²</td><td balign="left">YE</td><td balign="left" bgcolor="#FFFF00" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
@ -40,7 +22,7 @@ graph {
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>4x</td><td>0.14 mm² (26 AWG)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>GN</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">4x</td><td balign="left">0.14 mm² (26 AWG)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</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="#000000" 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</td><td>RD</td><td>X2:2</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="#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:3</td><td>YE</td><td>X2:3</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="#ffff00" 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</td><td>GN</td><td>X2:4</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="#00ff00" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
@ -53,7 +35,7 @@ graph {
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
X1:p4r:e -- W2:w4:w
|
||||
W2:w4:e -- X3:p4l:w
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td>4x</td><td>0.14 mm² (26 AWG)</td><td>0.4 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X3:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X3:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>YE</td><td>X3:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>GN</td><td>X3:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td balign="left">4x</td><td balign="left">0.14 mm² (26 AWG)</td><td balign="left">0.4 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X3:1</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="#000000" 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</td><td>RD</td><td>X3:2</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="#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:3</td><td>YE</td><td>X3:3</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="#ffff00" 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</td><td>GN</td><td>X3:4</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="#00ff00" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W3:w1:w
|
||||
W3:w1:e -- X4:p1l:w
|
||||
@ -66,14 +48,12 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X1:p7r:e -- W3:w4:w
|
||||
W3:w4:e -- X4:p5l:w
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td>4x</td><td>0.14 mm² (26 AWG)</td><td>0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:5</td><td>BU</td><td>X4:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#0066ff" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:6</td><td>OG</td><td>X4:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff8000" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:7</td><td>VT</td><td>X4:5</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_F1:e -- W4:w1:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
_F2:e -- W4:w2:w
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td balign="left">4x</td><td balign="left">0.14 mm² (26 AWG)</td><td balign="left">0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X4:1</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="#000000" 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</td><td>BU</td><td>X4:3</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="#0066ff" 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</td><td>OG</td><td>X4:4</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="#ff8000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X1:7</td><td>VT</td><td>X4:5</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_ferrule_crimp_1:e -- W4:w1:w
|
||||
W4:w1:e -- X4:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
_ferrule_crimp_2:e -- W4:w2:w
|
||||
W4:w2:e -- X4:p2l:w
|
||||
W4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W4</td></tr><tr><td>2x</td><td>0.25 mm² (24 AWG)</td><td>0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>BK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td></td><td>RD</td><td>X4:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W4</td></tr><tr><td balign="left">2x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>BK</td><td>X4:1</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="#000000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>RD</td><td>X4:2</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="#ff0000" 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=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,499 +1,512 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="906pt" height="763pt"
|
||||
viewBox="0.00 0.00 906.00 763.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="865pt" height="763pt"
|
||||
viewBox="0.00 0.00 865.00 763.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 759)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-759 902,-759 902,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-759 861,-759 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-292 0,-522 206,-522 206,-292 0,-292"/>
|
||||
<text text-anchor="middle" x="103" y="-506.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-499 206,-499 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-483.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-476 101,-499 "/>
|
||||
<text text-anchor="middle" x="130" y="-483.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-476 159,-499 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-483.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-476 206,-476 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-460.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-453 117,-453 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-437.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="0,-430 117,-430 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-414.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-407 117,-407 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-391.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="0,-384 117,-384 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-368.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polyline fill="none" stroke="black" points="0,-361 117,-361 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-345.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polyline fill="none" stroke="black" points="0,-338 117,-338 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-322.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polyline fill="none" stroke="black" points="0,-315 117,-315 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-299.8" font-family="arial" font-size="14.00">N/C</text>
|
||||
<polyline fill="none" stroke="black" points="117,-292 117,-476 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-460.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="117,-453 206,-453 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-437.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="117,-430 206,-430 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-414.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="117,-407 206,-407 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-391.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="117,-384 206,-384 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-368.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="117,-361 206,-361 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-345.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="117,-338 206,-338 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-322.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="117,-315 206,-315 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-299.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="white" stroke="transparent" points="185.5,-522 3.5,-522 3.5,-292 185.5,-292 185.5,-522"/>
|
||||
<polygon fill="none" stroke="black" points="3.5,-499 3.5,-522 185.5,-522 185.5,-499 3.5,-499"/>
|
||||
<text text-anchor="start" x="86" y="-506.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-476 3.5,-499 96.5,-499 96.5,-476 3.5,-476"/>
|
||||
<text text-anchor="start" x="7.5" y="-483.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-476 96.5,-499 146.5,-499 146.5,-476 96.5,-476"/>
|
||||
<text text-anchor="start" x="100.5" y="-483.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="146.5,-476 146.5,-499 185.5,-499 185.5,-476 146.5,-476"/>
|
||||
<text text-anchor="start" x="150.5" y="-483.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-453 3.5,-476 109.5,-476 109.5,-453 3.5,-453"/>
|
||||
<text text-anchor="start" x="41" y="-460.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-453 109.5,-476 185.5,-476 185.5,-453 109.5,-453"/>
|
||||
<text text-anchor="start" x="143.5" y="-460.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-430 3.5,-453 109.5,-453 109.5,-430 3.5,-430"/>
|
||||
<text text-anchor="start" x="44" y="-437.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-430 109.5,-453 185.5,-453 185.5,-430 109.5,-430"/>
|
||||
<text text-anchor="start" x="143.5" y="-437.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-407 3.5,-430 109.5,-430 109.5,-407 3.5,-407"/>
|
||||
<text text-anchor="start" x="43" y="-414.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-407 109.5,-430 185.5,-430 185.5,-407 109.5,-407"/>
|
||||
<text text-anchor="start" x="143.5" y="-414.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-384 3.5,-407 109.5,-407 109.5,-384 3.5,-384"/>
|
||||
<text text-anchor="start" x="42.5" y="-391.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-384 109.5,-407 185.5,-407 185.5,-384 109.5,-384"/>
|
||||
<text text-anchor="start" x="143.5" y="-391.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-361 3.5,-384 109.5,-384 109.5,-361 3.5,-361"/>
|
||||
<text text-anchor="start" x="38" y="-368.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-361 109.5,-384 185.5,-384 185.5,-361 109.5,-361"/>
|
||||
<text text-anchor="start" x="143.5" y="-368.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-338 3.5,-361 109.5,-361 109.5,-338 3.5,-338"/>
|
||||
<text text-anchor="start" x="38" y="-345.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-338 109.5,-361 185.5,-361 185.5,-338 109.5,-338"/>
|
||||
<text text-anchor="start" x="143.5" y="-345.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-315 3.5,-338 109.5,-338 109.5,-315 3.5,-315"/>
|
||||
<text text-anchor="start" x="42.5" y="-322.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-315 109.5,-338 185.5,-338 185.5,-315 109.5,-315"/>
|
||||
<text text-anchor="start" x="143.5" y="-322.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-292 3.5,-315 109.5,-315 109.5,-292 3.5,-292"/>
|
||||
<text text-anchor="start" x="44.5" y="-299.8" font-family="arial" font-size="14.00">N/C</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-292 109.5,-315 185.5,-315 185.5,-292 109.5,-292"/>
|
||||
<text text-anchor="start" x="143.5" y="-299.8" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node7" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-755 350,-755 350,-575 548,-575 548,-755"/>
|
||||
<polygon fill="none" stroke="black" points="350,-732 350,-755 548,-755 548,-732 350,-732"/>
|
||||
<text text-anchor="start" x="438" y="-739.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350,-709 350,-732 373,-732 373,-709 350,-709"/>
|
||||
<text text-anchor="start" x="354" y="-716.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-709 373,-732 505,-732 505,-709 373,-709"/>
|
||||
<text text-anchor="start" x="377" y="-716.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-709 505,-732 548,-732 548,-709 505,-709"/>
|
||||
<text text-anchor="start" x="509" y="-716.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="447" y="-697.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-680.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="439.5" y="-680.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500" y="-680.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-669 350,-675 548,-675 548,-669 350,-669"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-670 547,-670 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-674 351,-674 "/>
|
||||
<text text-anchor="start" x="370" y="-655.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="439" y="-655.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="500" y="-655.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-644 350,-650 548,-650 548,-644 350,-644"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-645 547,-645 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-649 351,-649 "/>
|
||||
<text text-anchor="start" x="370" y="-630.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="439.5" y="-630.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="500" y="-630.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350,-619 350,-625 548,-625 548,-619 350,-619"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-620 547,-620 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-624 351,-624 "/>
|
||||
<text text-anchor="start" x="370" y="-605.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="438" y="-605.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="500" y="-605.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350,-594 350,-600 548,-600 548,-594 350,-594"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-595 547,-595 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-599 351,-599 "/>
|
||||
<text text-anchor="start" x="382" y="-580.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-755 333,-755 333,-575 531,-575 531,-755"/>
|
||||
<polygon fill="none" stroke="black" points="333,-732 333,-755 531,-755 531,-732 333,-732"/>
|
||||
<text text-anchor="start" x="421" y="-739.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="333,-709 333,-732 356,-732 356,-709 333,-709"/>
|
||||
<text text-anchor="start" x="337" y="-716.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-709 356,-732 488,-732 488,-709 356,-709"/>
|
||||
<text text-anchor="start" x="360" y="-716.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-709 488,-732 531,-732 531,-709 488,-709"/>
|
||||
<text text-anchor="start" x="492" y="-716.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="430" y="-697.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-680.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-680.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483" y="-680.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-673 333,-675 531,-675 531,-673 333,-673"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-671 333,-673 531,-673 531,-671 333,-671"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-669 333,-671 531,-671 531,-669 333,-669"/>
|
||||
<text text-anchor="start" x="353" y="-655.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-655.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="483" y="-655.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-648 333,-650 531,-650 531,-648 333,-648"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-646 333,-648 531,-648 531,-646 333,-646"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-644 333,-646 531,-646 531,-644 333,-644"/>
|
||||
<text text-anchor="start" x="353" y="-630.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-630.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="483" y="-630.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-623 333,-625 531,-625 531,-623 333,-623"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="333,-621 333,-623 531,-623 531,-621 333,-621"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-619 333,-621 531,-621 531,-619 333,-619"/>
|
||||
<text text-anchor="start" x="353" y="-605.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="421" y="-605.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="483" y="-605.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-598 333,-600 531,-600 531,-598 333,-598"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="333,-596 333,-598 531,-598 531,-596 333,-596"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-594 333,-596 531,-596 531,-594 333,-594"/>
|
||||
<text text-anchor="start" x="365" y="-580.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C319.94,-465.72 239.79,-672.72 350,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C318.07,-465 237.93,-672 350,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C316.21,-464.28 236.06,-671.28 350,-674"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C301.08,-465.71 222.16,-672.71 333,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C299.21,-465 220.29,-672 333,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C297.34,-464.29 218.42,-671.29 333,-674"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-440C319.21,-442.72 240.52,-647.72 350,-645"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-442C317.34,-442 238.66,-647 350,-647"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-444C315.48,-441.28 236.79,-646.28 350,-649"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-440C300.36,-442.71 222.89,-647.71 333,-645"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-442C298.49,-442 221.01,-647 333,-647"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-444C296.61,-441.29 219.14,-646.29 333,-649"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-417C318.49,-419.71 241.25,-622.71 350,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-419C316.62,-419 239.38,-622 350,-622"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-421C314.75,-418.29 237.51,-621.29 350,-624"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-417C299.64,-419.7 223.61,-622.7 333,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-419C297.76,-419 221.74,-622 333,-622"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-421C295.89,-418.3 219.86,-621.3 333,-624"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-393C318.12,-395.71 241.62,-597.71 350,-595"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-395C316.25,-395 239.75,-597 350,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-397C314.38,-394.29 237.88,-596.29 350,-599"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-393C299.28,-395.7 223.97,-597.7 333,-595"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-395C297.4,-395 222.1,-597 333,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-397C295.53,-394.3 220.22,-596.3 333,-599"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node8" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-551 350,-551 350,-371 548,-371 548,-551"/>
|
||||
<polygon fill="none" stroke="black" points="350,-528 350,-551 548,-551 548,-528 350,-528"/>
|
||||
<text text-anchor="start" x="438" y="-535.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="350,-505 350,-528 373,-528 373,-505 350,-505"/>
|
||||
<text text-anchor="start" x="354" y="-512.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-505 373,-528 505,-528 505,-505 373,-505"/>
|
||||
<text text-anchor="start" x="377" y="-512.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-505 505,-528 548,-528 548,-505 505,-505"/>
|
||||
<text text-anchor="start" x="509" y="-512.8" font-family="arial" font-size="14.00">0.4 m</text>
|
||||
<text text-anchor="start" x="447" y="-493.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-476.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="439.5" y="-476.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500" y="-476.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-465 350,-471 548,-471 548,-465 350,-465"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-466 547,-466 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-470 351,-470 "/>
|
||||
<text text-anchor="start" x="370" y="-451.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="439" y="-451.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="500" y="-451.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-440 350,-446 548,-446 548,-440 350,-440"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-441 547,-441 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-445 351,-445 "/>
|
||||
<text text-anchor="start" x="370" y="-426.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="439.5" y="-426.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="500" y="-426.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350,-415 350,-421 548,-421 548,-415 350,-415"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-416 547,-416 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-420 351,-420 "/>
|
||||
<text text-anchor="start" x="370" y="-401.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="438" y="-401.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="500" y="-401.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350,-390 350,-396 548,-396 548,-390 350,-390"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-391 547,-391 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-395 351,-395 "/>
|
||||
<text text-anchor="start" x="382" y="-376.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-551 333,-551 333,-371 531,-371 531,-551"/>
|
||||
<polygon fill="none" stroke="black" points="333,-528 333,-551 531,-551 531,-528 333,-528"/>
|
||||
<text text-anchor="start" x="421" y="-535.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="333,-505 333,-528 356,-528 356,-505 333,-505"/>
|
||||
<text text-anchor="start" x="337" y="-512.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-505 356,-528 488,-528 488,-505 356,-505"/>
|
||||
<text text-anchor="start" x="360" y="-512.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-505 488,-528 531,-528 531,-505 488,-505"/>
|
||||
<text text-anchor="start" x="492" y="-512.8" font-family="arial" font-size="14.00">0.4 m</text>
|
||||
<text text-anchor="start" x="430" y="-493.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-476.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-476.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483" y="-476.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-469 333,-471 531,-471 531,-469 333,-469"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-467 333,-469 531,-469 531,-467 333,-467"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-465 333,-467 531,-467 531,-465 333,-465"/>
|
||||
<text text-anchor="start" x="353" y="-451.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-451.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="483" y="-451.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-444 333,-446 531,-446 531,-444 333,-444"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-442 333,-444 531,-444 531,-442 333,-442"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-440 333,-442 531,-442 531,-440 333,-440"/>
|
||||
<text text-anchor="start" x="353" y="-426.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-426.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="483" y="-426.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-419 333,-421 531,-421 531,-419 333,-419"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="333,-417 333,-419 531,-419 531,-417 333,-417"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-415 333,-417 531,-417 531,-415 333,-415"/>
|
||||
<text text-anchor="start" x="353" y="-401.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="421" y="-401.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="483" y="-401.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-394 333,-396 531,-396 531,-394 333,-394"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="333,-392 333,-394 531,-394 531,-392 333,-392"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-390 333,-392 531,-392 531,-390 333,-390"/>
|
||||
<text text-anchor="start" x="365" y="-376.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C270.38,-463.03 286.36,-466.03 350,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C270.01,-465 285.99,-468 350,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C269.64,-466.97 285.62,-469.97 350,-470"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C251.99,-463.03 268.24,-466.03 333,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C251.62,-465 267.88,-468 333,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C251.26,-466.97 267.51,-469.97 333,-470"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-440C270.13,-440 286.12,-441 350,-441"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-442C270,-442 286,-443 350,-443"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-444C269.88,-444 285.87,-445 350,-445"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-440C251.74,-440 268.01,-441 333,-441"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-442C251.61,-442 267.89,-443 333,-443"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-444C251.49,-444 267.76,-445 333,-445"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-417C269.88,-417 285.87,-416 350,-416"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-419C270,-419 286,-418 350,-418"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-421C270.13,-421 286.12,-420 350,-420"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-417C251.49,-417 267.76,-416 333,-416"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-419C251.61,-419 267.89,-418 333,-418"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-421C251.74,-421 268.01,-420 333,-420"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-393C269.76,-393.02 285.75,-391.02 350,-391"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-395C270.01,-395 285.99,-393 350,-393"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-397C270.25,-396.98 286.24,-394.98 350,-395"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-393C251.37,-393.01 267.64,-391.01 333,-391"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-395C251.62,-395 267.88,-393 333,-393"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-397C251.86,-396.99 268.13,-394.99 333,-395"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node9" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-347 350,-347 350,-167 548,-167 548,-347"/>
|
||||
<polygon fill="none" stroke="black" points="350,-324 350,-347 548,-347 548,-324 350,-324"/>
|
||||
<text text-anchor="start" x="438" y="-331.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="350,-301 350,-324 373,-324 373,-301 350,-301"/>
|
||||
<text text-anchor="start" x="354" y="-308.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-301 373,-324 505,-324 505,-301 373,-301"/>
|
||||
<text text-anchor="start" x="377" y="-308.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-301 505,-324 548,-324 548,-301 505,-301"/>
|
||||
<text text-anchor="start" x="509" y="-308.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="447" y="-289.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-272.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="440" y="-272.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500.5" y="-272.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-261 350,-267 548,-267 548,-261 350,-261"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-262 547,-262 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-266 351,-266 "/>
|
||||
<text text-anchor="start" x="370" y="-247.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="440" y="-247.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="500.5" y="-247.8" font-family="arial" font-size="14.00">X4:3</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="350,-236 350,-242 548,-242 548,-236 350,-236"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-237 547,-237 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-241 351,-241 "/>
|
||||
<text text-anchor="start" x="370" y="-222.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="438" y="-222.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="500.5" y="-222.8" font-family="arial" font-size="14.00">X4:4</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="350,-211 350,-217 548,-217 548,-211 350,-211"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-212 547,-212 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-216 351,-216 "/>
|
||||
<text text-anchor="start" x="370" y="-197.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="440.5" y="-197.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="500.5" y="-197.8" font-family="arial" font-size="14.00">X4:5</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="350,-186 350,-192 548,-192 548,-186 350,-186"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-187 547,-187 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-191 351,-191 "/>
|
||||
<text text-anchor="start" x="382" y="-172.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-347 333,-347 333,-167 531,-167 531,-347"/>
|
||||
<polygon fill="none" stroke="black" points="333,-324 333,-347 531,-347 531,-324 333,-324"/>
|
||||
<text text-anchor="start" x="421" y="-331.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="333,-301 333,-324 356,-324 356,-301 333,-301"/>
|
||||
<text text-anchor="start" x="337" y="-308.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-301 356,-324 488,-324 488,-301 356,-301"/>
|
||||
<text text-anchor="start" x="360" y="-308.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-301 488,-324 531,-324 531,-301 488,-301"/>
|
||||
<text text-anchor="start" x="492" y="-308.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="430" y="-289.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-272.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="423" y="-272.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483.5" y="-272.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-265 333,-267 531,-267 531,-265 333,-265"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-263 333,-265 531,-265 531,-263 333,-263"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-261 333,-263 531,-263 531,-261 333,-261"/>
|
||||
<text text-anchor="start" x="353" y="-247.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="423" y="-247.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="483.5" y="-247.8" font-family="arial" font-size="14.00">X4:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-240 333,-242 531,-242 531,-240 333,-240"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="333,-238 333,-240 531,-240 531,-238 333,-238"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-236 333,-238 531,-238 531,-236 333,-236"/>
|
||||
<text text-anchor="start" x="353" y="-222.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="421" y="-222.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="483.5" y="-222.8" font-family="arial" font-size="14.00">X4:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-215 333,-217 531,-217 531,-215 333,-215"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="333,-213 333,-215 531,-215 531,-213 333,-213"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-211 333,-213 531,-213 531,-211 333,-211"/>
|
||||
<text text-anchor="start" x="353" y="-197.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="423.5" y="-197.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="483.5" y="-197.8" font-family="arial" font-size="14.00">X4:5</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-190 333,-192 531,-192 531,-190 333,-190"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="333,-188 333,-190 531,-190 531,-188 333,-188"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-186 333,-188 531,-188 531,-186 333,-186"/>
|
||||
<text text-anchor="start" x="365" y="-172.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C314.02,-465.71 238.24,-264.71 350,-262"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C315.89,-465 240.11,-264 350,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C317.76,-464.29 241.98,-263.29 350,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C295.17,-465.7 220.58,-264.7 333,-262"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C297.04,-465 222.46,-264 333,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C298.92,-464.3 224.33,-263.3 333,-266"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-370C291.17,-372.44 260.93,-239.44 350,-237"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M206,-372C293.12,-372 262.88,-239 350,-239"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-374C295.07,-371.56 264.83,-238.56 350,-241"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-370C272.49,-372.43 243.11,-239.43 333,-237"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M186.5,-372C274.44,-372 245.06,-239 333,-239"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-374C276.39,-371.57 247.01,-238.57 333,-241"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-347C291.78,-349.45 260.33,-214.45 350,-212"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M206,-349C293.73,-349 262.27,-214 350,-214"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-351C295.67,-348.55 264.22,-213.55 350,-216"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-347C273.09,-349.44 242.51,-214.44 333,-212"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M186.5,-349C275.04,-349 244.46,-214 333,-214"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-351C276.99,-348.56 246.41,-213.56 333,-216"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-324C292.39,-326.46 259.72,-189.46 350,-187"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M206,-326C294.34,-326 261.66,-189 350,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-328C296.28,-325.54 263.61,-188.54 350,-191"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-324C273.7,-326.45 241.91,-189.45 333,-187"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M186.5,-326C275.65,-326 243.85,-189 333,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-328C277.59,-325.55 245.8,-188.55 333,-191"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="692,-589 692,-727 898,-727 898,-589 692,-589"/>
|
||||
<text text-anchor="middle" x="795" y="-711.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-704 898,-704 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-688.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-681 793,-704 "/>
|
||||
<text text-anchor="middle" x="822" y="-688.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-681 851,-704 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-688.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-681 898,-681 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-665.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-658 783,-658 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-642.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-635 783,-635 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-619.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-612 783,-612 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-596.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="783,-589 783,-681 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-665.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="783,-658 898,-658 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-642.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="783,-635 898,-635 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-619.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="783,-612 898,-612 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-596.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-727 675,-727 675,-589 857,-589 857,-727"/>
|
||||
<polygon fill="none" stroke="black" points="675,-704 675,-727 857,-727 857,-704 675,-704"/>
|
||||
<text text-anchor="start" x="757.5" y="-711.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="675,-681 675,-704 768,-704 768,-681 675,-681"/>
|
||||
<text text-anchor="start" x="679" y="-688.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-681 768,-704 818,-704 818,-681 768,-681"/>
|
||||
<text text-anchor="start" x="772" y="-688.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-681 818,-704 857,-704 857,-681 818,-681"/>
|
||||
<text text-anchor="start" x="822" y="-688.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-658 675,-681 755,-681 755,-658 675,-658"/>
|
||||
<text text-anchor="start" x="711" y="-665.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755,-658 755,-681 857,-681 857,-658 755,-658"/>
|
||||
<text text-anchor="start" x="790.5" y="-665.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-635 675,-658 755,-658 755,-635 675,-635"/>
|
||||
<text text-anchor="start" x="711" y="-642.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755,-635 755,-658 857,-658 857,-635 755,-635"/>
|
||||
<text text-anchor="start" x="793.5" y="-642.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-612 675,-635 755,-635 755,-612 675,-612"/>
|
||||
<text text-anchor="start" x="711" y="-619.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="755,-612 755,-635 857,-635 857,-612 755,-612"/>
|
||||
<text text-anchor="start" x="792.5" y="-619.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="675,-589 675,-612 755,-612 755,-589 675,-589"/>
|
||||
<text text-anchor="start" x="711" y="-596.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="755,-589 755,-612 857,-612 857,-589 755,-589"/>
|
||||
<text text-anchor="start" x="792" y="-596.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="692,-385 692,-523 898,-523 898,-385 692,-385"/>
|
||||
<text text-anchor="middle" x="795" y="-507.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-500 898,-500 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-484.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-477 793,-500 "/>
|
||||
<text text-anchor="middle" x="822" y="-484.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-477 851,-500 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-484.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-477 898,-477 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-461.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-454 783,-454 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-438.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-431 783,-431 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-415.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-408 783,-408 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-392.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="783,-385 783,-477 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-461.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="783,-454 898,-454 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-438.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="783,-431 898,-431 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-415.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="783,-408 898,-408 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-392.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-523 675,-523 675,-385 857,-385 857,-523"/>
|
||||
<polygon fill="none" stroke="black" points="675,-500 675,-523 857,-523 857,-500 675,-500"/>
|
||||
<text text-anchor="start" x="757.5" y="-507.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="675,-477 675,-500 768,-500 768,-477 675,-477"/>
|
||||
<text text-anchor="start" x="679" y="-484.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-477 768,-500 818,-500 818,-477 768,-477"/>
|
||||
<text text-anchor="start" x="772" y="-484.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-477 818,-500 857,-500 857,-477 818,-477"/>
|
||||
<text text-anchor="start" x="822" y="-484.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-454 675,-477 755,-477 755,-454 675,-454"/>
|
||||
<text text-anchor="start" x="711" y="-461.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755,-454 755,-477 857,-477 857,-454 755,-454"/>
|
||||
<text text-anchor="start" x="790.5" y="-461.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-431 675,-454 755,-454 755,-431 675,-431"/>
|
||||
<text text-anchor="start" x="711" y="-438.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755,-431 755,-454 857,-454 857,-431 755,-431"/>
|
||||
<text text-anchor="start" x="793.5" y="-438.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-408 675,-431 755,-431 755,-408 675,-408"/>
|
||||
<text text-anchor="start" x="711" y="-415.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="755,-408 755,-431 857,-431 857,-408 755,-408"/>
|
||||
<text text-anchor="start" x="792.5" y="-415.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="675,-385 675,-408 755,-408 755,-385 675,-385"/>
|
||||
<text text-anchor="start" x="711" y="-392.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="755,-385 755,-408 857,-408 857,-385 755,-385"/>
|
||||
<text text-anchor="start" x="792" y="-392.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="692,-168.5 692,-329.5 898,-329.5 898,-168.5 692,-168.5"/>
|
||||
<text text-anchor="middle" x="795" y="-314.3" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="692,-306.5 898,-306.5 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-291.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-283.5 793,-306.5 "/>
|
||||
<text text-anchor="middle" x="822" y="-291.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-283.5 851,-306.5 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-291.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-283.5 898,-283.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-268.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-260.5 780,-260.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-245.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-237.5 780,-237.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-222.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-214.5 780,-214.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-199.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="692,-191.5 780,-191.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-176.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="780,-168.5 780,-283.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-268.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="780,-260.5 898,-260.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-245.3" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polyline fill="none" stroke="black" points="780,-237.5 898,-237.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-222.3" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polyline fill="none" stroke="black" points="780,-214.5 898,-214.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-199.3" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polyline fill="none" stroke="black" points="780,-191.5 898,-191.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-176.3" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-330.5 675,-330.5 675,-169.5 857,-169.5 857,-330.5"/>
|
||||
<polygon fill="none" stroke="black" points="675,-307 675,-330 857,-330 857,-307 675,-307"/>
|
||||
<text text-anchor="start" x="757.5" y="-314.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="675,-284 675,-307 768,-307 768,-284 675,-284"/>
|
||||
<text text-anchor="start" x="679" y="-291.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-284 768,-307 818,-307 818,-284 768,-284"/>
|
||||
<text text-anchor="start" x="772" y="-291.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-284 818,-307 857,-307 857,-284 818,-284"/>
|
||||
<text text-anchor="start" x="822" y="-291.8" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-261 675,-284 752,-284 752,-261 675,-261"/>
|
||||
<text text-anchor="start" x="709.5" y="-268.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="752,-261 752,-284 857,-284 857,-261 752,-261"/>
|
||||
<text text-anchor="start" x="789" y="-268.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-238 675,-261 752,-261 752,-238 675,-238"/>
|
||||
<text text-anchor="start" x="709.5" y="-245.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="752,-238 752,-261 857,-261 857,-238 752,-238"/>
|
||||
<text text-anchor="start" x="788" y="-245.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-215 675,-238 752,-238 752,-215 675,-215"/>
|
||||
<text text-anchor="start" x="709.5" y="-222.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="752,-215 752,-238 857,-238 857,-215 752,-215"/>
|
||||
<text text-anchor="start" x="786" y="-222.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polygon fill="none" stroke="black" points="675,-192 675,-215 752,-215 752,-192 675,-192"/>
|
||||
<text text-anchor="start" x="709.5" y="-199.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="752,-192 752,-215 857,-215 857,-192 752,-192"/>
|
||||
<text text-anchor="start" x="786" y="-199.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polygon fill="none" stroke="black" points="675,-169 675,-192 752,-192 752,-169 675,-169"/>
|
||||
<text text-anchor="start" x="709.5" y="-176.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="752,-169 752,-192 857,-192 857,-169 752,-169"/>
|
||||
<text text-anchor="start" x="790.5" y="-176.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
</g>
|
||||
<!-- _F1 -->
|
||||
<!-- _ferrule_crimp_1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="15.5,-60 190.5,-60 190.5,-96 15.5,-96 15.5,-60"/>
|
||||
<text text-anchor="start" x="19" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule, 0.25 mm²  </text>
|
||||
<text text-anchor="start" x="180" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="15.5,-67.5 15.5,-88.5 190.5,-88.5 190.5,-67.5 15.5,-67.5"/>
|
||||
<title>_ferrule_crimp_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="189,-96 0,-96 0,-60 189,-60 189,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-66 0.5,-89 87.5,-89 87.5,-66 0.5,-66"/>
|
||||
<text text-anchor="start" x="4.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87.5,-66 87.5,-89 154.5,-89 154.5,-66 87.5,-66"/>
|
||||
<text text-anchor="start" x="91.5" y="-73.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="154.5,-66 154.5,-89 181.5,-89 181.5,-66 154.5,-66"/>
|
||||
<text text-anchor="start" x="158.5" y="-73.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="181.5,-66 181.5,-89 189.5,-89 189.5,-66 181.5,-66"/>
|
||||
<polygon fill="none" stroke="black" points="181.5,-66 181.5,-89 189.5,-89 189.5,-66 181.5,-66"/>
|
||||
</g>
|
||||
<!-- W4 -->
|
||||
<g id="node10" class="node">
|
||||
<title>W4</title>
|
||||
<polygon fill="none" stroke="black" points="548,-143 350,-143 350,-13 548,-13 548,-143"/>
|
||||
<polygon fill="none" stroke="black" points="350,-120 350,-143 548,-143 548,-120 350,-120"/>
|
||||
<text text-anchor="start" x="438" y="-127.8" font-family="arial" font-size="14.00">W4</text>
|
||||
<polygon fill="none" stroke="black" points="350,-97 350,-120 373,-120 373,-97 350,-97"/>
|
||||
<text text-anchor="start" x="354" y="-104.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-97 373,-120 505,-120 505,-97 373,-97"/>
|
||||
<text text-anchor="start" x="377" y="-104.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-97 505,-120 548,-120 548,-97 505,-97"/>
|
||||
<text text-anchor="start" x="509" y="-104.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="447" y="-85.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="428" y="-68.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="496" y="-68.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-57 350,-63 548,-63 548,-57 350,-57"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-58 547,-58 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-62 351,-62 "/>
|
||||
<text text-anchor="start" x="427.5" y="-43.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="496" y="-43.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-32 350,-38 548,-38 548,-32 350,-32"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-33 547,-33 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-37 351,-37 "/>
|
||||
<text text-anchor="start" x="374.5" y="-18.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="531,-143 333,-143 333,-13 531,-13 531,-143"/>
|
||||
<polygon fill="none" stroke="black" points="333,-120 333,-143 531,-143 531,-120 333,-120"/>
|
||||
<text text-anchor="start" x="421" y="-127.8" font-family="arial" font-size="14.00">W4</text>
|
||||
<polygon fill="none" stroke="black" points="333,-97 333,-120 356,-120 356,-97 333,-97"/>
|
||||
<text text-anchor="start" x="337" y="-104.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-97 356,-120 488,-120 488,-97 356,-97"/>
|
||||
<text text-anchor="start" x="360" y="-104.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-97 488,-120 531,-120 531,-97 488,-97"/>
|
||||
<text text-anchor="start" x="492" y="-104.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="430" y="-85.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411" y="-68.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="479" y="-68.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-61 333,-63 531,-63 531,-61 333,-61"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-59 333,-61 531,-61 531,-59 333,-59"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-57 333,-59 531,-59 531,-57 333,-57"/>
|
||||
<text text-anchor="start" x="410.5" y="-43.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="479" y="-43.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-36 333,-38 531,-38 531,-36 333,-36"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-34 333,-36 531,-36 531,-34 333,-34"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-32 333,-34 531,-34 531,-32 333,-32"/>
|
||||
<text text-anchor="start" x="357.5" y="-18.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W4 -->
|
||||
<!-- _ferrule_crimp_1--W4 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>_F1:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-76C261.21,-76.64 277.86,-58.64 350,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-78C262.68,-78 279.32,-60 350,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-80C264.14,-79.36 280.79,-61.36 350,-62"/>
|
||||
<title>_ferrule_crimp_1:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-76C251.96,-76.72 266.97,-58.72 333,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-78C253.5,-78 268.5,-60 333,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-80C255.03,-79.28 270.04,-61.28 333,-62"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _ferrule_crimp_2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="15.5,0 190.5,0 190.5,-36 15.5,-36 15.5,0"/>
|
||||
<text text-anchor="start" x="19" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule, 0.25 mm²  </text>
|
||||
<text text-anchor="start" x="180" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="15.5,-7.5 15.5,-28.5 190.5,-28.5 190.5,-7.5 15.5,-7.5"/>
|
||||
<title>_ferrule_crimp_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="189,-36 0,-36 0,0 189,0 189,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-6 0.5,-29 87.5,-29 87.5,-6 0.5,-6"/>
|
||||
<text text-anchor="start" x="4.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87.5,-6 87.5,-29 154.5,-29 154.5,-6 87.5,-6"/>
|
||||
<text text-anchor="start" x="91.5" y="-13.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="154.5,-6 154.5,-29 181.5,-29 181.5,-6 154.5,-6"/>
|
||||
<text text-anchor="start" x="158.5" y="-13.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="181.5,-6 181.5,-29 189.5,-29 189.5,-6 181.5,-6"/>
|
||||
<polygon fill="none" stroke="black" points="181.5,-6 181.5,-29 189.5,-29 189.5,-6 181.5,-6"/>
|
||||
</g>
|
||||
<!-- _F2--W4 -->
|
||||
<g id="edge26" class="edge">
|
||||
<title>_F2:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-16C264.05,-16.6 280.8,-33.6 350,-33"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M192,-18C262.63,-18 279.37,-35 350,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-20C261.2,-19.4 277.95,-36.4 350,-37"/>
|
||||
<!-- _ferrule_crimp_2--W4 -->
|
||||
<g id="edge27" class="edge">
|
||||
<title>_ferrule_crimp_2:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-16C254.94,-16.67 270.05,-33.67 333,-33"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M189,-18C253.44,-18 268.56,-35 333,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-20C251.95,-19.33 267.06,-36.33 333,-37"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-670C611.76,-670.02 627.75,-668.02 692,-668"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-672C612.01,-672 627.99,-670 692,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-674C612.25,-673.98 628.24,-671.98 692,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-670C594.76,-670.02 610.75,-668.02 675,-668"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-672C595.01,-672 610.99,-670 675,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-674C595.25,-673.98 611.24,-671.98 675,-672"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-645C611.88,-645 627.87,-644 692,-644"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-647C612,-647 628,-646 692,-646"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-649C612.13,-649 628.12,-648 692,-648"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-645C594.88,-645 610.87,-644 675,-644"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-647C595,-647 611,-646 675,-646"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-649C595.13,-649 611.12,-648 675,-648"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-620C612.13,-620 628.12,-621 692,-621"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M548,-622C612,-622 628,-623 692,-623"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-624C611.88,-624 627.87,-625 692,-625"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-620C595.13,-620 611.12,-621 675,-621"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531,-622C595,-622 611,-623 675,-623"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-624C594.88,-624 610.87,-625 675,-625"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-595C612.38,-595.03 628.36,-598.03 692,-598"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M548,-597C612.01,-597 627.99,-600 692,-600"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-599C611.64,-598.97 627.62,-601.97 692,-602"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-595C595.38,-595.03 611.36,-598.03 675,-598"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531,-597C595.01,-597 610.99,-600 675,-600"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-599C594.64,-598.97 610.62,-601.97 675,-602"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-466C611.76,-466.02 627.75,-464.02 692,-464"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-468C612.01,-468 627.99,-466 692,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-470C612.25,-469.98 628.24,-467.98 692,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-466C594.76,-466.02 610.75,-464.02 675,-464"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-468C595.01,-468 610.99,-466 675,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-470C595.25,-469.98 611.24,-467.98 675,-468"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-441C611.88,-441 627.87,-440 692,-440"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-443C612,-443 628,-442 692,-442"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-445C612.13,-445 628.12,-444 692,-444"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-441C594.88,-441 610.87,-440 675,-440"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-443C595,-443 611,-442 675,-442"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-445C595.13,-445 611.12,-444 675,-444"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-416C612.13,-416 628.12,-417 692,-417"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M548,-418C612,-418 628,-419 692,-419"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-420C611.88,-420 627.87,-421 692,-421"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-416C595.13,-416 611.12,-417 675,-417"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531,-418C595,-418 611,-419 675,-419"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-420C594.88,-420 610.87,-421 675,-421"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-391C612.38,-391.03 628.36,-394.03 692,-394"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M548,-393C612.01,-393 627.99,-396 692,-396"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-395C611.64,-394.97 627.62,-397.97 692,-398"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-391C595.38,-391.03 611.36,-394.03 675,-394"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531,-393C595.01,-393 610.99,-396 675,-396"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-395C594.64,-394.97 610.62,-397.97 675,-398"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-262C613,-262.22 628.8,-270.22 692,-270"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-264C612.1,-264 627.9,-272 692,-272"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-266C611.2,-265.78 627,-273.78 692,-274"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-262C596.12,-262.26 611.87,-271.26 675,-271"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-264C595.12,-264 610.88,-273 675,-273"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-266C594.13,-265.74 609.88,-274.74 675,-275"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-237C610.97,-237.47 626.45,-224.47 692,-224"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M548,-239C612.26,-239 627.74,-226 692,-226"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-241C613.55,-240.53 629.03,-227.53 692,-228"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-237C593.97,-237.47 609.45,-224.47 675,-224"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M531,-239C595.26,-239 610.74,-226 675,-226"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-241C596.55,-240.53 612.03,-227.53 675,-228"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-212C611.04,-212.36 626.66,-201.36 692,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M548,-214C612.19,-214 627.81,-203 692,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-216C613.34,-215.64 628.96,-204.64 692,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-212C594.04,-212.36 609.66,-201.36 675,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M531,-214C595.19,-214 610.81,-203 675,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-216C596.34,-215.64 611.96,-204.64 675,-205"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-187C611.13,-187.26 626.88,-178.26 692,-178"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M548,-189C612.12,-189 627.88,-180 692,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-191C613.12,-190.74 628.87,-181.74 692,-182"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-187C594.13,-187.26 609.88,-178.26 675,-178"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M531,-189C595.12,-189 610.88,-180 675,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-191C596.12,-190.74 611.87,-181.74 675,-182"/>
|
||||
</g>
|
||||
<!-- W4--X4 -->
|
||||
<g id="edge27" class="edge">
|
||||
<g id="edge26" class="edge">
|
||||
<title>W4:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-58C663.76,-60.74 579.96,-272.74 692,-270"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-60C661.9,-60 578.1,-272 692,-272"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-62C660.04,-59.26 576.24,-271.26 692,-274"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-58C647.13,-60.74 562.59,-273.74 675,-271"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-60C645.27,-60 560.73,-273 675,-273"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-62C643.41,-59.26 558.87,-272.26 675,-275"/>
|
||||
</g>
|
||||
<!-- W4--X4 -->
|
||||
<g id="edge28" class="edge">
|
||||
<title>W4:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-33C664.5,-35.74 579.22,-249.74 692,-247"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-35C662.64,-35 577.36,-249 692,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-37C660.78,-34.26 575.5,-248.26 692,-251"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-33C647.5,-35.74 562.22,-249.74 675,-247"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-35C645.64,-35 560.36,-249 675,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-37C643.78,-34.26 558.5,-248.26 675,-251"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Crimp ferrule, 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 5 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 8 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 2 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.9</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">Wire, 0.14 mm², BU</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², GN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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">Wire, 0.14 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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">Wire, 0.14 mm², VT</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Crimp ferrule, 0.25 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 5 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 8 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 2 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.9</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">Wire, 0.14 mm², BU</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², GN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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">Wire, 0.14 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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">Wire, 0.14 mm², VT</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.14 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</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>
|
||||
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |
@ -4,495 +4,509 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="906pt" height="763pt"
|
||||
viewBox="0.00 0.00 906.00 763.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="865pt" height="763pt"
|
||||
viewBox="0.00 0.00 865.00 763.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 759)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-759 902,-759 902,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-759 861,-759 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-292 0,-522 206,-522 206,-292 0,-292"/>
|
||||
<text text-anchor="middle" x="103" y="-506.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-499 206,-499 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-483.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-476 101,-499 "/>
|
||||
<text text-anchor="middle" x="130" y="-483.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-476 159,-499 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-483.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-476 206,-476 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-460.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-453 117,-453 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-437.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="0,-430 117,-430 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-414.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-407 117,-407 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-391.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="0,-384 117,-384 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-368.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polyline fill="none" stroke="black" points="0,-361 117,-361 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-345.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polyline fill="none" stroke="black" points="0,-338 117,-338 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-322.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polyline fill="none" stroke="black" points="0,-315 117,-315 "/>
|
||||
<text text-anchor="middle" x="58.5" y="-299.8" font-family="arial" font-size="14.00">N/C</text>
|
||||
<polyline fill="none" stroke="black" points="117,-292 117,-476 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-460.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="117,-453 206,-453 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-437.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="117,-430 206,-430 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-414.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="117,-407 206,-407 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-391.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="117,-384 206,-384 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-368.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="117,-361 206,-361 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-345.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="117,-338 206,-338 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-322.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="117,-315 206,-315 "/>
|
||||
<text text-anchor="middle" x="161.5" y="-299.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="white" stroke="transparent" points="185.5,-522 3.5,-522 3.5,-292 185.5,-292 185.5,-522"/>
|
||||
<polygon fill="none" stroke="black" points="3.5,-499 3.5,-522 185.5,-522 185.5,-499 3.5,-499"/>
|
||||
<text text-anchor="start" x="86" y="-506.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-476 3.5,-499 96.5,-499 96.5,-476 3.5,-476"/>
|
||||
<text text-anchor="start" x="7.5" y="-483.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-476 96.5,-499 146.5,-499 146.5,-476 96.5,-476"/>
|
||||
<text text-anchor="start" x="100.5" y="-483.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="146.5,-476 146.5,-499 185.5,-499 185.5,-476 146.5,-476"/>
|
||||
<text text-anchor="start" x="150.5" y="-483.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-453 3.5,-476 109.5,-476 109.5,-453 3.5,-453"/>
|
||||
<text text-anchor="start" x="41" y="-460.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-453 109.5,-476 185.5,-476 185.5,-453 109.5,-453"/>
|
||||
<text text-anchor="start" x="143.5" y="-460.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-430 3.5,-453 109.5,-453 109.5,-430 3.5,-430"/>
|
||||
<text text-anchor="start" x="44" y="-437.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-430 109.5,-453 185.5,-453 185.5,-430 109.5,-430"/>
|
||||
<text text-anchor="start" x="143.5" y="-437.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-407 3.5,-430 109.5,-430 109.5,-407 3.5,-407"/>
|
||||
<text text-anchor="start" x="43" y="-414.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-407 109.5,-430 185.5,-430 185.5,-407 109.5,-407"/>
|
||||
<text text-anchor="start" x="143.5" y="-414.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-384 3.5,-407 109.5,-407 109.5,-384 3.5,-384"/>
|
||||
<text text-anchor="start" x="42.5" y="-391.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-384 109.5,-407 185.5,-407 185.5,-384 109.5,-384"/>
|
||||
<text text-anchor="start" x="143.5" y="-391.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-361 3.5,-384 109.5,-384 109.5,-361 3.5,-361"/>
|
||||
<text text-anchor="start" x="38" y="-368.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-361 109.5,-384 185.5,-384 185.5,-361 109.5,-361"/>
|
||||
<text text-anchor="start" x="143.5" y="-368.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-338 3.5,-361 109.5,-361 109.5,-338 3.5,-338"/>
|
||||
<text text-anchor="start" x="38" y="-345.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-338 109.5,-361 185.5,-361 185.5,-338 109.5,-338"/>
|
||||
<text text-anchor="start" x="143.5" y="-345.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-315 3.5,-338 109.5,-338 109.5,-315 3.5,-315"/>
|
||||
<text text-anchor="start" x="42.5" y="-322.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-315 109.5,-338 185.5,-338 185.5,-315 109.5,-315"/>
|
||||
<text text-anchor="start" x="143.5" y="-322.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="3.5,-292 3.5,-315 109.5,-315 109.5,-292 3.5,-292"/>
|
||||
<text text-anchor="start" x="44.5" y="-299.8" font-family="arial" font-size="14.00">N/C</text>
|
||||
<polygon fill="none" stroke="black" points="109.5,-292 109.5,-315 185.5,-315 185.5,-292 109.5,-292"/>
|
||||
<text text-anchor="start" x="143.5" y="-299.8" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node7" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-755 350,-755 350,-575 548,-575 548,-755"/>
|
||||
<polygon fill="none" stroke="black" points="350,-732 350,-755 548,-755 548,-732 350,-732"/>
|
||||
<text text-anchor="start" x="438" y="-739.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350,-709 350,-732 373,-732 373,-709 350,-709"/>
|
||||
<text text-anchor="start" x="354" y="-716.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-709 373,-732 505,-732 505,-709 373,-709"/>
|
||||
<text text-anchor="start" x="377" y="-716.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-709 505,-732 548,-732 548,-709 505,-709"/>
|
||||
<text text-anchor="start" x="509" y="-716.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="447" y="-697.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-680.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="439.5" y="-680.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500" y="-680.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-669 350,-675 548,-675 548,-669 350,-669"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-670 547,-670 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-674 351,-674 "/>
|
||||
<text text-anchor="start" x="370" y="-655.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="439" y="-655.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="500" y="-655.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-644 350,-650 548,-650 548,-644 350,-644"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-645 547,-645 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-649 351,-649 "/>
|
||||
<text text-anchor="start" x="370" y="-630.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="439.5" y="-630.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="500" y="-630.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350,-619 350,-625 548,-625 548,-619 350,-619"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-620 547,-620 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-624 351,-624 "/>
|
||||
<text text-anchor="start" x="370" y="-605.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="438" y="-605.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="500" y="-605.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350,-594 350,-600 548,-600 548,-594 350,-594"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-595 547,-595 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-599 351,-599 "/>
|
||||
<text text-anchor="start" x="382" y="-580.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-755 333,-755 333,-575 531,-575 531,-755"/>
|
||||
<polygon fill="none" stroke="black" points="333,-732 333,-755 531,-755 531,-732 333,-732"/>
|
||||
<text text-anchor="start" x="421" y="-739.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="333,-709 333,-732 356,-732 356,-709 333,-709"/>
|
||||
<text text-anchor="start" x="337" y="-716.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-709 356,-732 488,-732 488,-709 356,-709"/>
|
||||
<text text-anchor="start" x="360" y="-716.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-709 488,-732 531,-732 531,-709 488,-709"/>
|
||||
<text text-anchor="start" x="492" y="-716.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="430" y="-697.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-680.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-680.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483" y="-680.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-673 333,-675 531,-675 531,-673 333,-673"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-671 333,-673 531,-673 531,-671 333,-671"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-669 333,-671 531,-671 531,-669 333,-669"/>
|
||||
<text text-anchor="start" x="353" y="-655.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-655.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="483" y="-655.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-648 333,-650 531,-650 531,-648 333,-648"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-646 333,-648 531,-648 531,-646 333,-646"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-644 333,-646 531,-646 531,-644 333,-644"/>
|
||||
<text text-anchor="start" x="353" y="-630.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-630.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="483" y="-630.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-623 333,-625 531,-625 531,-623 333,-623"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="333,-621 333,-623 531,-623 531,-621 333,-621"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-619 333,-621 531,-621 531,-619 333,-619"/>
|
||||
<text text-anchor="start" x="353" y="-605.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="421" y="-605.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="483" y="-605.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-598 333,-600 531,-600 531,-598 333,-598"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="333,-596 333,-598 531,-598 531,-596 333,-596"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-594 333,-596 531,-596 531,-594 333,-594"/>
|
||||
<text text-anchor="start" x="365" y="-580.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C319.94,-465.72 239.79,-672.72 350,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C318.07,-465 237.93,-672 350,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C316.21,-464.28 236.06,-671.28 350,-674"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C301.08,-465.71 222.16,-672.71 333,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C299.21,-465 220.29,-672 333,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C297.34,-464.29 218.42,-671.29 333,-674"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-440C319.21,-442.72 240.52,-647.72 350,-645"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-442C317.34,-442 238.66,-647 350,-647"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-444C315.48,-441.28 236.79,-646.28 350,-649"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-440C300.36,-442.71 222.89,-647.71 333,-645"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-442C298.49,-442 221.01,-647 333,-647"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-444C296.61,-441.29 219.14,-646.29 333,-649"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-417C318.49,-419.71 241.25,-622.71 350,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-419C316.62,-419 239.38,-622 350,-622"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-421C314.75,-418.29 237.51,-621.29 350,-624"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-417C299.64,-419.7 223.61,-622.7 333,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-419C297.76,-419 221.74,-622 333,-622"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-421C295.89,-418.3 219.86,-621.3 333,-624"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-393C318.12,-395.71 241.62,-597.71 350,-595"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-395C316.25,-395 239.75,-597 350,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-397C314.38,-394.29 237.88,-596.29 350,-599"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-393C299.28,-395.7 223.97,-597.7 333,-595"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-395C297.4,-395 222.1,-597 333,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-397C295.53,-394.3 220.22,-596.3 333,-599"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node8" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-551 350,-551 350,-371 548,-371 548,-551"/>
|
||||
<polygon fill="none" stroke="black" points="350,-528 350,-551 548,-551 548,-528 350,-528"/>
|
||||
<text text-anchor="start" x="438" y="-535.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="350,-505 350,-528 373,-528 373,-505 350,-505"/>
|
||||
<text text-anchor="start" x="354" y="-512.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-505 373,-528 505,-528 505,-505 373,-505"/>
|
||||
<text text-anchor="start" x="377" y="-512.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-505 505,-528 548,-528 548,-505 505,-505"/>
|
||||
<text text-anchor="start" x="509" y="-512.8" font-family="arial" font-size="14.00">0.4 m</text>
|
||||
<text text-anchor="start" x="447" y="-493.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-476.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="439.5" y="-476.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500" y="-476.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-465 350,-471 548,-471 548,-465 350,-465"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-466 547,-466 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-470 351,-470 "/>
|
||||
<text text-anchor="start" x="370" y="-451.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="439" y="-451.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="500" y="-451.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-440 350,-446 548,-446 548,-440 350,-440"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-441 547,-441 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-445 351,-445 "/>
|
||||
<text text-anchor="start" x="370" y="-426.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="439.5" y="-426.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="500" y="-426.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350,-415 350,-421 548,-421 548,-415 350,-415"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-416 547,-416 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-420 351,-420 "/>
|
||||
<text text-anchor="start" x="370" y="-401.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="438" y="-401.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="500" y="-401.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350,-390 350,-396 548,-396 548,-390 350,-390"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-391 547,-391 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-395 351,-395 "/>
|
||||
<text text-anchor="start" x="382" y="-376.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-551 333,-551 333,-371 531,-371 531,-551"/>
|
||||
<polygon fill="none" stroke="black" points="333,-528 333,-551 531,-551 531,-528 333,-528"/>
|
||||
<text text-anchor="start" x="421" y="-535.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="333,-505 333,-528 356,-528 356,-505 333,-505"/>
|
||||
<text text-anchor="start" x="337" y="-512.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-505 356,-528 488,-528 488,-505 356,-505"/>
|
||||
<text text-anchor="start" x="360" y="-512.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-505 488,-528 531,-528 531,-505 488,-505"/>
|
||||
<text text-anchor="start" x="492" y="-512.8" font-family="arial" font-size="14.00">0.4 m</text>
|
||||
<text text-anchor="start" x="430" y="-493.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-476.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-476.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483" y="-476.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-469 333,-471 531,-471 531,-469 333,-469"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-467 333,-469 531,-469 531,-467 333,-467"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-465 333,-467 531,-467 531,-465 333,-465"/>
|
||||
<text text-anchor="start" x="353" y="-451.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-451.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="483" y="-451.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-444 333,-446 531,-446 531,-444 333,-444"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-442 333,-444 531,-444 531,-442 333,-442"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-440 333,-442 531,-442 531,-440 333,-440"/>
|
||||
<text text-anchor="start" x="353" y="-426.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-426.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="483" y="-426.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-419 333,-421 531,-421 531,-419 333,-419"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="333,-417 333,-419 531,-419 531,-417 333,-417"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-415 333,-417 531,-417 531,-415 333,-415"/>
|
||||
<text text-anchor="start" x="353" y="-401.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="421" y="-401.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="483" y="-401.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-394 333,-396 531,-396 531,-394 333,-394"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="333,-392 333,-394 531,-394 531,-392 333,-392"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-390 333,-392 531,-392 531,-390 333,-390"/>
|
||||
<text text-anchor="start" x="365" y="-376.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C270.38,-463.03 286.36,-466.03 350,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C270.01,-465 285.99,-468 350,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C269.64,-466.97 285.62,-469.97 350,-470"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C251.99,-463.03 268.24,-466.03 333,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C251.62,-465 267.88,-468 333,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C251.26,-466.97 267.51,-469.97 333,-470"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-440C270.13,-440 286.12,-441 350,-441"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-442C270,-442 286,-443 350,-443"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-444C269.88,-444 285.87,-445 350,-445"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-440C251.74,-440 268.01,-441 333,-441"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-442C251.61,-442 267.89,-443 333,-443"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-444C251.49,-444 267.76,-445 333,-445"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-417C269.88,-417 285.87,-416 350,-416"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-419C270,-419 286,-418 350,-418"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-421C270.13,-421 286.12,-420 350,-420"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-417C251.49,-417 267.76,-416 333,-416"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-419C251.61,-419 267.89,-418 333,-418"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-421C251.74,-421 268.01,-420 333,-420"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-393C269.76,-393.02 285.75,-391.02 350,-391"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-395C270.01,-395 285.99,-393 350,-393"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-397C270.25,-396.98 286.24,-394.98 350,-395"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-393C251.37,-393.01 267.64,-391.01 333,-391"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-395C251.62,-395 267.88,-393 333,-393"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-397C251.86,-396.99 268.13,-394.99 333,-395"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node9" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="548,-347 350,-347 350,-167 548,-167 548,-347"/>
|
||||
<polygon fill="none" stroke="black" points="350,-324 350,-347 548,-347 548,-324 350,-324"/>
|
||||
<text text-anchor="start" x="438" y="-331.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="350,-301 350,-324 373,-324 373,-301 350,-301"/>
|
||||
<text text-anchor="start" x="354" y="-308.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-301 373,-324 505,-324 505,-301 373,-301"/>
|
||||
<text text-anchor="start" x="377" y="-308.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-301 505,-324 548,-324 548,-301 505,-301"/>
|
||||
<text text-anchor="start" x="509" y="-308.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="447" y="-289.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="370" y="-272.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="440" y="-272.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="500.5" y="-272.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-261 350,-267 548,-267 548,-261 350,-261"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-262 547,-262 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-266 351,-266 "/>
|
||||
<text text-anchor="start" x="370" y="-247.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="440" y="-247.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="500.5" y="-247.8" font-family="arial" font-size="14.00">X4:3</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="350,-236 350,-242 548,-242 548,-236 350,-236"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-237 547,-237 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-241 351,-241 "/>
|
||||
<text text-anchor="start" x="370" y="-222.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="438" y="-222.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="500.5" y="-222.8" font-family="arial" font-size="14.00">X4:4</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="350,-211 350,-217 548,-217 548,-211 350,-211"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-212 547,-212 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-216 351,-216 "/>
|
||||
<text text-anchor="start" x="370" y="-197.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="440.5" y="-197.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="500.5" y="-197.8" font-family="arial" font-size="14.00">X4:5</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="350,-186 350,-192 548,-192 548,-186 350,-186"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-187 547,-187 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-191 351,-191 "/>
|
||||
<text text-anchor="start" x="382" y="-172.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="531,-347 333,-347 333,-167 531,-167 531,-347"/>
|
||||
<polygon fill="none" stroke="black" points="333,-324 333,-347 531,-347 531,-324 333,-324"/>
|
||||
<text text-anchor="start" x="421" y="-331.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="333,-301 333,-324 356,-324 356,-301 333,-301"/>
|
||||
<text text-anchor="start" x="337" y="-308.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-301 356,-324 488,-324 488,-301 356,-301"/>
|
||||
<text text-anchor="start" x="360" y="-308.8" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-301 488,-324 531,-324 531,-301 488,-301"/>
|
||||
<text text-anchor="start" x="492" y="-308.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="430" y="-289.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="353" y="-272.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="423" y="-272.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="483.5" y="-272.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-265 333,-267 531,-267 531,-265 333,-265"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-263 333,-265 531,-265 531,-263 333,-263"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-261 333,-263 531,-263 531,-261 333,-261"/>
|
||||
<text text-anchor="start" x="353" y="-247.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="423" y="-247.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="483.5" y="-247.8" font-family="arial" font-size="14.00">X4:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-240 333,-242 531,-242 531,-240 333,-240"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="333,-238 333,-240 531,-240 531,-238 333,-238"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-236 333,-238 531,-238 531,-236 333,-236"/>
|
||||
<text text-anchor="start" x="353" y="-222.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="421" y="-222.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="483.5" y="-222.8" font-family="arial" font-size="14.00">X4:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-215 333,-217 531,-217 531,-215 333,-215"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="333,-213 333,-215 531,-215 531,-213 333,-213"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-211 333,-213 531,-213 531,-211 333,-211"/>
|
||||
<text text-anchor="start" x="353" y="-197.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="423.5" y="-197.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="483.5" y="-197.8" font-family="arial" font-size="14.00">X4:5</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-190 333,-192 531,-192 531,-190 333,-190"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="333,-188 333,-190 531,-190 531,-188 333,-188"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-186 333,-188 531,-188 531,-186 333,-186"/>
|
||||
<text text-anchor="start" x="365" y="-172.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-463C314.02,-465.71 238.24,-264.71 350,-262"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-465C315.89,-465 240.11,-264 350,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-467C317.76,-464.29 241.98,-263.29 350,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-463C295.17,-465.7 220.58,-264.7 333,-262"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-465C297.04,-465 222.46,-264 333,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-467C298.92,-464.3 224.33,-263.3 333,-266"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-370C291.17,-372.44 260.93,-239.44 350,-237"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M206,-372C293.12,-372 262.88,-239 350,-239"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-374C295.07,-371.56 264.83,-238.56 350,-241"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-370C272.49,-372.43 243.11,-239.43 333,-237"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M186.5,-372C274.44,-372 245.06,-239 333,-239"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-374C276.39,-371.57 247.01,-238.57 333,-241"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-347C291.78,-349.45 260.33,-214.45 350,-212"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M206,-349C293.73,-349 262.27,-214 350,-214"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-351C295.67,-348.55 264.22,-213.55 350,-216"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-347C273.09,-349.44 242.51,-214.44 333,-212"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M186.5,-349C275.04,-349 244.46,-214 333,-214"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-351C276.99,-348.56 246.41,-213.56 333,-216"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-324C292.39,-326.46 259.72,-189.46 350,-187"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M206,-326C294.34,-326 261.66,-189 350,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-328C296.28,-325.54 263.61,-188.54 350,-191"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-324C273.7,-326.45 241.91,-189.45 333,-187"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M186.5,-326C275.65,-326 243.85,-189 333,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-328C277.59,-325.55 245.8,-188.55 333,-191"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="692,-589 692,-727 898,-727 898,-589 692,-589"/>
|
||||
<text text-anchor="middle" x="795" y="-711.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-704 898,-704 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-688.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-681 793,-704 "/>
|
||||
<text text-anchor="middle" x="822" y="-688.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-681 851,-704 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-688.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-681 898,-681 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-665.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-658 783,-658 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-642.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-635 783,-635 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-619.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-612 783,-612 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-596.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="783,-589 783,-681 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-665.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="783,-658 898,-658 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-642.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="783,-635 898,-635 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-619.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="783,-612 898,-612 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-596.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-727 675,-727 675,-589 857,-589 857,-727"/>
|
||||
<polygon fill="none" stroke="black" points="675,-704 675,-727 857,-727 857,-704 675,-704"/>
|
||||
<text text-anchor="start" x="757.5" y="-711.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="675,-681 675,-704 768,-704 768,-681 675,-681"/>
|
||||
<text text-anchor="start" x="679" y="-688.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-681 768,-704 818,-704 818,-681 768,-681"/>
|
||||
<text text-anchor="start" x="772" y="-688.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-681 818,-704 857,-704 857,-681 818,-681"/>
|
||||
<text text-anchor="start" x="822" y="-688.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-658 675,-681 755,-681 755,-658 675,-658"/>
|
||||
<text text-anchor="start" x="711" y="-665.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755,-658 755,-681 857,-681 857,-658 755,-658"/>
|
||||
<text text-anchor="start" x="790.5" y="-665.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-635 675,-658 755,-658 755,-635 675,-635"/>
|
||||
<text text-anchor="start" x="711" y="-642.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755,-635 755,-658 857,-658 857,-635 755,-635"/>
|
||||
<text text-anchor="start" x="793.5" y="-642.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-612 675,-635 755,-635 755,-612 675,-612"/>
|
||||
<text text-anchor="start" x="711" y="-619.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="755,-612 755,-635 857,-635 857,-612 755,-612"/>
|
||||
<text text-anchor="start" x="792.5" y="-619.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="675,-589 675,-612 755,-612 755,-589 675,-589"/>
|
||||
<text text-anchor="start" x="711" y="-596.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="755,-589 755,-612 857,-612 857,-589 755,-589"/>
|
||||
<text text-anchor="start" x="792" y="-596.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="692,-385 692,-523 898,-523 898,-385 692,-385"/>
|
||||
<text text-anchor="middle" x="795" y="-507.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-500 898,-500 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-484.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-477 793,-500 "/>
|
||||
<text text-anchor="middle" x="822" y="-484.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-477 851,-500 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-484.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-477 898,-477 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-461.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-454 783,-454 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-438.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-431 783,-431 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-415.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-408 783,-408 "/>
|
||||
<text text-anchor="middle" x="737.5" y="-392.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="783,-385 783,-477 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-461.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="783,-454 898,-454 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-438.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polyline fill="none" stroke="black" points="783,-431 898,-431 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-415.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="783,-408 898,-408 "/>
|
||||
<text text-anchor="middle" x="840.5" y="-392.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-523 675,-523 675,-385 857,-385 857,-523"/>
|
||||
<polygon fill="none" stroke="black" points="675,-500 675,-523 857,-523 857,-500 675,-500"/>
|
||||
<text text-anchor="start" x="757.5" y="-507.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="675,-477 675,-500 768,-500 768,-477 675,-477"/>
|
||||
<text text-anchor="start" x="679" y="-484.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-477 768,-500 818,-500 818,-477 768,-477"/>
|
||||
<text text-anchor="start" x="772" y="-484.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-477 818,-500 857,-500 857,-477 818,-477"/>
|
||||
<text text-anchor="start" x="822" y="-484.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-454 675,-477 755,-477 755,-454 675,-454"/>
|
||||
<text text-anchor="start" x="711" y="-461.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755,-454 755,-477 857,-477 857,-454 755,-454"/>
|
||||
<text text-anchor="start" x="790.5" y="-461.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-431 675,-454 755,-454 755,-431 675,-431"/>
|
||||
<text text-anchor="start" x="711" y="-438.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755,-431 755,-454 857,-454 857,-431 755,-431"/>
|
||||
<text text-anchor="start" x="793.5" y="-438.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-408 675,-431 755,-431 755,-408 675,-408"/>
|
||||
<text text-anchor="start" x="711" y="-415.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="755,-408 755,-431 857,-431 857,-408 755,-408"/>
|
||||
<text text-anchor="start" x="792.5" y="-415.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="675,-385 675,-408 755,-408 755,-385 675,-385"/>
|
||||
<text text-anchor="start" x="711" y="-392.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="755,-385 755,-408 857,-408 857,-385 755,-385"/>
|
||||
<text text-anchor="start" x="792" y="-392.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="692,-168.5 692,-329.5 898,-329.5 898,-168.5 692,-168.5"/>
|
||||
<text text-anchor="middle" x="795" y="-314.3" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="692,-306.5 898,-306.5 "/>
|
||||
<text text-anchor="middle" x="742.5" y="-291.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="793,-283.5 793,-306.5 "/>
|
||||
<text text-anchor="middle" x="822" y="-291.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="851,-283.5 851,-306.5 "/>
|
||||
<text text-anchor="middle" x="874.5" y="-291.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polyline fill="none" stroke="black" points="692,-283.5 898,-283.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-268.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="692,-260.5 780,-260.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-245.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="692,-237.5 780,-237.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-222.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="692,-214.5 780,-214.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-199.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="692,-191.5 780,-191.5 "/>
|
||||
<text text-anchor="middle" x="736" y="-176.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="780,-168.5 780,-283.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-268.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="780,-260.5 898,-260.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-245.3" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polyline fill="none" stroke="black" points="780,-237.5 898,-237.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-222.3" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polyline fill="none" stroke="black" points="780,-214.5 898,-214.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-199.3" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polyline fill="none" stroke="black" points="780,-191.5 898,-191.5 "/>
|
||||
<text text-anchor="middle" x="839" y="-176.3" font-family="arial" font-size="14.00">SCK</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-330.5 675,-330.5 675,-169.5 857,-169.5 857,-330.5"/>
|
||||
<polygon fill="none" stroke="black" points="675,-307 675,-330 857,-330 857,-307 675,-307"/>
|
||||
<text text-anchor="start" x="757.5" y="-314.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="675,-284 675,-307 768,-307 768,-284 675,-284"/>
|
||||
<text text-anchor="start" x="679" y="-291.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="768,-284 768,-307 818,-307 818,-284 768,-284"/>
|
||||
<text text-anchor="start" x="772" y="-291.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818,-284 818,-307 857,-307 857,-284 818,-284"/>
|
||||
<text text-anchor="start" x="822" y="-291.8" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="675,-261 675,-284 752,-284 752,-261 675,-261"/>
|
||||
<text text-anchor="start" x="709.5" y="-268.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="752,-261 752,-284 857,-284 857,-261 752,-261"/>
|
||||
<text text-anchor="start" x="789" y="-268.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="675,-238 675,-261 752,-261 752,-238 675,-238"/>
|
||||
<text text-anchor="start" x="709.5" y="-245.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="752,-238 752,-261 857,-261 857,-238 752,-238"/>
|
||||
<text text-anchor="start" x="788" y="-245.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polygon fill="none" stroke="black" points="675,-215 675,-238 752,-238 752,-215 675,-215"/>
|
||||
<text text-anchor="start" x="709.5" y="-222.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="752,-215 752,-238 857,-238 857,-215 752,-215"/>
|
||||
<text text-anchor="start" x="786" y="-222.8" font-family="arial" font-size="14.00">MISO</text>
|
||||
<polygon fill="none" stroke="black" points="675,-192 675,-215 752,-215 752,-192 675,-192"/>
|
||||
<text text-anchor="start" x="709.5" y="-199.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="752,-192 752,-215 857,-215 857,-192 752,-192"/>
|
||||
<text text-anchor="start" x="786" y="-199.8" font-family="arial" font-size="14.00">MOSI</text>
|
||||
<polygon fill="none" stroke="black" points="675,-169 675,-192 752,-192 752,-169 675,-169"/>
|
||||
<text text-anchor="start" x="709.5" y="-176.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="752,-169 752,-192 857,-192 857,-169 752,-169"/>
|
||||
<text text-anchor="start" x="790.5" y="-176.8" font-family="arial" font-size="14.00">SCK</text>
|
||||
</g>
|
||||
<!-- _F1 -->
|
||||
<!-- _ferrule_crimp_1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="15.5,-60 190.5,-60 190.5,-96 15.5,-96 15.5,-60"/>
|
||||
<text text-anchor="start" x="19" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule, 0.25 mm²  </text>
|
||||
<text text-anchor="start" x="180" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="15.5,-67.5 15.5,-88.5 190.5,-88.5 190.5,-67.5 15.5,-67.5"/>
|
||||
<title>_ferrule_crimp_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="189,-96 0,-96 0,-60 189,-60 189,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-66 0.5,-89 87.5,-89 87.5,-66 0.5,-66"/>
|
||||
<text text-anchor="start" x="4.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87.5,-66 87.5,-89 154.5,-89 154.5,-66 87.5,-66"/>
|
||||
<text text-anchor="start" x="91.5" y="-73.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="154.5,-66 154.5,-89 181.5,-89 181.5,-66 154.5,-66"/>
|
||||
<text text-anchor="start" x="158.5" y="-73.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="181.5,-66 181.5,-89 189.5,-89 189.5,-66 181.5,-66"/>
|
||||
<polygon fill="none" stroke="black" points="181.5,-66 181.5,-89 189.5,-89 189.5,-66 181.5,-66"/>
|
||||
</g>
|
||||
<!-- W4 -->
|
||||
<g id="node10" class="node">
|
||||
<title>W4</title>
|
||||
<polygon fill="none" stroke="black" points="548,-143 350,-143 350,-13 548,-13 548,-143"/>
|
||||
<polygon fill="none" stroke="black" points="350,-120 350,-143 548,-143 548,-120 350,-120"/>
|
||||
<text text-anchor="start" x="438" y="-127.8" font-family="arial" font-size="14.00">W4</text>
|
||||
<polygon fill="none" stroke="black" points="350,-97 350,-120 373,-120 373,-97 350,-97"/>
|
||||
<text text-anchor="start" x="354" y="-104.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="373,-97 373,-120 505,-120 505,-97 373,-97"/>
|
||||
<text text-anchor="start" x="377" y="-104.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505,-97 505,-120 548,-120 548,-97 505,-97"/>
|
||||
<text text-anchor="start" x="509" y="-104.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="447" y="-85.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="428" y="-68.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="496" y="-68.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="350,-57 350,-63 548,-63 548,-57 350,-57"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-58 547,-58 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-62 351,-62 "/>
|
||||
<text text-anchor="start" x="427.5" y="-43.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="496" y="-43.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350,-32 350,-38 548,-38 548,-32 350,-32"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351,-33 547,-33 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="547,-37 351,-37 "/>
|
||||
<text text-anchor="start" x="374.5" y="-18.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="531,-143 333,-143 333,-13 531,-13 531,-143"/>
|
||||
<polygon fill="none" stroke="black" points="333,-120 333,-143 531,-143 531,-120 333,-120"/>
|
||||
<text text-anchor="start" x="421" y="-127.8" font-family="arial" font-size="14.00">W4</text>
|
||||
<polygon fill="none" stroke="black" points="333,-97 333,-120 356,-120 356,-97 333,-97"/>
|
||||
<text text-anchor="start" x="337" y="-104.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="356,-97 356,-120 488,-120 488,-97 356,-97"/>
|
||||
<text text-anchor="start" x="360" y="-104.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488,-97 488,-120 531,-120 531,-97 488,-97"/>
|
||||
<text text-anchor="start" x="492" y="-104.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="430" y="-85.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411" y="-68.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="479" y="-68.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-61 333,-63 531,-63 531,-61 333,-61"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-59 333,-61 531,-61 531,-59 333,-59"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-57 333,-59 531,-59 531,-57 333,-57"/>
|
||||
<text text-anchor="start" x="410.5" y="-43.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="479" y="-43.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-36 333,-38 531,-38 531,-36 333,-36"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="333,-34 333,-36 531,-36 531,-34 333,-34"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="333,-32 333,-34 531,-34 531,-32 333,-32"/>
|
||||
<text text-anchor="start" x="357.5" y="-18.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W4 -->
|
||||
<!-- _ferrule_crimp_1--W4 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>_F1:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-76C261.21,-76.64 277.86,-58.64 350,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-78C262.68,-78 279.32,-60 350,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-80C264.14,-79.36 280.79,-61.36 350,-62"/>
|
||||
<title>_ferrule_crimp_1:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-76C251.96,-76.72 266.97,-58.72 333,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-78C253.5,-78 268.5,-60 333,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-80C255.03,-79.28 270.04,-61.28 333,-62"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _ferrule_crimp_2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="15.5,0 190.5,0 190.5,-36 15.5,-36 15.5,0"/>
|
||||
<text text-anchor="start" x="19" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule, 0.25 mm²  </text>
|
||||
<text text-anchor="start" x="180" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="15.5,-7.5 15.5,-28.5 190.5,-28.5 190.5,-7.5 15.5,-7.5"/>
|
||||
<title>_ferrule_crimp_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="189,-36 0,-36 0,0 189,0 189,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-6 0.5,-29 87.5,-29 87.5,-6 0.5,-6"/>
|
||||
<text text-anchor="start" x="4.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87.5,-6 87.5,-29 154.5,-29 154.5,-6 87.5,-6"/>
|
||||
<text text-anchor="start" x="91.5" y="-13.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="154.5,-6 154.5,-29 181.5,-29 181.5,-6 154.5,-6"/>
|
||||
<text text-anchor="start" x="158.5" y="-13.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="181.5,-6 181.5,-29 189.5,-29 189.5,-6 181.5,-6"/>
|
||||
<polygon fill="none" stroke="black" points="181.5,-6 181.5,-29 189.5,-29 189.5,-6 181.5,-6"/>
|
||||
</g>
|
||||
<!-- _F2--W4 -->
|
||||
<g id="edge26" class="edge">
|
||||
<title>_F2:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-16C264.05,-16.6 280.8,-33.6 350,-33"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M192,-18C262.63,-18 279.37,-35 350,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M192,-20C261.2,-19.4 277.95,-36.4 350,-37"/>
|
||||
<!-- _ferrule_crimp_2--W4 -->
|
||||
<g id="edge27" class="edge">
|
||||
<title>_ferrule_crimp_2:e--W4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-16C254.94,-16.67 270.05,-33.67 333,-33"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M189,-18C253.44,-18 268.56,-35 333,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-20C251.95,-19.33 267.06,-36.33 333,-37"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-670C611.76,-670.02 627.75,-668.02 692,-668"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-672C612.01,-672 627.99,-670 692,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-674C612.25,-673.98 628.24,-671.98 692,-672"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-670C594.76,-670.02 610.75,-668.02 675,-668"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-672C595.01,-672 610.99,-670 675,-670"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-674C595.25,-673.98 611.24,-671.98 675,-672"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-645C611.88,-645 627.87,-644 692,-644"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-647C612,-647 628,-646 692,-646"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-649C612.13,-649 628.12,-648 692,-648"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-645C594.88,-645 610.87,-644 675,-644"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-647C595,-647 611,-646 675,-646"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-649C595.13,-649 611.12,-648 675,-648"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-620C612.13,-620 628.12,-621 692,-621"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M548,-622C612,-622 628,-623 692,-623"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-624C611.88,-624 627.87,-625 692,-625"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-620C595.13,-620 611.12,-621 675,-621"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531,-622C595,-622 611,-623 675,-623"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-624C594.88,-624 610.87,-625 675,-625"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-595C612.38,-595.03 628.36,-598.03 692,-598"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M548,-597C612.01,-597 627.99,-600 692,-600"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-599C611.64,-598.97 627.62,-601.97 692,-602"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-595C595.38,-595.03 611.36,-598.03 675,-598"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531,-597C595.01,-597 610.99,-600 675,-600"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-599C594.64,-598.97 610.62,-601.97 675,-602"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-466C611.76,-466.02 627.75,-464.02 692,-464"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-468C612.01,-468 627.99,-466 692,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-470C612.25,-469.98 628.24,-467.98 692,-468"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-466C594.76,-466.02 610.75,-464.02 675,-464"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-468C595.01,-468 610.99,-466 675,-466"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-470C595.25,-469.98 611.24,-467.98 675,-468"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-441C611.88,-441 627.87,-440 692,-440"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-443C612,-443 628,-442 692,-442"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-445C612.13,-445 628.12,-444 692,-444"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-441C594.88,-441 610.87,-440 675,-440"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-443C595,-443 611,-442 675,-442"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-445C595.13,-445 611.12,-444 675,-444"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-416C612.13,-416 628.12,-417 692,-417"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M548,-418C612,-418 628,-419 692,-419"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-420C611.88,-420 627.87,-421 692,-421"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-416C595.13,-416 611.12,-417 675,-417"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531,-418C595,-418 611,-419 675,-419"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-420C594.88,-420 610.87,-421 675,-421"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-391C612.38,-391.03 628.36,-394.03 692,-394"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M548,-393C612.01,-393 627.99,-396 692,-396"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-395C611.64,-394.97 627.62,-397.97 692,-398"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-391C595.38,-391.03 611.36,-394.03 675,-394"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531,-393C595.01,-393 610.99,-396 675,-396"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-395C594.64,-394.97 610.62,-397.97 675,-398"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-262C613,-262.22 628.8,-270.22 692,-270"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-264C612.1,-264 627.9,-272 692,-272"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-266C611.2,-265.78 627,-273.78 692,-274"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-262C596.12,-262.26 611.87,-271.26 675,-271"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-264C595.12,-264 610.88,-273 675,-273"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-266C594.13,-265.74 609.88,-274.74 675,-275"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-237C610.97,-237.47 626.45,-224.47 692,-224"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M548,-239C612.26,-239 627.74,-226 692,-226"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-241C613.55,-240.53 629.03,-227.53 692,-228"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-237C593.97,-237.47 609.45,-224.47 675,-224"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M531,-239C595.26,-239 610.74,-226 675,-226"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-241C596.55,-240.53 612.03,-227.53 675,-228"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-212C611.04,-212.36 626.66,-201.36 692,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M548,-214C612.19,-214 627.81,-203 692,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-216C613.34,-215.64 628.96,-204.64 692,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-212C594.04,-212.36 609.66,-201.36 675,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M531,-214C595.19,-214 610.81,-203 675,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-216C596.34,-215.64 611.96,-204.64 675,-205"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-187C611.13,-187.26 626.88,-178.26 692,-178"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M548,-189C612.12,-189 627.88,-180 692,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-191C613.12,-190.74 628.87,-181.74 692,-182"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-187C594.13,-187.26 609.88,-178.26 675,-178"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M531,-189C595.12,-189 610.88,-180 675,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-191C596.12,-190.74 611.87,-181.74 675,-182"/>
|
||||
</g>
|
||||
<!-- W4--X4 -->
|
||||
<g id="edge27" class="edge">
|
||||
<g id="edge26" class="edge">
|
||||
<title>W4:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-58C663.76,-60.74 579.96,-272.74 692,-270"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-60C661.9,-60 578.1,-272 692,-272"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-62C660.04,-59.26 576.24,-271.26 692,-274"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-58C647.13,-60.74 562.59,-273.74 675,-271"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-60C645.27,-60 560.73,-273 675,-273"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-62C643.41,-59.26 558.87,-272.26 675,-275"/>
|
||||
</g>
|
||||
<!-- W4--X4 -->
|
||||
<g id="edge28" class="edge">
|
||||
<title>W4:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-33C664.5,-35.74 579.22,-249.74 692,-247"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M548,-35C662.64,-35 577.36,-249 692,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M548,-37C660.78,-34.26 575.5,-248.26 692,-251"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-33C647.5,-35.74 562.22,-249.74 675,-247"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531,-35C645.64,-35 560.36,-249 675,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M531,-37C643.78,-34.26 558.5,-248.26 675,-251"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 37 KiB |
@ -3,7 +3,7 @@ templates: # defining templates to be used later on
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
- &con_i2c
|
||||
pinout: [GND, +5V, SCL, SDA]
|
||||
pinlabels: [GND, +5V, SCL, SDA]
|
||||
- &wire_i2c
|
||||
category: bundle
|
||||
gauge: 0.14 mm2
|
||||
@ -12,7 +12,7 @@ templates: # defining templates to be used later on
|
||||
connectors:
|
||||
X1:
|
||||
<<: *molex_f # copying items from the template
|
||||
pinout: [GND, +5V, SCL, SDA, MISO, MOSI, SCK, N/C]
|
||||
pinlabels: [GND, +5V, SCL, SDA, MISO, MOSI, SCK, N/C]
|
||||
X2:
|
||||
<<: *molex_f
|
||||
<<: *con_i2c # it is possible to copy from more than one template
|
||||
@ -21,12 +21,13 @@ connectors:
|
||||
<<: *con_i2c
|
||||
X4:
|
||||
<<: *molex_f
|
||||
pinout: [GND, +12V, MISO, MOSI, SCK]
|
||||
pinlabels: [GND, +12V, MISO, MOSI, SCK]
|
||||
ferrule_crimp:
|
||||
category: ferrule
|
||||
style: simple
|
||||
autogenerate: true
|
||||
type: Crimp ferrule
|
||||
subtype: 0.25 mm²
|
||||
color: YE
|
||||
|
||||
cables:
|
||||
W1:
|
||||
@ -65,6 +66,4 @@ connections:
|
||||
-
|
||||
- ferrule_crimp
|
||||
- W4: [1,2]
|
||||
-
|
||||
- W4: [1,2]
|
||||
- X4: [1,2]
|
||||
|
||||
@ -4,9 +4,9 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|4-pin}|{{GND|VCC|RX|TX}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|RX|TX}}"]
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>RX</td><td port="p3r">3</td></tr><tr><td>TX</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>RX</td></tr><tr><td port="p4l">4</td><td>TX</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
@ -18,7 +18,7 @@ graph {
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p3l:w
|
||||
edge [color="#000000"]
|
||||
edge [color="#000000:#aaaaaa:#000000"]
|
||||
X1:p1r:e -- W1:ws:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="5">W1</td></tr><tr><td>Serial</td><td>4x</td><td>0.25 mm² (24 AWG)</td><td>+ S</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BN</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>OG</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff8000" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr><tr><td>X1:1</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="5">W1</td></tr><tr><td balign="left">Serial</td><td balign="left">4x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">+ S</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BN</td><td>X2:1</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="#895956" 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</td><td>RD</td><td>X2:2</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="#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:3</td><td>OG</td><td>X2:4</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="#ff8000" 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</td><td>YE</td><td>X2:3</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="#ffff00" 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><tr><td>X1:1</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,177 +1,180 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="979pt" height="232pt"
|
||||
viewBox="0.00 0.00 979.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="931pt" height="232pt"
|
||||
viewBox="0.00 0.00 931.00 232.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 228)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 975,-228 975,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-57 0,-195 206,-195 206,-57 0,-57"/>
|
||||
<text text-anchor="middle" x="103" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-172 206,-172 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-149 101,-172 "/>
|
||||
<text text-anchor="middle" x="130" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-149 159,-172 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-149 206,-149 "/>
|
||||
<text text-anchor="middle" x="57" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-126 114,-126 "/>
|
||||
<text text-anchor="middle" x="57" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-103 114,-103 "/>
|
||||
<text text-anchor="middle" x="57" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-80 114,-80 "/>
|
||||
<text text-anchor="middle" x="57" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="114,-57 114,-149 "/>
|
||||
<text text-anchor="middle" x="160" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-126 206,-126 "/>
|
||||
<text text-anchor="middle" x="160" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-103 206,-103 "/>
|
||||
<text text-anchor="middle" x="160" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-80 206,-80 "/>
|
||||
<text text-anchor="middle" x="160" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-195 0,-195 0,-57 182,-57 182,-195"/>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 182,-195 182,-172 0,-172"/>
|
||||
<text text-anchor="start" x="82.5" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 93,-172 93,-149 0,-149"/>
|
||||
<text text-anchor="start" x="4" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-149 93,-172 143,-172 143,-149 93,-149"/>
|
||||
<text text-anchor="start" x="97" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-149 143,-172 182,-172 182,-149 143,-149"/>
|
||||
<text text-anchor="start" x="147" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 103,-149 103,-126 0,-126"/>
|
||||
<text text-anchor="start" x="36" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-126 103,-149 182,-149 182,-126 103,-126"/>
|
||||
<text text-anchor="start" x="138.5" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 103,-126 103,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-103 103,-126 182,-126 182,-103 103,-103"/>
|
||||
<text text-anchor="start" x="138.5" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 103,-103 103,-80 0,-80"/>
|
||||
<text text-anchor="start" x="42" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-80 103,-103 182,-103 182,-80 103,-80"/>
|
||||
<text text-anchor="start" x="138.5" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 103,-80 103,-57 0,-57"/>
|
||||
<text text-anchor="start" x="42.5" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-57 103,-80 182,-80 182,-57 103,-57"/>
|
||||
<text text-anchor="start" x="138.5" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="621,-224 350,-224 350,0 621,0 621,-224"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-201 350.5,-224 621.5,-224 621.5,-201 350.5,-201"/>
|
||||
<text text-anchor="start" x="475" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-178 350.5,-201 393.5,-201 393.5,-178 350.5,-178"/>
|
||||
<text text-anchor="start" x="354.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="393.5,-178 393.5,-201 416.5,-201 416.5,-178 393.5,-178"/>
|
||||
<text text-anchor="start" x="397.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="416.5,-178 416.5,-201 548.5,-201 548.5,-178 416.5,-178"/>
|
||||
<text text-anchor="start" x="420.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="548.5,-178 548.5,-201 578.5,-201 578.5,-178 548.5,-178"/>
|
||||
<text text-anchor="start" x="552.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="578.5,-178 578.5,-201 621.5,-201 621.5,-178 578.5,-178"/>
|
||||
<text text-anchor="start" x="582.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="484" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="380" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="476.5" y="-149.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="564" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="350.5,-138 350.5,-144 621.5,-144 621.5,-138 350.5,-138"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-139 620.5,-139 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-143 351.5,-143 "/>
|
||||
<text text-anchor="start" x="380" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="476" y="-124.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="564" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350.5,-113 350.5,-119 621.5,-119 621.5,-113 350.5,-113"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-114 620.5,-114 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-118 351.5,-118 "/>
|
||||
<text text-anchor="start" x="380" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="474.5" y="-99.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="564" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="350.5,-88 350.5,-94 621.5,-94 621.5,-88 350.5,-88"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-89 620.5,-89 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-93 351.5,-93 "/>
|
||||
<text text-anchor="start" x="380" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="476.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="564" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-63 350.5,-69 621.5,-69 621.5,-63 350.5,-63"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-64 620.5,-64 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-68 351.5,-68 "/>
|
||||
<text text-anchor="start" x="392" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="380" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="467" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 620.5,-20 "/>
|
||||
<text text-anchor="start" x="392" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="597,-224 326,-224 326,0 597,0 597,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
|
||||
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
|
||||
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
|
||||
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
|
||||
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="460" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="452.5" y="-149.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="540" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-142 326.5,-144 597.5,-144 597.5,-142 326.5,-142"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-140 326.5,-142 597.5,-142 597.5,-140 326.5,-140"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
|
||||
<text text-anchor="start" x="356" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="452" y="-124.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="540" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-117 326.5,-119 597.5,-119 597.5,-117 326.5,-117"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="326.5,-115 326.5,-117 597.5,-117 597.5,-115 326.5,-115"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
|
||||
<text text-anchor="start" x="356" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="450.5" y="-99.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="540" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-92 326.5,-94 597.5,-94 597.5,-92 326.5,-92"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="326.5,-90 326.5,-92 597.5,-92 597.5,-90 326.5,-90"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
|
||||
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="452.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="540" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-67 326.5,-69 597.5,-69 597.5,-67 326.5,-67"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-65 326.5,-67 597.5,-67 597.5,-65 326.5,-65"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
|
||||
<text text-anchor="start" x="368" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="443" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="327.5,-20 596.5,-20 "/>
|
||||
<text text-anchor="start" x="368" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-136C270.38,-136.03 286.36,-139.03 350,-139"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-138C270.01,-138 285.99,-141 350,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-140C269.64,-139.97 285.62,-142.97 350,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C246.38,-136.03 262.36,-139.03 326,-139"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-138C246.01,-138 261.99,-141 326,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C245.64,-139.97 261.62,-142.97 326,-143"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-112C270.25,-112.02 286.24,-114.02 350,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-114C270.01,-114 285.99,-116 350,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-116C269.76,-115.98 285.75,-117.98 350,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C246.25,-112.02 262.24,-114.02 326,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-114C246.01,-114 261.99,-116 326,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-116C245.76,-115.98 261.75,-117.98 326,-118"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-89C270,-89 286,-89 350,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M206,-91C270,-91 286,-91 350,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270,-93 286,-93 350,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-91C246,-91 262,-91 326,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246,-93 262,-93 326,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-66C269.76,-66.02 285.75,-64.02 350,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-68C270.01,-68 285.99,-66 350,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-70C270.25,-69.98 286.24,-67.98 350,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C245.76,-66.02 261.75,-64.02 326,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-68C246.01,-68 261.99,-66 326,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-70C246.25,-69.98 262.24,-67.98 326,-68"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-138C288.18,-138 267.82,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C262.21,-138.35 241.85,-22.35 326,-20"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M182,-138C264.18,-138 243.82,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C266.15,-137.65 245.79,-21.65 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="765,-59 765,-197 971,-197 971,-59 765,-59"/>
|
||||
<text text-anchor="middle" x="868" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="765,-174 971,-174 "/>
|
||||
<text text-anchor="middle" x="815.5" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="866,-151 866,-174 "/>
|
||||
<text text-anchor="middle" x="895" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="924,-151 924,-174 "/>
|
||||
<text text-anchor="middle" x="947.5" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="765,-151 971,-151 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="765,-128 856,-128 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="765,-105 856,-105 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="765,-82 856,-82 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="856,-59 856,-151 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="856,-128 971,-128 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="856,-105 971,-105 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="856,-82 971,-82 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="923,-197 741,-197 741,-59 923,-59 923,-197"/>
|
||||
<polygon fill="none" stroke="black" points="741,-174 741,-197 923,-197 923,-174 741,-174"/>
|
||||
<text text-anchor="start" x="823.5" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="741,-151 741,-174 834,-174 834,-151 741,-151"/>
|
||||
<text text-anchor="start" x="745" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="834,-151 834,-174 884,-174 884,-151 834,-151"/>
|
||||
<text text-anchor="start" x="838" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="884,-151 884,-174 923,-174 923,-151 884,-151"/>
|
||||
<text text-anchor="start" x="888" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="741,-128 741,-151 821,-151 821,-128 741,-128"/>
|
||||
<text text-anchor="start" x="777" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="821,-128 821,-151 923,-151 923,-128 821,-128"/>
|
||||
<text text-anchor="start" x="856.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="741,-105 741,-128 821,-128 821,-105 741,-105"/>
|
||||
<text text-anchor="start" x="777" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="821,-105 821,-128 923,-128 923,-105 821,-105"/>
|
||||
<text text-anchor="start" x="857.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="741,-82 741,-105 821,-105 821,-82 741,-82"/>
|
||||
<text text-anchor="start" x="777" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="821,-82 821,-105 923,-105 923,-82 821,-82"/>
|
||||
<text text-anchor="start" x="862.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="741,-59 741,-82 821,-82 821,-59 741,-59"/>
|
||||
<text text-anchor="start" x="777" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="821,-59 821,-82 923,-82 923,-59 821,-59"/>
|
||||
<text text-anchor="start" x="863" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-139C684.88,-139 700.87,-138 765,-138"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M621,-141C685,-141 701,-140 765,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-143C685.13,-143 701.12,-142 765,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C660.88,-139 676.87,-138 741,-138"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-141C661,-141 677,-140 741,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-143C661.13,-143 677.12,-142 741,-142"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-114C685,-114 701,-114 765,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M621,-116C685,-116 701,-116 765,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-118C685,-118 701,-118 765,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-116C661,-116 677,-116 741,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-118C661,-118 677,-118 741,-118"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-89C684.04,-89.86 698.68,-68.86 765,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M621,-91C685.68,-91 700.32,-70 765,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-93C687.32,-92.14 701.96,-71.14 765,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C660.04,-89.86 674.68,-68.86 741,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-91C661.68,-91 676.32,-70 741,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-93C663.32,-92.14 677.96,-71.14 741,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-64C687.9,-65.09 701.67,-92.09 765,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M621,-66C686.12,-66 699.88,-93 765,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-68C684.33,-66.91 698.1,-93.91 765,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C663.9,-65.09 677.67,-92.09 741,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-66C662.12,-66 675.88,-93 741,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-68C660.33,-66.91 674.1,-93.91 741,-95"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, Serial, 4 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, Serial, 4 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 46 KiB |
@ -4,173 +4,177 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="979pt" height="232pt"
|
||||
viewBox="0.00 0.00 979.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="931pt" height="232pt"
|
||||
viewBox="0.00 0.00 931.00 232.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 228)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 975,-228 975,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-57 0,-195 206,-195 206,-57 0,-57"/>
|
||||
<text text-anchor="middle" x="103" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-172 206,-172 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-149 101,-172 "/>
|
||||
<text text-anchor="middle" x="130" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-149 159,-172 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-149 206,-149 "/>
|
||||
<text text-anchor="middle" x="57" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-126 114,-126 "/>
|
||||
<text text-anchor="middle" x="57" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-103 114,-103 "/>
|
||||
<text text-anchor="middle" x="57" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-80 114,-80 "/>
|
||||
<text text-anchor="middle" x="57" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="114,-57 114,-149 "/>
|
||||
<text text-anchor="middle" x="160" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-126 206,-126 "/>
|
||||
<text text-anchor="middle" x="160" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-103 206,-103 "/>
|
||||
<text text-anchor="middle" x="160" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-80 206,-80 "/>
|
||||
<text text-anchor="middle" x="160" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-195 0,-195 0,-57 182,-57 182,-195"/>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 182,-195 182,-172 0,-172"/>
|
||||
<text text-anchor="start" x="82.5" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 93,-172 93,-149 0,-149"/>
|
||||
<text text-anchor="start" x="4" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-149 93,-172 143,-172 143,-149 93,-149"/>
|
||||
<text text-anchor="start" x="97" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-149 143,-172 182,-172 182,-149 143,-149"/>
|
||||
<text text-anchor="start" x="147" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 103,-149 103,-126 0,-126"/>
|
||||
<text text-anchor="start" x="36" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-126 103,-149 182,-149 182,-126 103,-126"/>
|
||||
<text text-anchor="start" x="138.5" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 103,-126 103,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-103 103,-126 182,-126 182,-103 103,-103"/>
|
||||
<text text-anchor="start" x="138.5" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 103,-103 103,-80 0,-80"/>
|
||||
<text text-anchor="start" x="42" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-80 103,-103 182,-103 182,-80 103,-80"/>
|
||||
<text text-anchor="start" x="138.5" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 103,-80 103,-57 0,-57"/>
|
||||
<text text-anchor="start" x="42.5" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-57 103,-80 182,-80 182,-57 103,-57"/>
|
||||
<text text-anchor="start" x="138.5" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="621,-224 350,-224 350,0 621,0 621,-224"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-201 350.5,-224 621.5,-224 621.5,-201 350.5,-201"/>
|
||||
<text text-anchor="start" x="475" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-178 350.5,-201 393.5,-201 393.5,-178 350.5,-178"/>
|
||||
<text text-anchor="start" x="354.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="393.5,-178 393.5,-201 416.5,-201 416.5,-178 393.5,-178"/>
|
||||
<text text-anchor="start" x="397.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="416.5,-178 416.5,-201 548.5,-201 548.5,-178 416.5,-178"/>
|
||||
<text text-anchor="start" x="420.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="548.5,-178 548.5,-201 578.5,-201 578.5,-178 548.5,-178"/>
|
||||
<text text-anchor="start" x="552.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="578.5,-178 578.5,-201 621.5,-201 621.5,-178 578.5,-178"/>
|
||||
<text text-anchor="start" x="582.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="484" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="380" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="476.5" y="-149.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="564" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="350.5,-138 350.5,-144 621.5,-144 621.5,-138 350.5,-138"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-139 620.5,-139 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-143 351.5,-143 "/>
|
||||
<text text-anchor="start" x="380" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="476" y="-124.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="564" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="350.5,-113 350.5,-119 621.5,-119 621.5,-113 350.5,-113"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-114 620.5,-114 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-118 351.5,-118 "/>
|
||||
<text text-anchor="start" x="380" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="474.5" y="-99.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="564" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="350.5,-88 350.5,-94 621.5,-94 621.5,-88 350.5,-88"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-89 620.5,-89 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-93 351.5,-93 "/>
|
||||
<text text-anchor="start" x="380" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="476.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="564" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-63 350.5,-69 621.5,-69 621.5,-63 350.5,-63"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-64 620.5,-64 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="620.5,-68 351.5,-68 "/>
|
||||
<text text-anchor="start" x="392" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="380" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="467" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 620.5,-20 "/>
|
||||
<text text-anchor="start" x="392" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="597,-224 326,-224 326,0 597,0 597,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
|
||||
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
|
||||
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
|
||||
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
|
||||
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="460" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="452.5" y="-149.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="540" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-142 326.5,-144 597.5,-144 597.5,-142 326.5,-142"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-140 326.5,-142 597.5,-142 597.5,-140 326.5,-140"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
|
||||
<text text-anchor="start" x="356" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="452" y="-124.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="540" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-117 326.5,-119 597.5,-119 597.5,-117 326.5,-117"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="326.5,-115 326.5,-117 597.5,-117 597.5,-115 326.5,-115"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
|
||||
<text text-anchor="start" x="356" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="450.5" y="-99.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="540" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-92 326.5,-94 597.5,-94 597.5,-92 326.5,-92"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="326.5,-90 326.5,-92 597.5,-92 597.5,-90 326.5,-90"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
|
||||
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="452.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="540" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-67 326.5,-69 597.5,-69 597.5,-67 326.5,-67"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-65 326.5,-67 597.5,-67 597.5,-65 326.5,-65"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
|
||||
<text text-anchor="start" x="368" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="443" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="327.5,-20 596.5,-20 "/>
|
||||
<text text-anchor="start" x="368" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-136C270.38,-136.03 286.36,-139.03 350,-139"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-138C270.01,-138 285.99,-141 350,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-140C269.64,-139.97 285.62,-142.97 350,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C246.38,-136.03 262.36,-139.03 326,-139"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-138C246.01,-138 261.99,-141 326,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C245.64,-139.97 261.62,-142.97 326,-143"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-112C270.25,-112.02 286.24,-114.02 350,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M206,-114C270.01,-114 285.99,-116 350,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-116C269.76,-115.98 285.75,-117.98 350,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C246.25,-112.02 262.24,-114.02 326,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-114C246.01,-114 261.99,-116 326,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-116C245.76,-115.98 261.75,-117.98 326,-118"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-89C270,-89 286,-89 350,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M206,-91C270,-91 286,-91 350,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270,-93 286,-93 350,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-91C246,-91 262,-91 326,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246,-93 262,-93 326,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-66C269.76,-66.02 285.75,-64.02 350,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-68C270.01,-68 285.99,-66 350,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-70C270.25,-69.98 286.24,-67.98 350,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C245.76,-66.02 261.75,-64.02 326,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-68C246.01,-68 261.99,-66 326,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-70C246.25,-69.98 262.24,-67.98 326,-68"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-138C288.18,-138 267.82,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C262.21,-138.35 241.85,-22.35 326,-20"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M182,-138C264.18,-138 243.82,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C266.15,-137.65 245.79,-21.65 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="765,-59 765,-197 971,-197 971,-59 765,-59"/>
|
||||
<text text-anchor="middle" x="868" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="765,-174 971,-174 "/>
|
||||
<text text-anchor="middle" x="815.5" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="866,-151 866,-174 "/>
|
||||
<text text-anchor="middle" x="895" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="924,-151 924,-174 "/>
|
||||
<text text-anchor="middle" x="947.5" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="765,-151 971,-151 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="765,-128 856,-128 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="765,-105 856,-105 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="765,-82 856,-82 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="856,-59 856,-151 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="856,-128 971,-128 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="856,-105 971,-105 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="856,-82 971,-82 "/>
|
||||
<text text-anchor="middle" x="913.5" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="923,-197 741,-197 741,-59 923,-59 923,-197"/>
|
||||
<polygon fill="none" stroke="black" points="741,-174 741,-197 923,-197 923,-174 741,-174"/>
|
||||
<text text-anchor="start" x="823.5" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="741,-151 741,-174 834,-174 834,-151 741,-151"/>
|
||||
<text text-anchor="start" x="745" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="834,-151 834,-174 884,-174 884,-151 834,-151"/>
|
||||
<text text-anchor="start" x="838" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="884,-151 884,-174 923,-174 923,-151 884,-151"/>
|
||||
<text text-anchor="start" x="888" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="741,-128 741,-151 821,-151 821,-128 741,-128"/>
|
||||
<text text-anchor="start" x="777" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="821,-128 821,-151 923,-151 923,-128 821,-128"/>
|
||||
<text text-anchor="start" x="856.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="741,-105 741,-128 821,-128 821,-105 741,-105"/>
|
||||
<text text-anchor="start" x="777" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="821,-105 821,-128 923,-128 923,-105 821,-105"/>
|
||||
<text text-anchor="start" x="857.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="741,-82 741,-105 821,-105 821,-82 741,-82"/>
|
||||
<text text-anchor="start" x="777" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="821,-82 821,-105 923,-105 923,-82 821,-82"/>
|
||||
<text text-anchor="start" x="862.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="741,-59 741,-82 821,-82 821,-59 741,-59"/>
|
||||
<text text-anchor="start" x="777" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="821,-59 821,-82 923,-82 923,-59 821,-59"/>
|
||||
<text text-anchor="start" x="863" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-139C684.88,-139 700.87,-138 765,-138"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M621,-141C685,-141 701,-140 765,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-143C685.13,-143 701.12,-142 765,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C660.88,-139 676.87,-138 741,-138"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-141C661,-141 677,-140 741,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-143C661.13,-143 677.12,-142 741,-142"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-114C685,-114 701,-114 765,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M621,-116C685,-116 701,-116 765,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-118C685,-118 701,-118 765,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-116C661,-116 677,-116 741,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-118C661,-118 677,-118 741,-118"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-89C684.04,-89.86 698.68,-68.86 765,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M621,-91C685.68,-91 700.32,-70 765,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-93C687.32,-92.14 701.96,-71.14 765,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C660.04,-89.86 674.68,-68.86 741,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-91C661.68,-91 676.32,-70 741,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-93C663.32,-92.14 677.96,-71.14 741,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-64C687.9,-65.09 701.67,-92.09 765,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M621,-66C686.12,-66 699.88,-93 765,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M621,-68C684.33,-66.91 698.1,-93.91 765,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C663.9,-65.09 677.67,-92.09 741,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-66C662.12,-66 675.88,-93 741,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-68C660.33,-66.91 674.1,-93.91 741,-95"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
@ -2,11 +2,11 @@ connectors:
|
||||
X1:
|
||||
type: Molex KK 254 # more information
|
||||
subtype: female
|
||||
pinout: [GND, VCC, RX, TX] # pincount is implicit in pinout
|
||||
pinlabels: [GND, VCC, RX, TX] # pincount is implicit in pinout
|
||||
X2:
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, VCC, RX, TX]
|
||||
pinlabels: [GND, VCC, RX, TX]
|
||||
|
||||
cables:
|
||||
W1:
|
||||
|
||||
@ -4,29 +4,29 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex Micro-Fit|male|2-pin}|{{GND|VCC}|{<p1r>1|<p2r>2}}"]
|
||||
X2 [label="X2|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
X3 [label="X3|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
X4 [label="X4|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
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">Molex Micro-Fit</td><td balign="left">male</td><td balign="left">2-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>VCC</td><td port="p2r">2</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>2x</td><td>0.25 mm² (24 AWG)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">2x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</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="#000000" 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</td><td>RD</td><td>X2:2</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="#ff0000" 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=white margin=0 shape=box style=""]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
X1:p2r:e -- W2:w2:w
|
||||
W2:w2:e -- X3:p2l:w
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td>2x</td><td>0.25 mm² (24 AWG)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X3:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X3:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td balign="left">2x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X3:1</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="#000000" 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</td><td>RD</td><td>X3:2</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="#ff0000" 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=white margin=0 shape=box style=""]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W3:w1:w
|
||||
W3:w1:e -- X4:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
X1:p2r:e -- W3:w2:w
|
||||
W3:w2:e -- X4:p2l:w
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td>2x</td><td>20 AWG (0.75 mm²)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X4:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td balign="left">2x</td><td balign="left">20 AWG (0.75 mm²)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X4:1</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="#000000" 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</td><td>RD</td><td>X4:2</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="#ff0000" 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=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,258 +1,261 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="913pt" height="446pt"
|
||||
viewBox="0.00 0.00 913.00 446.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="865pt" height="446pt"
|
||||
viewBox="0.00 0.00 865.00 446.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 442)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-442 909,-442 909,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-442 861,-442 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-166 0,-258 204,-258 204,-166 0,-166"/>
|
||||
<text text-anchor="middle" x="102" y="-242.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-235 204,-235 "/>
|
||||
<text text-anchor="middle" x="55" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="110,-212 110,-235 "/>
|
||||
<text text-anchor="middle" x="133.5" y="-219.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="157,-212 157,-235 "/>
|
||||
<text text-anchor="middle" x="180.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-212 204,-212 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-189 113,-189 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="113,-166 113,-212 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="113,-189 204,-189 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="white" stroke="transparent" points="180,-258 0,-258 0,-166 180,-166 180,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0,-235 0,-258 180,-258 180,-235 0,-235"/>
|
||||
<text text-anchor="start" x="81.5" y="-242.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-212 0,-235 102,-235 102,-212 0,-212"/>
|
||||
<text text-anchor="start" x="4" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-212 102,-235 141,-235 141,-212 102,-212"/>
|
||||
<text text-anchor="start" x="106" y="-219.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-212 141,-235 180,-235 180,-212 141,-212"/>
|
||||
<text text-anchor="start" x="145" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-189 0,-212 102,-212 102,-189 0,-189"/>
|
||||
<text text-anchor="start" x="35.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-189 102,-212 180,-212 180,-189 102,-189"/>
|
||||
<text text-anchor="start" x="137" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-166 0,-189 102,-189 102,-166 0,-166"/>
|
||||
<text text-anchor="start" x="36.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-166 102,-189 180,-189 180,-166 102,-166"/>
|
||||
<text text-anchor="start" x="137" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="546,-438 348,-438 348,-308 546,-308 546,-438"/>
|
||||
<polygon fill="none" stroke="black" points="348,-415 348,-438 546,-438 546,-415 348,-415"/>
|
||||
<text text-anchor="start" x="436" y="-422.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="348,-392 348,-415 371,-415 371,-392 348,-392"/>
|
||||
<text text-anchor="start" x="352" y="-399.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-392 371,-415 503,-415 503,-392 371,-392"/>
|
||||
<text text-anchor="start" x="375" y="-399.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-392 503,-415 546,-415 546,-392 503,-392"/>
|
||||
<text text-anchor="start" x="507" y="-399.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-380.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-363.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-363.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-363.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-352 348,-358 546,-358 546,-352 348,-352"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-353 545,-353 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-357 349,-357 "/>
|
||||
<text text-anchor="start" x="368.5" y="-338.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-338.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-338.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-327 348,-333 546,-333 546,-327 348,-327"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-328 545,-328 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-332 349,-332 "/>
|
||||
<text text-anchor="start" x="380.5" y="-313.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-438 324,-438 324,-308 522,-308 522,-438"/>
|
||||
<polygon fill="none" stroke="black" points="324,-415 324,-438 522,-438 522,-415 324,-415"/>
|
||||
<text text-anchor="start" x="412" y="-422.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-392 324,-415 347,-415 347,-392 324,-392"/>
|
||||
<text text-anchor="start" x="328" y="-399.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-392 347,-415 479,-415 479,-392 347,-392"/>
|
||||
<text text-anchor="start" x="351" y="-399.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-392 479,-415 522,-415 522,-392 479,-392"/>
|
||||
<text text-anchor="start" x="483" y="-399.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-380.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-363.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-363.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-363.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-356 324,-358 522,-358 522,-356 324,-356"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-354 324,-356 522,-356 522,-354 324,-354"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-352 324,-354 522,-354 522,-352 324,-352"/>
|
||||
<text text-anchor="start" x="344.5" y="-338.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-338.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-338.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-331 324,-333 522,-333 522,-331 324,-331"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-329 324,-331 522,-331 522,-329 324,-329"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-327 324,-329 522,-329 522,-327 324,-327"/>
|
||||
<text text-anchor="start" x="356.5" y="-313.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C299.95,-200.55 255.89,-355.55 348,-353"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C298.03,-200 253.97,-355 348,-355"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C296.11,-199.45 252.05,-354.45 348,-357"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C275.95,-200.55 231.89,-355.55 324,-353"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C274.03,-200 229.97,-355 324,-355"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C272.11,-199.45 228.05,-354.45 324,-357"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C299.31,-177.54 256.55,-330.54 348,-328"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C297.38,-177 254.62,-330 348,-330"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C295.45,-176.46 252.69,-329.46 348,-332"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C275.31,-177.54 232.55,-330.54 324,-328"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C273.38,-177 230.62,-330 324,-330"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C271.45,-176.46 228.69,-329.46 324,-332"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="none" stroke="black" points="546,-284 348,-284 348,-154 546,-154 546,-284"/>
|
||||
<polygon fill="none" stroke="black" points="348,-261 348,-284 546,-284 546,-261 348,-261"/>
|
||||
<text text-anchor="start" x="436" y="-268.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="348,-238 348,-261 371,-261 371,-238 348,-238"/>
|
||||
<text text-anchor="start" x="352" y="-245.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-238 371,-261 503,-261 503,-238 371,-238"/>
|
||||
<text text-anchor="start" x="375" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-238 503,-261 546,-261 546,-238 503,-238"/>
|
||||
<text text-anchor="start" x="507" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-209.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-198 348,-204 546,-204 546,-198 348,-198"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-199 545,-199 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-203 349,-203 "/>
|
||||
<text text-anchor="start" x="368.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-184.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-173 348,-179 546,-179 546,-173 348,-173"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-174 545,-174 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-178 349,-178 "/>
|
||||
<text text-anchor="start" x="380.5" y="-159.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-284 324,-284 324,-154 522,-154 522,-284"/>
|
||||
<polygon fill="none" stroke="black" points="324,-261 324,-284 522,-284 522,-261 324,-261"/>
|
||||
<text text-anchor="start" x="412" y="-268.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="324,-238 324,-261 347,-261 347,-238 324,-238"/>
|
||||
<text text-anchor="start" x="328" y="-245.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-238 347,-261 479,-261 479,-238 347,-238"/>
|
||||
<text text-anchor="start" x="351" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-238 479,-261 522,-261 522,-238 479,-238"/>
|
||||
<text text-anchor="start" x="483" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-209.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="344.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-184.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="356.5" y="-159.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C268.13,-198 284.12,-199 348,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C268,-200 284,-201 348,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C267.88,-202 283.87,-203 348,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C244.13,-198 260.12,-199 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C244,-200 260,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C243.88,-202 259.87,-203 324,-203"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C267.88,-175 283.87,-174 348,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C268,-177 284,-176 348,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C268.13,-179 284.12,-178 348,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C243.88,-175 259.87,-174 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C244,-177 260,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C244.13,-179 260.12,-178 324,-178"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node7" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="none" stroke="black" points="546,-130 348,-130 348,0 546,0 546,-130"/>
|
||||
<polygon fill="none" stroke="black" points="348,-107 348,-130 546,-130 546,-107 348,-107"/>
|
||||
<text text-anchor="start" x="436" y="-114.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="348,-84 348,-107 371,-107 371,-84 348,-84"/>
|
||||
<text text-anchor="start" x="352" y="-91.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-84 371,-107 503,-107 503,-84 371,-84"/>
|
||||
<text text-anchor="start" x="375" y="-91.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-84 503,-107 546,-107 546,-84 503,-84"/>
|
||||
<text text-anchor="start" x="507" y="-91.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-72.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-55.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-55.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-55.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-44 348,-50 546,-50 546,-44 348,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-45 545,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-49 349,-49 "/>
|
||||
<text text-anchor="start" x="368.5" y="-30.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-30.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-30.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-19 348,-25 546,-25 546,-19 348,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-20 545,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-24 349,-24 "/>
|
||||
<text text-anchor="start" x="380.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-130 324,-130 324,0 522,0 522,-130"/>
|
||||
<polygon fill="none" stroke="black" points="324,-107 324,-130 522,-130 522,-107 324,-107"/>
|
||||
<text text-anchor="start" x="412" y="-114.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="324,-84 324,-107 347,-107 347,-84 324,-84"/>
|
||||
<text text-anchor="start" x="328" y="-91.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-84 347,-107 479,-107 479,-84 347,-84"/>
|
||||
<text text-anchor="start" x="351" y="-91.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-84 479,-107 522,-107 522,-84 479,-84"/>
|
||||
<text text-anchor="start" x="483" y="-91.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-72.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-55.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-55.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-55.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-48 324,-50 522,-50 522,-48 324,-48"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-46 324,-48 522,-48 522,-46 324,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-44 324,-46 522,-46 522,-44 324,-44"/>
|
||||
<text text-anchor="start" x="344.5" y="-30.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-30.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-30.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-23 324,-25 522,-25 522,-23 324,-23"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-21 324,-23 522,-23 522,-21 324,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-19 324,-21 522,-21 522,-19 324,-19"/>
|
||||
<text text-anchor="start" x="356.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C295.45,-200.54 252.69,-47.54 348,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C297.38,-200 254.62,-47 348,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C299.31,-199.46 256.55,-46.46 348,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C271.45,-200.54 228.69,-47.54 324,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C273.38,-200 230.62,-47 324,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C275.31,-199.46 232.55,-46.46 324,-49"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C296.11,-177.55 252.05,-22.55 348,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C298.03,-177 253.97,-22 348,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C299.95,-176.45 255.89,-21.45 348,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C272.11,-177.55 228.05,-22.55 324,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C274.03,-177 229.97,-22 324,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C275.95,-176.45 231.89,-21.45 324,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="690,-320 690,-412 905,-412 905,-320 690,-320"/>
|
||||
<text text-anchor="middle" x="797.5" y="-396.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="690,-389 905,-389 "/>
|
||||
<text text-anchor="middle" x="745" y="-373.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-366 800,-389 "/>
|
||||
<text text-anchor="middle" x="829" y="-373.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-366 858,-389 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-373.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-366 905,-366 "/>
|
||||
<text text-anchor="middle" x="738" y="-350.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-343 786,-343 "/>
|
||||
<text text-anchor="middle" x="738" y="-327.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-320 786,-366 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-350.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-343 905,-343 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-327.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-412 666,-412 666,-320 857,-320 857,-412"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-389 666.5,-412 857.5,-412 857.5,-389 666.5,-389"/>
|
||||
<text text-anchor="start" x="753.5" y="-396.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-366 666.5,-389 768.5,-389 768.5,-366 666.5,-366"/>
|
||||
<text text-anchor="start" x="670.5" y="-373.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-366 768.5,-389 818.5,-389 818.5,-366 768.5,-366"/>
|
||||
<text text-anchor="start" x="772.5" y="-373.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-366 818.5,-389 857.5,-389 857.5,-366 818.5,-366"/>
|
||||
<text text-anchor="start" x="822.5" y="-373.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-343 666.5,-366 750.5,-366 750.5,-343 666.5,-343"/>
|
||||
<text text-anchor="start" x="704.5" y="-350.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-343 750.5,-366 857.5,-366 857.5,-343 750.5,-343"/>
|
||||
<text text-anchor="start" x="788.5" y="-350.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-320 666.5,-343 750.5,-343 750.5,-320 666.5,-320"/>
|
||||
<text text-anchor="start" x="704.5" y="-327.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-320 750.5,-343 857.5,-343 857.5,-320 750.5,-320"/>
|
||||
<text text-anchor="start" x="789.5" y="-327.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="690,-166 690,-258 905,-258 905,-166 690,-166"/>
|
||||
<text text-anchor="middle" x="797.5" y="-242.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="690,-235 905,-235 "/>
|
||||
<text text-anchor="middle" x="745" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-212 800,-235 "/>
|
||||
<text text-anchor="middle" x="829" y="-219.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-212 858,-235 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-212 905,-212 "/>
|
||||
<text text-anchor="middle" x="738" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-189 786,-189 "/>
|
||||
<text text-anchor="middle" x="738" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-166 786,-212 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-189 905,-189 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-258 666,-258 666,-166 857,-166 857,-258"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-235 666.5,-258 857.5,-258 857.5,-235 666.5,-235"/>
|
||||
<text text-anchor="start" x="753.5" y="-242.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-212 666.5,-235 768.5,-235 768.5,-212 666.5,-212"/>
|
||||
<text text-anchor="start" x="670.5" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-212 768.5,-235 818.5,-235 818.5,-212 768.5,-212"/>
|
||||
<text text-anchor="start" x="772.5" y="-219.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-212 818.5,-235 857.5,-235 857.5,-212 818.5,-212"/>
|
||||
<text text-anchor="start" x="822.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-189 666.5,-212 750.5,-212 750.5,-189 666.5,-189"/>
|
||||
<text text-anchor="start" x="704.5" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-189 750.5,-212 857.5,-212 857.5,-189 750.5,-189"/>
|
||||
<text text-anchor="start" x="788.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-166 666.5,-189 750.5,-189 750.5,-166 666.5,-166"/>
|
||||
<text text-anchor="start" x="704.5" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-166 750.5,-189 857.5,-189 857.5,-166 750.5,-166"/>
|
||||
<text text-anchor="start" x="789.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="690,-12 690,-104 905,-104 905,-12 690,-12"/>
|
||||
<text text-anchor="middle" x="797.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="690,-81 905,-81 "/>
|
||||
<text text-anchor="middle" x="745" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-58 800,-81 "/>
|
||||
<text text-anchor="middle" x="829" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-58 858,-81 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-58 905,-58 "/>
|
||||
<text text-anchor="middle" x="738" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-35 786,-35 "/>
|
||||
<text text-anchor="middle" x="738" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-12 786,-58 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-35 905,-35 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-104 666,-104 666,-12 857,-12 857,-104"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-81 666.5,-104 857.5,-104 857.5,-81 666.5,-81"/>
|
||||
<text text-anchor="start" x="753.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-58 666.5,-81 768.5,-81 768.5,-58 666.5,-58"/>
|
||||
<text text-anchor="start" x="670.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-58 768.5,-81 818.5,-81 818.5,-58 768.5,-58"/>
|
||||
<text text-anchor="start" x="772.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-58 818.5,-81 857.5,-81 857.5,-58 818.5,-58"/>
|
||||
<text text-anchor="start" x="822.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-35 666.5,-58 750.5,-58 750.5,-35 666.5,-35"/>
|
||||
<text text-anchor="start" x="704.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-35 750.5,-58 857.5,-58 857.5,-35 750.5,-35"/>
|
||||
<text text-anchor="start" x="788.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-12 666.5,-35 750.5,-35 750.5,-12 666.5,-12"/>
|
||||
<text text-anchor="start" x="704.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-12 750.5,-35 857.5,-35 857.5,-12 750.5,-12"/>
|
||||
<text text-anchor="start" x="789.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-353C609.88,-353 625.87,-352 690,-352"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-355C610,-355 626,-354 690,-354"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-357C610.13,-357 626.12,-356 690,-356"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-353C585.88,-353 601.87,-352 666,-352"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-355C586,-355 602,-354 666,-354"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-357C586.13,-357 602.12,-356 666,-356"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-328C610.13,-328 626.12,-329 690,-329"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-330C610,-330 626,-331 690,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-332C609.88,-332 625.87,-333 690,-333"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-328C586.13,-328 602.12,-329 666,-329"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-330C586,-330 602,-331 666,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-332C585.88,-332 601.87,-333 666,-333"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-199C609.88,-199 625.87,-198 690,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-201C610,-201 626,-200 690,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-203C610.13,-203 626.12,-202 690,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C585.88,-199 601.87,-198 666,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C586,-201 602,-200 666,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C586.13,-203 602.12,-202 666,-202"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-174C610.13,-174 626.12,-175 690,-175"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-176C610,-176 626,-177 690,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-178C609.88,-178 625.87,-179 690,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C586.13,-174 602.12,-175 666,-175"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C586,-176 602,-177 666,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C585.88,-178 601.87,-179 666,-179"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-45C609.88,-45 625.87,-44 690,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-47C610,-47 626,-46 690,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-49C610.13,-49 626.12,-48 690,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-45C585.88,-45 601.87,-44 666,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-47C586,-47 602,-46 666,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-49C586.13,-49 602.12,-48 666,-48"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-20C610.13,-20 626.12,-21 690,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-22C610,-22 626,-23 690,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-24C609.88,-24 625.87,-25 690,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-20C586.13,-20 602.12,-21 666,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-22C586,-22 602,-23 666,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-24C585.88,-24 601.87,-25 666,-25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, female, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3, X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, male, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 2 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Cable, 2 x 20 AWG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, female, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3, X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, male, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 2 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Cable, 2 x 20 AWG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W3</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 80 KiB |
@ -4,254 +4,258 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="913pt" height="446pt"
|
||||
viewBox="0.00 0.00 913.00 446.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="865pt" height="446pt"
|
||||
viewBox="0.00 0.00 865.00 446.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 442)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-442 909,-442 909,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-442 861,-442 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-166 0,-258 204,-258 204,-166 0,-166"/>
|
||||
<text text-anchor="middle" x="102" y="-242.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-235 204,-235 "/>
|
||||
<text text-anchor="middle" x="55" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="110,-212 110,-235 "/>
|
||||
<text text-anchor="middle" x="133.5" y="-219.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="157,-212 157,-235 "/>
|
||||
<text text-anchor="middle" x="180.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-212 204,-212 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-189 113,-189 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="113,-166 113,-212 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="113,-189 204,-189 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="white" stroke="transparent" points="180,-258 0,-258 0,-166 180,-166 180,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0,-235 0,-258 180,-258 180,-235 0,-235"/>
|
||||
<text text-anchor="start" x="81.5" y="-242.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-212 0,-235 102,-235 102,-212 0,-212"/>
|
||||
<text text-anchor="start" x="4" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-212 102,-235 141,-235 141,-212 102,-212"/>
|
||||
<text text-anchor="start" x="106" y="-219.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-212 141,-235 180,-235 180,-212 141,-212"/>
|
||||
<text text-anchor="start" x="145" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-189 0,-212 102,-212 102,-189 0,-189"/>
|
||||
<text text-anchor="start" x="35.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-189 102,-212 180,-212 180,-189 102,-189"/>
|
||||
<text text-anchor="start" x="137" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-166 0,-189 102,-189 102,-166 0,-166"/>
|
||||
<text text-anchor="start" x="36.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-166 102,-189 180,-189 180,-166 102,-166"/>
|
||||
<text text-anchor="start" x="137" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="546,-438 348,-438 348,-308 546,-308 546,-438"/>
|
||||
<polygon fill="none" stroke="black" points="348,-415 348,-438 546,-438 546,-415 348,-415"/>
|
||||
<text text-anchor="start" x="436" y="-422.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="348,-392 348,-415 371,-415 371,-392 348,-392"/>
|
||||
<text text-anchor="start" x="352" y="-399.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-392 371,-415 503,-415 503,-392 371,-392"/>
|
||||
<text text-anchor="start" x="375" y="-399.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-392 503,-415 546,-415 546,-392 503,-392"/>
|
||||
<text text-anchor="start" x="507" y="-399.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-380.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-363.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-363.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-363.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-352 348,-358 546,-358 546,-352 348,-352"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-353 545,-353 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-357 349,-357 "/>
|
||||
<text text-anchor="start" x="368.5" y="-338.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-338.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-338.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-327 348,-333 546,-333 546,-327 348,-327"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-328 545,-328 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-332 349,-332 "/>
|
||||
<text text-anchor="start" x="380.5" y="-313.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-438 324,-438 324,-308 522,-308 522,-438"/>
|
||||
<polygon fill="none" stroke="black" points="324,-415 324,-438 522,-438 522,-415 324,-415"/>
|
||||
<text text-anchor="start" x="412" y="-422.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-392 324,-415 347,-415 347,-392 324,-392"/>
|
||||
<text text-anchor="start" x="328" y="-399.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-392 347,-415 479,-415 479,-392 347,-392"/>
|
||||
<text text-anchor="start" x="351" y="-399.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-392 479,-415 522,-415 522,-392 479,-392"/>
|
||||
<text text-anchor="start" x="483" y="-399.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-380.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-363.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-363.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-363.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-356 324,-358 522,-358 522,-356 324,-356"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-354 324,-356 522,-356 522,-354 324,-354"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-352 324,-354 522,-354 522,-352 324,-352"/>
|
||||
<text text-anchor="start" x="344.5" y="-338.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-338.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-338.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-331 324,-333 522,-333 522,-331 324,-331"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-329 324,-331 522,-331 522,-329 324,-329"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-327 324,-329 522,-329 522,-327 324,-327"/>
|
||||
<text text-anchor="start" x="356.5" y="-313.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C299.95,-200.55 255.89,-355.55 348,-353"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C298.03,-200 253.97,-355 348,-355"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C296.11,-199.45 252.05,-354.45 348,-357"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C275.95,-200.55 231.89,-355.55 324,-353"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C274.03,-200 229.97,-355 324,-355"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C272.11,-199.45 228.05,-354.45 324,-357"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C299.31,-177.54 256.55,-330.54 348,-328"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C297.38,-177 254.62,-330 348,-330"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C295.45,-176.46 252.69,-329.46 348,-332"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C275.31,-177.54 232.55,-330.54 324,-328"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C273.38,-177 230.62,-330 324,-330"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C271.45,-176.46 228.69,-329.46 324,-332"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="none" stroke="black" points="546,-284 348,-284 348,-154 546,-154 546,-284"/>
|
||||
<polygon fill="none" stroke="black" points="348,-261 348,-284 546,-284 546,-261 348,-261"/>
|
||||
<text text-anchor="start" x="436" y="-268.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="348,-238 348,-261 371,-261 371,-238 348,-238"/>
|
||||
<text text-anchor="start" x="352" y="-245.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-238 371,-261 503,-261 503,-238 371,-238"/>
|
||||
<text text-anchor="start" x="375" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-238 503,-261 546,-261 546,-238 503,-238"/>
|
||||
<text text-anchor="start" x="507" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-209.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-198 348,-204 546,-204 546,-198 348,-198"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-199 545,-199 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-203 349,-203 "/>
|
||||
<text text-anchor="start" x="368.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-184.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-173 348,-179 546,-179 546,-173 348,-173"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-174 545,-174 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-178 349,-178 "/>
|
||||
<text text-anchor="start" x="380.5" y="-159.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-284 324,-284 324,-154 522,-154 522,-284"/>
|
||||
<polygon fill="none" stroke="black" points="324,-261 324,-284 522,-284 522,-261 324,-261"/>
|
||||
<text text-anchor="start" x="412" y="-268.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="324,-238 324,-261 347,-261 347,-238 324,-238"/>
|
||||
<text text-anchor="start" x="328" y="-245.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-238 347,-261 479,-261 479,-238 347,-238"/>
|
||||
<text text-anchor="start" x="351" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-238 479,-261 522,-261 522,-238 479,-238"/>
|
||||
<text text-anchor="start" x="483" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-209.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="344.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-184.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="356.5" y="-159.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C268.13,-198 284.12,-199 348,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C268,-200 284,-201 348,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C267.88,-202 283.87,-203 348,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C244.13,-198 260.12,-199 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C244,-200 260,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C243.88,-202 259.87,-203 324,-203"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C267.88,-175 283.87,-174 348,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C268,-177 284,-176 348,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C268.13,-179 284.12,-178 348,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C243.88,-175 259.87,-174 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C244,-177 260,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C244.13,-179 260.12,-178 324,-178"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node7" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="none" stroke="black" points="546,-130 348,-130 348,0 546,0 546,-130"/>
|
||||
<polygon fill="none" stroke="black" points="348,-107 348,-130 546,-130 546,-107 348,-107"/>
|
||||
<text text-anchor="start" x="436" y="-114.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="348,-84 348,-107 371,-107 371,-84 348,-84"/>
|
||||
<text text-anchor="start" x="352" y="-91.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-84 371,-107 503,-107 503,-84 371,-84"/>
|
||||
<text text-anchor="start" x="375" y="-91.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-84 503,-107 546,-107 546,-84 503,-84"/>
|
||||
<text text-anchor="start" x="507" y="-91.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-72.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-55.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-55.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-55.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-44 348,-50 546,-50 546,-44 348,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-45 545,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-49 349,-49 "/>
|
||||
<text text-anchor="start" x="368.5" y="-30.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-30.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-30.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-19 348,-25 546,-25 546,-19 348,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-20 545,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-24 349,-24 "/>
|
||||
<text text-anchor="start" x="380.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="522,-130 324,-130 324,0 522,0 522,-130"/>
|
||||
<polygon fill="none" stroke="black" points="324,-107 324,-130 522,-130 522,-107 324,-107"/>
|
||||
<text text-anchor="start" x="412" y="-114.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="324,-84 324,-107 347,-107 347,-84 324,-84"/>
|
||||
<text text-anchor="start" x="328" y="-91.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-84 347,-107 479,-107 479,-84 347,-84"/>
|
||||
<text text-anchor="start" x="351" y="-91.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-84 479,-107 522,-107 522,-84 479,-84"/>
|
||||
<text text-anchor="start" x="483" y="-91.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-72.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-55.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-55.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-55.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-48 324,-50 522,-50 522,-48 324,-48"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-46 324,-48 522,-48 522,-46 324,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-44 324,-46 522,-46 522,-44 324,-44"/>
|
||||
<text text-anchor="start" x="344.5" y="-30.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-30.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-30.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-23 324,-25 522,-25 522,-23 324,-23"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-21 324,-23 522,-23 522,-21 324,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-19 324,-21 522,-21 522,-19 324,-19"/>
|
||||
<text text-anchor="start" x="356.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-198C295.45,-200.54 252.69,-47.54 348,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-200C297.38,-200 254.62,-47 348,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-202C299.31,-199.46 256.55,-46.46 348,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-198C271.45,-200.54 228.69,-47.54 324,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-200C273.38,-200 230.62,-47 324,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C275.31,-199.46 232.55,-46.46 324,-49"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-175C296.11,-177.55 252.05,-22.55 348,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-177C298.03,-177 253.97,-22 348,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-179C299.95,-176.45 255.89,-21.45 348,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-175C272.11,-177.55 228.05,-22.55 324,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-177C274.03,-177 229.97,-22 324,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C275.95,-176.45 231.89,-21.45 324,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="690,-320 690,-412 905,-412 905,-320 690,-320"/>
|
||||
<text text-anchor="middle" x="797.5" y="-396.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="690,-389 905,-389 "/>
|
||||
<text text-anchor="middle" x="745" y="-373.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-366 800,-389 "/>
|
||||
<text text-anchor="middle" x="829" y="-373.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-366 858,-389 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-373.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-366 905,-366 "/>
|
||||
<text text-anchor="middle" x="738" y="-350.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-343 786,-343 "/>
|
||||
<text text-anchor="middle" x="738" y="-327.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-320 786,-366 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-350.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-343 905,-343 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-327.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-412 666,-412 666,-320 857,-320 857,-412"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-389 666.5,-412 857.5,-412 857.5,-389 666.5,-389"/>
|
||||
<text text-anchor="start" x="753.5" y="-396.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-366 666.5,-389 768.5,-389 768.5,-366 666.5,-366"/>
|
||||
<text text-anchor="start" x="670.5" y="-373.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-366 768.5,-389 818.5,-389 818.5,-366 768.5,-366"/>
|
||||
<text text-anchor="start" x="772.5" y="-373.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-366 818.5,-389 857.5,-389 857.5,-366 818.5,-366"/>
|
||||
<text text-anchor="start" x="822.5" y="-373.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-343 666.5,-366 750.5,-366 750.5,-343 666.5,-343"/>
|
||||
<text text-anchor="start" x="704.5" y="-350.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-343 750.5,-366 857.5,-366 857.5,-343 750.5,-343"/>
|
||||
<text text-anchor="start" x="788.5" y="-350.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-320 666.5,-343 750.5,-343 750.5,-320 666.5,-320"/>
|
||||
<text text-anchor="start" x="704.5" y="-327.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-320 750.5,-343 857.5,-343 857.5,-320 750.5,-320"/>
|
||||
<text text-anchor="start" x="789.5" y="-327.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="690,-166 690,-258 905,-258 905,-166 690,-166"/>
|
||||
<text text-anchor="middle" x="797.5" y="-242.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="690,-235 905,-235 "/>
|
||||
<text text-anchor="middle" x="745" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-212 800,-235 "/>
|
||||
<text text-anchor="middle" x="829" y="-219.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-212 858,-235 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-212 905,-212 "/>
|
||||
<text text-anchor="middle" x="738" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-189 786,-189 "/>
|
||||
<text text-anchor="middle" x="738" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-166 786,-212 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-189 905,-189 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-258 666,-258 666,-166 857,-166 857,-258"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-235 666.5,-258 857.5,-258 857.5,-235 666.5,-235"/>
|
||||
<text text-anchor="start" x="753.5" y="-242.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-212 666.5,-235 768.5,-235 768.5,-212 666.5,-212"/>
|
||||
<text text-anchor="start" x="670.5" y="-219.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-212 768.5,-235 818.5,-235 818.5,-212 768.5,-212"/>
|
||||
<text text-anchor="start" x="772.5" y="-219.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-212 818.5,-235 857.5,-235 857.5,-212 818.5,-212"/>
|
||||
<text text-anchor="start" x="822.5" y="-219.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-189 666.5,-212 750.5,-212 750.5,-189 666.5,-189"/>
|
||||
<text text-anchor="start" x="704.5" y="-196.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-189 750.5,-212 857.5,-212 857.5,-189 750.5,-189"/>
|
||||
<text text-anchor="start" x="788.5" y="-196.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-166 666.5,-189 750.5,-189 750.5,-166 666.5,-166"/>
|
||||
<text text-anchor="start" x="704.5" y="-173.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-166 750.5,-189 857.5,-189 857.5,-166 750.5,-166"/>
|
||||
<text text-anchor="start" x="789.5" y="-173.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="690,-12 690,-104 905,-104 905,-12 690,-12"/>
|
||||
<text text-anchor="middle" x="797.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="690,-81 905,-81 "/>
|
||||
<text text-anchor="middle" x="745" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-58 800,-81 "/>
|
||||
<text text-anchor="middle" x="829" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-58 858,-81 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-58 905,-58 "/>
|
||||
<text text-anchor="middle" x="738" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-35 786,-35 "/>
|
||||
<text text-anchor="middle" x="738" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-12 786,-58 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-35 905,-35 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-104 666,-104 666,-12 857,-12 857,-104"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-81 666.5,-104 857.5,-104 857.5,-81 666.5,-81"/>
|
||||
<text text-anchor="start" x="753.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-58 666.5,-81 768.5,-81 768.5,-58 666.5,-58"/>
|
||||
<text text-anchor="start" x="670.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-58 768.5,-81 818.5,-81 818.5,-58 768.5,-58"/>
|
||||
<text text-anchor="start" x="772.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-58 818.5,-81 857.5,-81 857.5,-58 818.5,-58"/>
|
||||
<text text-anchor="start" x="822.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-35 666.5,-58 750.5,-58 750.5,-35 666.5,-35"/>
|
||||
<text text-anchor="start" x="704.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-35 750.5,-58 857.5,-58 857.5,-35 750.5,-35"/>
|
||||
<text text-anchor="start" x="788.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-12 666.5,-35 750.5,-35 750.5,-12 666.5,-12"/>
|
||||
<text text-anchor="start" x="704.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-12 750.5,-35 857.5,-35 857.5,-12 750.5,-12"/>
|
||||
<text text-anchor="start" x="789.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-353C609.88,-353 625.87,-352 690,-352"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-355C610,-355 626,-354 690,-354"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-357C610.13,-357 626.12,-356 690,-356"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-353C585.88,-353 601.87,-352 666,-352"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-355C586,-355 602,-354 666,-354"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-357C586.13,-357 602.12,-356 666,-356"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-328C610.13,-328 626.12,-329 690,-329"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-330C610,-330 626,-331 690,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-332C609.88,-332 625.87,-333 690,-333"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-328C586.13,-328 602.12,-329 666,-329"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-330C586,-330 602,-331 666,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-332C585.88,-332 601.87,-333 666,-333"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-199C609.88,-199 625.87,-198 690,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-201C610,-201 626,-200 690,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-203C610.13,-203 626.12,-202 690,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C585.88,-199 601.87,-198 666,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C586,-201 602,-200 666,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C586.13,-203 602.12,-202 666,-202"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-174C610.13,-174 626.12,-175 690,-175"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-176C610,-176 626,-177 690,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-178C609.88,-178 625.87,-179 690,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C586.13,-174 602.12,-175 666,-175"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C586,-176 602,-177 666,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C585.88,-178 601.87,-179 666,-179"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-45C609.88,-45 625.87,-44 690,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-47C610,-47 626,-46 690,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-49C610.13,-49 626.12,-48 690,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-45C585.88,-45 601.87,-44 666,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-47C586,-47 602,-46 666,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-49C586.13,-49 602.12,-48 666,-48"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-20C610.13,-20 626.12,-21 690,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-22C610,-22 626,-23 690,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-24C609.88,-24 625.87,-25 690,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-20C586.13,-20 602.12,-21 666,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-22C586,-22 602,-23 666,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-24C585.88,-24 601.87,-25 666,-25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 18 KiB |
@ -2,11 +2,11 @@ connectors:
|
||||
X1: &boo
|
||||
type: Molex Micro-Fit
|
||||
subtype: male
|
||||
pinout: [GND, VCC]
|
||||
pinlabels: [GND, VCC]
|
||||
X2: &con_power_f # define template
|
||||
type: Molex Micro-Fit
|
||||
subtype: female
|
||||
pinout: [GND, VCC]
|
||||
pinlabels: [GND, VCC]
|
||||
X3:
|
||||
<<: *con_power_f # create from template
|
||||
X4:
|
||||
|
||||
@ -4,10 +4,10 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex Micro-Fit|male|2-pin}|{{GND|VCC}|{<p1r>1|<p2r>2}}"]
|
||||
X2 [label="X2|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
X3 [label="X3|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
X4 [label="X4|{Molex Micro-Fit|female|2-pin}|{{<p1l>1|<p2l>2}|{GND|VCC}}"]
|
||||
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">Molex Micro-Fit</td><td balign="left">male</td><td balign="left">2-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>VCC</td><td port="p2r">2</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex Micro-Fit</td><td balign="left">female</td><td balign="left">2-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>VCC</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
@ -26,5 +26,5 @@ graph {
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
X1:p2r:e -- W1:w6:w
|
||||
W1:w6:e -- X4:p2l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>6x</td><td>0.25 mm² (24 AWG)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:1</td><td>BK</td><td>X3:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:2</td><td>RD</td><td>X3:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w4"></td></tr><tr><td>X1:1</td><td>BK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w5"></td></tr><tr><td>X1:2</td><td>RD</td><td>X4:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w6"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">6x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BK</td><td>X2:1</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="#000000" 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</td><td>RD</td><td>X2:2</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="#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:1</td><td>BK</td><td>X3:1</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="#000000" 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</td><td>RD</td><td>X3:2</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="#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:1</td><td>BK</td><td>X4:1</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="#000000" 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</td><td>RD</td><td>X4:2</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="#ff0000" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
}
|
||||
|
||||
@ -1,228 +1,231 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="913pt" height="335pt"
|
||||
viewBox="0.00 0.00 913.00 335.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 331)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-331 909,-331 909,4 -4,4"/>
|
||||
<svg width="865pt" height="332pt"
|
||||
viewBox="0.00 0.00 865.00 332.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 328)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-328 861,-328 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-117.5 0,-209.5 204,-209.5 204,-117.5 0,-117.5"/>
|
||||
<text text-anchor="middle" x="102" y="-194.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-186.5 204,-186.5 "/>
|
||||
<text text-anchor="middle" x="55" y="-171.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="110,-163.5 110,-186.5 "/>
|
||||
<text text-anchor="middle" x="133.5" y="-171.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="157,-163.5 157,-186.5 "/>
|
||||
<text text-anchor="middle" x="180.5" y="-171.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-163.5 204,-163.5 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-148.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-140.5 113,-140.5 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-125.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="113,-117.5 113,-163.5 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-148.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="113,-140.5 204,-140.5 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-125.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="white" stroke="transparent" points="180,-208 0,-208 0,-116 180,-116 180,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
|
||||
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
|
||||
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
|
||||
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
|
||||
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
|
||||
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
|
||||
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
|
||||
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
|
||||
<text text-anchor="start" x="137" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="546,-285.5 348,-285.5 348,-55.5 546,-55.5 546,-285.5"/>
|
||||
<polygon fill="none" stroke="black" points="348,-262.5 348,-285.5 546,-285.5 546,-262.5 348,-262.5"/>
|
||||
<text text-anchor="start" x="436" y="-270.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="348,-239.5 348,-262.5 371,-262.5 371,-239.5 348,-239.5"/>
|
||||
<text text-anchor="start" x="352" y="-247.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-239.5 371,-262.5 503,-262.5 503,-239.5 371,-239.5"/>
|
||||
<text text-anchor="start" x="375" y="-247.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-239.5 503,-262.5 546,-262.5 546,-239.5 503,-239.5"/>
|
||||
<text text-anchor="start" x="507" y="-247.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-228.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-211.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-211.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-211.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-199.5 348,-205.5 546,-205.5 546,-199.5 348,-199.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-200.5 545,-200.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-204.5 349,-204.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-186.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-186.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-186.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-174.5 348,-180.5 546,-180.5 546,-174.5 348,-174.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-175.5 545,-175.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-179.5 349,-179.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-161.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-161.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-161.3" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="348,-149.5 348,-155.5 546,-155.5 546,-149.5 348,-149.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-150.5 545,-150.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-154.5 349,-154.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-136.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-136.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-136.3" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-124.5 348,-130.5 546,-130.5 546,-124.5 348,-124.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-125.5 545,-125.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-129.5 349,-129.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-111.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-111.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-111.3" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="348,-99.5 348,-105.5 546,-105.5 546,-99.5 348,-99.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-100.5 545,-100.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-104.5 349,-104.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-86.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-86.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-86.3" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-74.5 348,-80.5 546,-80.5 546,-74.5 348,-74.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-75.5 545,-75.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-79.5 349,-79.5 "/>
|
||||
<text text-anchor="start" x="380.5" y="-61.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="522,-284 324,-284 324,-54 522,-54 522,-284"/>
|
||||
<polygon fill="none" stroke="black" points="324,-261 324,-284 522,-284 522,-261 324,-261"/>
|
||||
<text text-anchor="start" x="412" y="-268.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-238 324,-261 347,-261 347,-238 324,-238"/>
|
||||
<text text-anchor="start" x="328" y="-245.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-238 347,-261 479,-261 479,-238 347,-238"/>
|
||||
<text text-anchor="start" x="351" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-238 479,-261 522,-261 522,-238 479,-238"/>
|
||||
<text text-anchor="start" x="483" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-209.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="344.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-184.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="344.5" y="-159.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-159.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-159.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
|
||||
<text text-anchor="start" x="344.5" y="-134.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-134.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-134.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
|
||||
<text text-anchor="start" x="344.5" y="-109.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-109.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-109.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
|
||||
<text text-anchor="start" x="344.5" y="-84.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-84.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-84.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
|
||||
<text text-anchor="start" x="356.5" y="-59.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C273.87,-151.18 282.08,-202.18 348,-200.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C271.9,-151.5 280.1,-202.5 348,-202.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C269.92,-151.82 278.13,-202.82 348,-204.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-203"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C273.57,-128.15 282.36,-177.15 348,-175.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C271.6,-128.5 280.4,-177.5 348,-177.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C269.64,-128.85 278.43,-177.85 348,-179.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-178"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C268.13,-149.5 284.12,-150.5 348,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C268,-151.5 284,-152.5 348,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C267.88,-153.5 283.87,-154.5 348,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C244.13,-148 260.12,-149 324,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-153"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C267.88,-126.5 283.87,-125.5 348,-125.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C268,-128.5 284,-127.5 348,-127.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C268.13,-130.5 284.12,-129.5 348,-129.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C243.88,-125 259.87,-124 324,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-128"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C269.64,-151.15 278.43,-102.15 348,-100.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C271.6,-151.5 280.4,-102.5 348,-102.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C273.57,-151.85 282.36,-102.85 348,-104.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-103"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C269.92,-128.18 278.13,-77.18 348,-75.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C271.9,-128.5 280.1,-77.5 348,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C273.87,-128.82 282.08,-77.82 348,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-78"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="690,-234.5 690,-326.5 905,-326.5 905,-234.5 690,-234.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-311.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="690,-303.5 905,-303.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-288.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-280.5 800,-303.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-288.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-280.5 858,-303.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-288.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-280.5 905,-280.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-265.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-257.5 786,-257.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-242.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-234.5 786,-280.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-265.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-257.5 905,-257.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-242.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-324 666,-324 666,-232 857,-232 857,-324"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
|
||||
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
|
||||
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
|
||||
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
|
||||
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
|
||||
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
|
||||
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
|
||||
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
|
||||
<text text-anchor="start" x="789.5" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="690,-117.5 690,-209.5 905,-209.5 905,-117.5 690,-117.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-194.3" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="690,-186.5 905,-186.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-171.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-163.5 800,-186.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-171.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-163.5 858,-186.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-171.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-163.5 905,-163.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-148.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-140.5 786,-140.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-125.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-117.5 786,-163.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-148.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-140.5 905,-140.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-125.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-208 666,-208 666,-116 857,-116 857,-208"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
|
||||
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
|
||||
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
|
||||
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
|
||||
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
|
||||
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
|
||||
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
|
||||
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
|
||||
<text text-anchor="start" x="789.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="690,-0.5 690,-92.5 905,-92.5 905,-0.5 690,-0.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-77.3" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="690,-69.5 905,-69.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-54.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-46.5 800,-69.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-54.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-46.5 858,-69.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-54.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-46.5 905,-46.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-31.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-23.5 786,-23.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-8.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-0.5 786,-46.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-31.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-23.5 905,-23.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-8.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-92 666,-92 666,0 857,0 857,-92"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
|
||||
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
|
||||
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
|
||||
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
|
||||
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
|
||||
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
|
||||
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
|
||||
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
|
||||
<text text-anchor="start" x="789.5" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-200.5C618.4,-202.4 621.6,-268.4 690,-266.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-202.5C616.4,-202.5 619.6,-268.5 690,-268.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-204.5C614.4,-202.6 617.6,-268.6 690,-270.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-175.5C618.78,-177.43 621.22,-245.43 690,-243.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-177.5C616.78,-177.5 619.22,-245.5 690,-245.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-179.5C614.78,-177.57 617.22,-245.57 690,-247.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-150.5C609.88,-150.5 625.87,-149.5 690,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-152.5C610,-152.5 626,-151.5 690,-151.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-154.5C610.13,-154.5 626.12,-153.5 690,-153.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-125.5C610.13,-125.5 626.12,-126.5 690,-126.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-127.5C610,-127.5 626,-128.5 690,-128.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-129.5C609.88,-129.5 625.87,-130.5 690,-130.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-129"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-100.5C614.78,-102.43 617.22,-34.43 690,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-102.5C616.78,-102.5 619.22,-34.5 690,-34.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-104.5C618.78,-102.57 621.22,-34.57 690,-36.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-36"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-75.5C614.4,-77.4 617.6,-11.4 690,-9.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-77.5C616.4,-77.5 619.6,-11.5 690,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-79.5C618.4,-77.6 621.6,-11.6 690,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-13"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, female, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3, X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, male, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, female, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2, X3, X4</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex Micro-Fit, male, 2 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
@ -4,224 +4,228 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="913pt" height="335pt"
|
||||
viewBox="0.00 0.00 913.00 335.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 331)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-331 909,-331 909,4 -4,4"/>
|
||||
<svg width="865pt" height="332pt"
|
||||
viewBox="0.00 0.00 865.00 332.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 328)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-328 861,-328 861,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-117.5 0,-209.5 204,-209.5 204,-117.5 0,-117.5"/>
|
||||
<text text-anchor="middle" x="102" y="-194.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-186.5 204,-186.5 "/>
|
||||
<text text-anchor="middle" x="55" y="-171.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="110,-163.5 110,-186.5 "/>
|
||||
<text text-anchor="middle" x="133.5" y="-171.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="157,-163.5 157,-186.5 "/>
|
||||
<text text-anchor="middle" x="180.5" y="-171.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-163.5 204,-163.5 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-148.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-140.5 113,-140.5 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-125.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="113,-117.5 113,-163.5 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-148.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="113,-140.5 204,-140.5 "/>
|
||||
<text text-anchor="middle" x="158.5" y="-125.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="white" stroke="transparent" points="180,-208 0,-208 0,-116 180,-116 180,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
|
||||
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
|
||||
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
|
||||
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
|
||||
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
|
||||
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
|
||||
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
|
||||
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
|
||||
<text text-anchor="start" x="137" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="546,-285.5 348,-285.5 348,-55.5 546,-55.5 546,-285.5"/>
|
||||
<polygon fill="none" stroke="black" points="348,-262.5 348,-285.5 546,-285.5 546,-262.5 348,-262.5"/>
|
||||
<text text-anchor="start" x="436" y="-270.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="348,-239.5 348,-262.5 371,-262.5 371,-239.5 348,-239.5"/>
|
||||
<text text-anchor="start" x="352" y="-247.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-239.5 371,-262.5 503,-262.5 503,-239.5 371,-239.5"/>
|
||||
<text text-anchor="start" x="375" y="-247.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="503,-239.5 503,-262.5 546,-262.5 546,-239.5 503,-239.5"/>
|
||||
<text text-anchor="start" x="507" y="-247.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="445" y="-228.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-211.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-211.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-211.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="348,-199.5 348,-205.5 546,-205.5 546,-199.5 348,-199.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-200.5 545,-200.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-204.5 349,-204.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-186.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-186.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-186.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-174.5 348,-180.5 546,-180.5 546,-174.5 348,-174.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-175.5 545,-175.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-179.5 349,-179.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-161.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-161.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-161.3" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="348,-149.5 348,-155.5 546,-155.5 546,-149.5 348,-149.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-150.5 545,-150.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-154.5 349,-154.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-136.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-136.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-136.3" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-124.5 348,-130.5 546,-130.5 546,-124.5 348,-124.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-125.5 545,-125.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-129.5 349,-129.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-111.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="438" y="-111.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="498" y="-111.3" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="348,-99.5 348,-105.5 546,-105.5 546,-99.5 348,-99.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-100.5 545,-100.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-104.5 349,-104.5 "/>
|
||||
<text text-anchor="start" x="368.5" y="-86.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="437.5" y="-86.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="498" y="-86.3" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="348,-74.5 348,-80.5 546,-80.5 546,-74.5 348,-74.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="349,-75.5 545,-75.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="545,-79.5 349,-79.5 "/>
|
||||
<text text-anchor="start" x="380.5" y="-61.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="522,-284 324,-284 324,-54 522,-54 522,-284"/>
|
||||
<polygon fill="none" stroke="black" points="324,-261 324,-284 522,-284 522,-261 324,-261"/>
|
||||
<text text-anchor="start" x="412" y="-268.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-238 324,-261 347,-261 347,-238 324,-238"/>
|
||||
<text text-anchor="start" x="328" y="-245.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-238 347,-261 479,-261 479,-238 347,-238"/>
|
||||
<text text-anchor="start" x="351" y="-245.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-238 479,-261 522,-261 522,-238 479,-238"/>
|
||||
<text text-anchor="start" x="483" y="-245.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="421" y="-226.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-209.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-209.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-209.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="344.5" y="-184.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-184.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-184.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="344.5" y="-159.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-159.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-159.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
|
||||
<text text-anchor="start" x="344.5" y="-134.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-134.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-134.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
|
||||
<text text-anchor="start" x="344.5" y="-109.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="414" y="-109.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="474" y="-109.8" font-family="arial" font-size="14.00">X4:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
|
||||
<text text-anchor="start" x="344.5" y="-84.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="413.5" y="-84.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="474" y="-84.8" font-family="arial" font-size="14.00">X4:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
|
||||
<text text-anchor="start" x="356.5" y="-59.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C273.87,-151.18 282.08,-202.18 348,-200.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C271.9,-151.5 280.1,-202.5 348,-202.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C269.92,-151.82 278.13,-202.82 348,-204.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-203"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C273.57,-128.15 282.36,-177.15 348,-175.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C271.6,-128.5 280.4,-177.5 348,-177.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C269.64,-128.85 278.43,-177.85 348,-179.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-178"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C268.13,-149.5 284.12,-150.5 348,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C268,-151.5 284,-152.5 348,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C267.88,-153.5 283.87,-154.5 348,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C244.13,-148 260.12,-149 324,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-153"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C267.88,-126.5 283.87,-125.5 348,-125.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C268,-128.5 284,-127.5 348,-127.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C268.13,-130.5 284.12,-129.5 348,-129.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C243.88,-125 259.87,-124 324,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-128"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-149.5C269.64,-151.15 278.43,-102.15 348,-100.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-151.5C271.6,-151.5 280.4,-102.5 348,-102.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-153.5C273.57,-151.85 282.36,-102.85 348,-104.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-103"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-126.5C269.92,-128.18 278.13,-77.18 348,-75.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M204,-128.5C271.9,-128.5 280.1,-77.5 348,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M204,-130.5C273.87,-128.82 282.08,-77.82 348,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-78"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="690,-234.5 690,-326.5 905,-326.5 905,-234.5 690,-234.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-311.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="690,-303.5 905,-303.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-288.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-280.5 800,-303.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-288.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-280.5 858,-303.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-288.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-280.5 905,-280.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-265.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-257.5 786,-257.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-242.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-234.5 786,-280.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-265.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-257.5 905,-257.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-242.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-324 666,-324 666,-232 857,-232 857,-324"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
|
||||
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
|
||||
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
|
||||
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
|
||||
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
|
||||
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
|
||||
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
|
||||
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
|
||||
<text text-anchor="start" x="789.5" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="690,-117.5 690,-209.5 905,-209.5 905,-117.5 690,-117.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-194.3" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="690,-186.5 905,-186.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-171.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-163.5 800,-186.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-171.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-163.5 858,-186.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-171.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-163.5 905,-163.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-148.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-140.5 786,-140.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-125.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-117.5 786,-163.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-148.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-140.5 905,-140.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-125.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-208 666,-208 666,-116 857,-116 857,-208"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
|
||||
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
|
||||
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
|
||||
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
|
||||
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
|
||||
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
|
||||
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
|
||||
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
|
||||
<text text-anchor="start" x="789.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="white" stroke="black" points="690,-0.5 690,-92.5 905,-92.5 905,-0.5 690,-0.5"/>
|
||||
<text text-anchor="middle" x="797.5" y="-77.3" font-family="arial" font-size="14.00">X4</text>
|
||||
<polyline fill="none" stroke="black" points="690,-69.5 905,-69.5 "/>
|
||||
<text text-anchor="middle" x="745" y="-54.3" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polyline fill="none" stroke="black" points="800,-46.5 800,-69.5 "/>
|
||||
<text text-anchor="middle" x="829" y="-54.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="858,-46.5 858,-69.5 "/>
|
||||
<text text-anchor="middle" x="881.5" y="-54.3" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polyline fill="none" stroke="black" points="690,-46.5 905,-46.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-31.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="690,-23.5 786,-23.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-8.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="786,-0.5 786,-46.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-31.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="786,-23.5 905,-23.5 "/>
|
||||
<text text-anchor="middle" x="845.5" y="-8.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="white" stroke="transparent" points="857,-92 666,-92 666,0 857,0 857,-92"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
|
||||
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
|
||||
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
|
||||
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
|
||||
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
|
||||
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
|
||||
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
|
||||
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
|
||||
<text text-anchor="start" x="789.5" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-200.5C618.4,-202.4 621.6,-268.4 690,-266.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-202.5C616.4,-202.5 619.6,-268.5 690,-268.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-204.5C614.4,-202.6 617.6,-268.6 690,-270.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-175.5C618.78,-177.43 621.22,-245.43 690,-243.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-177.5C616.78,-177.5 619.22,-245.5 690,-245.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-179.5C614.78,-177.57 617.22,-245.57 690,-247.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-150.5C609.88,-150.5 625.87,-149.5 690,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-152.5C610,-152.5 626,-151.5 690,-151.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-154.5C610.13,-154.5 626.12,-153.5 690,-153.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-125.5C610.13,-125.5 626.12,-126.5 690,-126.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-127.5C610,-127.5 626,-128.5 690,-128.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-129.5C609.88,-129.5 625.87,-130.5 690,-130.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-129"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-100.5C614.78,-102.43 617.22,-34.43 690,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-102.5C616.78,-102.5 619.22,-34.5 690,-34.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-104.5C618.78,-102.57 621.22,-34.57 690,-36.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-36"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-75.5C614.4,-77.4 617.6,-11.4 690,-9.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M546,-77.5C616.4,-77.5 619.6,-11.5 690,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M546,-79.5C618.4,-77.6 621.6,-11.6 690,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-13"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@ -2,11 +2,11 @@ connectors:
|
||||
X1: &boo
|
||||
type: Molex Micro-Fit
|
||||
subtype: male
|
||||
pinout: [GND, VCC]
|
||||
pinlabels: [GND, VCC]
|
||||
X2: &con_power_f
|
||||
type: Molex Micro-Fit
|
||||
subtype: female
|
||||
pinout: [GND, VCC]
|
||||
pinlabels: [GND, VCC]
|
||||
X3:
|
||||
<<: *con_power_f
|
||||
X4:
|
||||
|
||||
166
examples/ex04.gv
@ -4,149 +4,35 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
_F1 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F2 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F3 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F4 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F5 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F6 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Crimp ferrule </TD>
|
||||
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F7 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
_F8 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
_F9 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
_F10 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
_F11 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
_F12 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> </TD>
|
||||
|
||||
<TD PORT="p1r"> Crimp ferrule </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=0 shape=none style=filled]
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
_F1:e -- W1:w1:w
|
||||
_ferrule_crimp_1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_5 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_6 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_7 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_8 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_9 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_10 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_11 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_ferrule_crimp_12 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
_ferrule_crimp_1:e -- W1:w1:w
|
||||
W1:w1:e -- _ferrule_crimp_7:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
_F2:e -- W1:w2:w
|
||||
_ferrule_crimp_2:e -- W1:w2:w
|
||||
W1:w2:e -- _ferrule_crimp_8:w
|
||||
edge [color="#000000:#ff8000:#000000"]
|
||||
_F3:e -- W1:w3:w
|
||||
_ferrule_crimp_3:e -- W1:w3:w
|
||||
W1:w3:e -- _ferrule_crimp_9:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
_F4:e -- W1:w4:w
|
||||
_ferrule_crimp_4:e -- W1:w4:w
|
||||
W1:w4:e -- _ferrule_crimp_10:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
_F5:e -- W1:w5:w
|
||||
_ferrule_crimp_5:e -- W1:w5:w
|
||||
W1:w5:e -- _ferrule_crimp_11:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
_F6:e -- W1:w6:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
W1:w6:e -- _F7:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
W1:w5:e -- _F8:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
W1:w4:e -- _F9:w
|
||||
edge [color="#000000:#ff8000:#000000"]
|
||||
W1:w3:e -- _F10:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
W1:w2:e -- _F11:w
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
W1:w1:e -- _F12:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>6x</td><td>0.25 mm² (24 AWG)</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>BN</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w1"></td></tr><tr><td></td><td>RD</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td></td><td>OG</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff8000" border="2" sides="tb" port="w3"></td></tr><tr><td></td><td>YE</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td></td><td>GN</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w5"></td></tr><tr><td></td><td>BU</td><td></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#0066ff" border="2" sides="tb" port="w6"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
_ferrule_crimp_6:e -- W1:w6:w
|
||||
W1:w6:e -- _ferrule_crimp_12:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">6x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>BN</td><td></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="#895956" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>RD</td><td></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="#ff0000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>OG</td><td></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="#ff8000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>YE</td><td></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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>GN</td><td></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="#00ff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>BU</td><td></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="#0066ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
}
|
||||
|
||||
@ -1,232 +1,219 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="712pt" height="344pt"
|
||||
viewBox="0.00 0.00 712.00 344.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="668pt" height="344pt"
|
||||
viewBox="0.00 0.00 668.00 344.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 340)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-340 708,-340 708,4 -4,4"/>
|
||||
<!-- _F1 -->
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-340 664,-340 664,4 -4,4"/>
|
||||
<!-- _ferrule_crimp_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-300 109,-300 109,-336 0,-336 0,-300"/>
|
||||
<text text-anchor="start" x="3.5" y="-313.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-313.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-307.5 0,-328.5 109,-328.5 109,-307.5 0,-307.5"/>
|
||||
<title>_ferrule_crimp_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-336 0,-336 0,-300 87,-300 87,-336"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-306 0.5,-329 87.5,-329 87.5,-306 0.5,-306"/>
|
||||
<text text-anchor="start" x="4.5" y="-313.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node13" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="451,-313 253,-313 253,-83 451,-83 451,-313"/>
|
||||
<polygon fill="none" stroke="black" points="253,-290 253,-313 451,-313 451,-290 253,-290"/>
|
||||
<text text-anchor="start" x="341" y="-297.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="253,-267 253,-290 276,-290 276,-267 253,-267"/>
|
||||
<text text-anchor="start" x="257" y="-274.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="276,-267 276,-290 408,-290 408,-267 276,-267"/>
|
||||
<text text-anchor="start" x="280" y="-274.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="408,-267 408,-290 451,-290 451,-267 408,-267"/>
|
||||
<text text-anchor="start" x="412" y="-274.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="350" y="-255.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-238.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="253,-227 253,-233 451,-233 451,-227 253,-227"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-228 450,-228 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-232 254,-232 "/>
|
||||
<text text-anchor="start" x="344" y="-213.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="253,-202 253,-208 451,-208 451,-202 253,-202"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-203 450,-203 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-207 254,-207 "/>
|
||||
<text text-anchor="start" x="342.5" y="-188.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="253,-177 253,-183 451,-183 451,-177 253,-177"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-178 450,-178 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-182 254,-182 "/>
|
||||
<text text-anchor="start" x="344.5" y="-163.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="253,-152 253,-158 451,-158 451,-152 253,-152"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-153 450,-153 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-157 254,-157 "/>
|
||||
<text text-anchor="start" x="343" y="-138.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="253,-127 253,-133 451,-133 451,-127 253,-127"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-128 450,-128 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-132 254,-132 "/>
|
||||
<text text-anchor="start" x="344.5" y="-113.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="253,-102 253,-108 451,-108 451,-102 253,-102"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-103 450,-103 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-107 254,-107 "/>
|
||||
<text text-anchor="start" x="281.5" y="-88.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="429,-313 231,-313 231,-83 429,-83 429,-313"/>
|
||||
<polygon fill="none" stroke="black" points="231,-290 231,-313 429,-313 429,-290 231,-290"/>
|
||||
<text text-anchor="start" x="319" y="-297.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-267 231,-290 254,-290 254,-267 231,-267"/>
|
||||
<text text-anchor="start" x="235" y="-274.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="254,-267 254,-290 386,-290 386,-267 254,-267"/>
|
||||
<text text-anchor="start" x="258" y="-274.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="386,-267 386,-290 429,-290 429,-267 386,-267"/>
|
||||
<text text-anchor="start" x="390" y="-274.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="328" y="-255.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="322.5" y="-238.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-231 231,-233 429,-233 429,-231 231,-231"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="231,-229 231,-231 429,-231 429,-229 231,-229"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-227 231,-229 429,-229 429,-227 231,-227"/>
|
||||
<text text-anchor="start" x="322" y="-213.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-206 231,-208 429,-208 429,-206 231,-206"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="231,-204 231,-206 429,-206 429,-204 231,-204"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-202 231,-204 429,-204 429,-202 231,-202"/>
|
||||
<text text-anchor="start" x="320.5" y="-188.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-181 231,-183 429,-183 429,-181 231,-181"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="231,-179 231,-181 429,-181 429,-179 231,-179"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-177 231,-179 429,-179 429,-177 231,-177"/>
|
||||
<text text-anchor="start" x="322.5" y="-163.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-156 231,-158 429,-158 429,-156 231,-156"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="231,-154 231,-156 429,-156 429,-154 231,-154"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-152 231,-154 429,-154 429,-152 231,-152"/>
|
||||
<text text-anchor="start" x="321" y="-138.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-131 231,-133 429,-133 429,-131 231,-131"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="231,-129 231,-131 429,-131 429,-129 231,-129"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-127 231,-129 429,-129 429,-127 231,-127"/>
|
||||
<text text-anchor="start" x="322.5" y="-113.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-106 231,-108 429,-108 429,-106 231,-106"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="231,-104 231,-106 429,-106 429,-104 231,-104"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-102 231,-104 429,-104 429,-102 231,-102"/>
|
||||
<text text-anchor="start" x="259.5" y="-88.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W1 -->
|
||||
<!-- _ferrule_crimp_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>_F1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-316C182.01,-318.14 176,-230.14 253,-228"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M109,-318C184,-318 178,-230 253,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-320C186,-317.86 179.99,-229.86 253,-232"/>
|
||||
<title>_ferrule_crimp_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-316C160.01,-318.14 154,-230.14 231,-228"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-318C162,-318 156,-230 231,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-320C164,-317.86 157.99,-229.86 231,-232"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _ferrule_crimp_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-240 109,-240 109,-276 0,-276 0,-240"/>
|
||||
<text text-anchor="start" x="3.5" y="-253.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-253.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-247.5 0,-268.5 109,-268.5 109,-247.5 0,-247.5"/>
|
||||
<title>_ferrule_crimp_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-276 0,-276 0,-240 87,-240 87,-276"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-246 0.5,-269 87.5,-269 87.5,-246 0.5,-246"/>
|
||||
<text text-anchor="start" x="4.5" y="-253.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F2--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>_F2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-256C175.22,-257.72 182.82,-204.72 253,-203"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M109,-258C177.2,-258 184.8,-205 253,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-260C179.18,-258.28 186.78,-205.28 253,-207"/>
|
||||
</g>
|
||||
<!-- _F3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_F3</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-180 109,-180 109,-216 0,-216 0,-180"/>
|
||||
<text text-anchor="start" x="3.5" y="-193.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-187.5 0,-208.5 109,-208.5 109,-187.5 0,-187.5"/>
|
||||
</g>
|
||||
<!-- _F3--W1 -->
|
||||
<!-- _ferrule_crimp_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>_F3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-196C171.96,-196.72 186.97,-178.72 253,-178"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M109,-198C173.5,-198 188.5,-180 253,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-200C175.03,-199.28 190.04,-181.28 253,-182"/>
|
||||
<title>_ferrule_crimp_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-256C153.22,-257.72 160.82,-204.72 231,-203"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-258C155.2,-258 162.8,-205 231,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-260C157.18,-258.28 164.78,-205.28 231,-207"/>
|
||||
</g>
|
||||
<!-- _F4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F4</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-120 109,-120 109,-156 0,-156 0,-120"/>
|
||||
<text text-anchor="start" x="3.5" y="-133.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-127.5 0,-148.5 109,-148.5 109,-127.5 0,-127.5"/>
|
||||
<!-- _ferrule_crimp_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_ferrule_crimp_3</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-216 0,-216 0,-180 87,-180 87,-216"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-186 0.5,-209 87.5,-209 87.5,-186 0.5,-186"/>
|
||||
<text text-anchor="start" x="4.5" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F4--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>_F4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-136C174.94,-136.67 190.05,-153.67 253,-153"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M109,-138C173.44,-138 188.56,-155 253,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-140C171.95,-139.33 187.06,-156.33 253,-157"/>
|
||||
</g>
|
||||
<!-- _F5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F5</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-60 109,-60 109,-96 0,-96 0,-60"/>
|
||||
<text text-anchor="start" x="3.5" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-67.5 0,-88.5 109,-88.5 109,-67.5 0,-67.5"/>
|
||||
</g>
|
||||
<!-- _F5--W1 -->
|
||||
<!-- _ferrule_crimp_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>_F5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-76C179.02,-77.7 186.93,-129.7 253,-128"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M109,-78C177.05,-78 184.95,-130 253,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-80C175.07,-78.3 182.98,-130.3 253,-132"/>
|
||||
<title>_ferrule_crimp_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-196C149.96,-196.72 164.97,-178.72 231,-178"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-198C151.5,-198 166.5,-180 231,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-200C153.03,-199.28 168.04,-181.28 231,-182"/>
|
||||
</g>
|
||||
<!-- _F6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_F6</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,0 109,0 109,-36 0,-36 0,0"/>
|
||||
<text text-anchor="start" x="3.5" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-7.5 0,-28.5 109,-28.5 109,-7.5 0,-7.5"/>
|
||||
<!-- _ferrule_crimp_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_ferrule_crimp_4</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-156 0,-156 0,-120 87,-120 87,-156"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 87.5,-149 87.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="4.5" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F6--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>_F6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-16C185.77,-18.13 180.22,-105.13 253,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M109,-18C183.77,-18 178.23,-105 253,-105"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-20C181.78,-17.87 176.23,-104.87 253,-107"/>
|
||||
</g>
|
||||
<!-- _F7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>_F7</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-36 595,-36 595,0 704,0 704,-36"/>
|
||||
<text text-anchor="start" x="598.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-7.5 595,-28.5 704,-28.5 704,-7.5 595,-7.5"/>
|
||||
</g>
|
||||
<!-- _F8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>_F8</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-96 595,-96 595,-60 704,-60 704,-96"/>
|
||||
<text text-anchor="start" x="598.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-67.5 595,-88.5 704,-88.5 704,-67.5 595,-67.5"/>
|
||||
</g>
|
||||
<!-- _F9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>_F9</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-156 595,-156 595,-120 704,-120 704,-156"/>
|
||||
<text text-anchor="start" x="598.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-133.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-127.5 595,-148.5 704,-148.5 704,-127.5 595,-127.5"/>
|
||||
</g>
|
||||
<!-- _F10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>_F10</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-216 595,-216 595,-180 704,-180 704,-216"/>
|
||||
<text text-anchor="start" x="598.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-193.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-187.5 595,-208.5 704,-208.5 704,-187.5 595,-187.5"/>
|
||||
</g>
|
||||
<!-- _F11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>_F11</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-276 595,-276 595,-240 704,-240 704,-276"/>
|
||||
<text text-anchor="start" x="598.5" y="-253.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-253.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-247.5 595,-268.5 704,-268.5 704,-247.5 595,-247.5"/>
|
||||
</g>
|
||||
<!-- _F12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>_F12</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-336 595,-336 595,-300 704,-300 704,-336"/>
|
||||
<text text-anchor="start" x="598.5" y="-313.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-313.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-307.5 595,-328.5 704,-328.5 704,-307.5 595,-307.5"/>
|
||||
</g>
|
||||
<!-- W1--_F7 -->
|
||||
<!-- _ferrule_crimp_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--_F7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-103C523.78,-105.13 518.23,-18.13 595,-16"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M451,-105C525.77,-105 520.23,-18 595,-18"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-107C527.77,-104.87 522.22,-17.87 595,-20"/>
|
||||
<title>_ferrule_crimp_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-136C152.94,-136.67 168.05,-153.67 231,-153"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-138C151.44,-138 166.56,-155 231,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-140C149.95,-139.33 165.06,-156.33 231,-157"/>
|
||||
</g>
|
||||
<!-- W1--_F8 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--_F8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-128C517.07,-129.7 524.98,-77.7 595,-76"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M451,-130C519.05,-130 526.95,-78 595,-78"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-132C521.02,-130.3 528.93,-78.3 595,-80"/>
|
||||
<!-- _ferrule_crimp_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_ferrule_crimp_5</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-96 0,-96 0,-60 87,-60 87,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-66 0.5,-89 87.5,-89 87.5,-66 0.5,-66"/>
|
||||
<text text-anchor="start" x="4.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_F9 -->
|
||||
<!-- _ferrule_crimp_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--_F9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-153C513.95,-153.67 529.06,-136.67 595,-136"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M451,-155C515.44,-155 530.56,-138 595,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-157C516.94,-156.33 532.05,-139.33 595,-140"/>
|
||||
<title>_ferrule_crimp_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-76C157.02,-77.7 164.93,-129.7 231,-128"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-78C155.05,-78 162.95,-130 231,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-80C153.07,-78.3 160.98,-130.3 231,-132"/>
|
||||
</g>
|
||||
<!-- W1--_F10 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--_F10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-178C517.03,-178.72 532.04,-196.72 595,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M451,-180C515.5,-180 530.5,-198 595,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-182C513.96,-181.28 528.97,-199.28 595,-200"/>
|
||||
<!-- _ferrule_crimp_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_ferrule_crimp_6</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-36 0,-36 0,0 87,0 87,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-6 0.5,-29 87.5,-29 87.5,-6 0.5,-6"/>
|
||||
<text text-anchor="start" x="4.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_F11 -->
|
||||
<!-- _ferrule_crimp_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--_F11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-203C521.18,-204.72 528.78,-257.72 595,-256"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M451,-205C519.2,-205 526.8,-258 595,-258"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-207C517.22,-205.28 524.82,-258.28 595,-260"/>
|
||||
<title>_ferrule_crimp_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-16C163.77,-18.13 158.22,-105.13 231,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-18C161.77,-18 156.23,-105 231,-105"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-20C159.78,-17.87 154.23,-104.87 231,-107"/>
|
||||
</g>
|
||||
<!-- W1--_F12 -->
|
||||
<!-- _ferrule_crimp_7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>_ferrule_crimp_7</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-336 573,-336 573,-300 660,-300 660,-336"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-306 573.5,-329 660.5,-329 660.5,-306 573.5,-306"/>
|
||||
<text text-anchor="start" x="577.5" y="-313.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>_ferrule_crimp_8</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-276 573,-276 573,-240 660,-240 660,-276"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-246 573.5,-269 660.5,-269 660.5,-246 573.5,-246"/>
|
||||
<text text-anchor="start" x="577.5" y="-253.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>_ferrule_crimp_9</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-216 573,-216 573,-180 660,-180 660,-216"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-186 573.5,-209 660.5,-209 660.5,-186 573.5,-186"/>
|
||||
<text text-anchor="start" x="577.5" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>_ferrule_crimp_10</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-156 573,-156 573,-120 660,-120 660,-156"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-126 573.5,-149 660.5,-149 660.5,-126 573.5,-126"/>
|
||||
<text text-anchor="start" x="577.5" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>_ferrule_crimp_11</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-96 573,-96 573,-60 660,-60 660,-96"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-66 573.5,-89 660.5,-89 660.5,-66 573.5,-66"/>
|
||||
<text text-anchor="start" x="577.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>_ferrule_crimp_12</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-36 573,-36 573,0 660,0 660,-36"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-6 573.5,-29 660.5,-29 660.5,-6 573.5,-6"/>
|
||||
<text text-anchor="start" x="577.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_7 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-228C506,-230.14 499.99,-318.14 573,-316"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-230C504,-230 498,-318 573,-318"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-232C502.01,-229.86 496,-317.86 573,-320"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_8 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-203C499.18,-204.72 506.78,-257.72 573,-256"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-205C497.2,-205 504.8,-258 573,-258"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-207C495.22,-205.28 502.82,-258.28 573,-260"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_9 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-178C495.03,-178.72 510.04,-196.72 573,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-180C493.5,-180 508.5,-198 573,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-182C491.96,-181.28 506.97,-199.28 573,-200"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_10 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-153C491.95,-153.67 507.06,-136.67 573,-136"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-155C493.44,-155 508.56,-138 573,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-157C494.94,-156.33 510.05,-139.33 573,-140"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-128C495.07,-129.7 502.98,-77.7 573,-76"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-130C497.05,-130 504.95,-78 573,-78"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-132C499.02,-130.3 506.93,-78.3 573,-80"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_12 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--_F12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-228C528,-230.14 521.99,-318.14 595,-316"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M451,-230C526,-230 520,-318 595,-318"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-232C524.01,-229.86 518,-317.86 595,-320"/>
|
||||
<title>W1:e--_ferrule_crimp_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-103C501.78,-105.13 496.23,-18.13 573,-16"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-105C503.77,-105 498.23,-18 573,-18"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-107C505.77,-104.87 500.22,-17.87 573,-20"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Crimp ferrule</td><td align="right" style="border:1px solid #000000; padding: 4px">12</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BU</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², GN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Crimp ferrule</td><td align="right" style="border:1px solid #000000; padding: 4px">12</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², BU</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², GN</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
@ -4,228 +4,216 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="712pt" height="344pt"
|
||||
viewBox="0.00 0.00 712.00 344.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="668pt" height="344pt"
|
||||
viewBox="0.00 0.00 668.00 344.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 340)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-340 708,-340 708,4 -4,4"/>
|
||||
<!-- _F1 -->
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-340 664,-340 664,4 -4,4"/>
|
||||
<!-- _ferrule_crimp_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-300 109,-300 109,-336 0,-336 0,-300"/>
|
||||
<text text-anchor="start" x="3.5" y="-313.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-313.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-307.5 0,-328.5 109,-328.5 109,-307.5 0,-307.5"/>
|
||||
<title>_ferrule_crimp_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-336 0,-336 0,-300 87,-300 87,-336"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-306 0.5,-329 87.5,-329 87.5,-306 0.5,-306"/>
|
||||
<text text-anchor="start" x="4.5" y="-313.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node13" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="451,-313 253,-313 253,-83 451,-83 451,-313"/>
|
||||
<polygon fill="none" stroke="black" points="253,-290 253,-313 451,-313 451,-290 253,-290"/>
|
||||
<text text-anchor="start" x="341" y="-297.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="253,-267 253,-290 276,-290 276,-267 253,-267"/>
|
||||
<text text-anchor="start" x="257" y="-274.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="276,-267 276,-290 408,-290 408,-267 276,-267"/>
|
||||
<text text-anchor="start" x="280" y="-274.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="408,-267 408,-290 451,-290 451,-267 408,-267"/>
|
||||
<text text-anchor="start" x="412" y="-274.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="350" y="-255.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-238.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="253,-227 253,-233 451,-233 451,-227 253,-227"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-228 450,-228 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-232 254,-232 "/>
|
||||
<text text-anchor="start" x="344" y="-213.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="253,-202 253,-208 451,-208 451,-202 253,-202"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-203 450,-203 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-207 254,-207 "/>
|
||||
<text text-anchor="start" x="342.5" y="-188.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="253,-177 253,-183 451,-183 451,-177 253,-177"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-178 450,-178 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-182 254,-182 "/>
|
||||
<text text-anchor="start" x="344.5" y="-163.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="253,-152 253,-158 451,-158 451,-152 253,-152"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-153 450,-153 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-157 254,-157 "/>
|
||||
<text text-anchor="start" x="343" y="-138.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="253,-127 253,-133 451,-133 451,-127 253,-127"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-128 450,-128 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-132 254,-132 "/>
|
||||
<text text-anchor="start" x="344.5" y="-113.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="253,-102 253,-108 451,-108 451,-102 253,-102"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="254,-103 450,-103 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="450,-107 254,-107 "/>
|
||||
<text text-anchor="start" x="281.5" y="-88.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="429,-313 231,-313 231,-83 429,-83 429,-313"/>
|
||||
<polygon fill="none" stroke="black" points="231,-290 231,-313 429,-313 429,-290 231,-290"/>
|
||||
<text text-anchor="start" x="319" y="-297.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-267 231,-290 254,-290 254,-267 231,-267"/>
|
||||
<text text-anchor="start" x="235" y="-274.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="254,-267 254,-290 386,-290 386,-267 254,-267"/>
|
||||
<text text-anchor="start" x="258" y="-274.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="386,-267 386,-290 429,-290 429,-267 386,-267"/>
|
||||
<text text-anchor="start" x="390" y="-274.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="328" y="-255.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="322.5" y="-238.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-231 231,-233 429,-233 429,-231 231,-231"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="231,-229 231,-231 429,-231 429,-229 231,-229"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-227 231,-229 429,-229 429,-227 231,-227"/>
|
||||
<text text-anchor="start" x="322" y="-213.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-206 231,-208 429,-208 429,-206 231,-206"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="231,-204 231,-206 429,-206 429,-204 231,-204"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-202 231,-204 429,-204 429,-202 231,-202"/>
|
||||
<text text-anchor="start" x="320.5" y="-188.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-181 231,-183 429,-183 429,-181 231,-181"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="231,-179 231,-181 429,-181 429,-179 231,-179"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-177 231,-179 429,-179 429,-177 231,-177"/>
|
||||
<text text-anchor="start" x="322.5" y="-163.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-156 231,-158 429,-158 429,-156 231,-156"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="231,-154 231,-156 429,-156 429,-154 231,-154"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-152 231,-154 429,-154 429,-152 231,-152"/>
|
||||
<text text-anchor="start" x="321" y="-138.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-131 231,-133 429,-133 429,-131 231,-131"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="231,-129 231,-131 429,-131 429,-129 231,-129"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-127 231,-129 429,-129 429,-127 231,-127"/>
|
||||
<text text-anchor="start" x="322.5" y="-113.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-106 231,-108 429,-108 429,-106 231,-106"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="231,-104 231,-106 429,-106 429,-104 231,-104"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="231,-102 231,-104 429,-104 429,-102 231,-102"/>
|
||||
<text text-anchor="start" x="259.5" y="-88.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W1 -->
|
||||
<!-- _ferrule_crimp_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>_F1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-316C182.01,-318.14 176,-230.14 253,-228"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M109,-318C184,-318 178,-230 253,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-320C186,-317.86 179.99,-229.86 253,-232"/>
|
||||
<title>_ferrule_crimp_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-316C160.01,-318.14 154,-230.14 231,-228"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-318C162,-318 156,-230 231,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-320C164,-317.86 157.99,-229.86 231,-232"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _ferrule_crimp_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-240 109,-240 109,-276 0,-276 0,-240"/>
|
||||
<text text-anchor="start" x="3.5" y="-253.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-253.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-247.5 0,-268.5 109,-268.5 109,-247.5 0,-247.5"/>
|
||||
<title>_ferrule_crimp_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-276 0,-276 0,-240 87,-240 87,-276"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-246 0.5,-269 87.5,-269 87.5,-246 0.5,-246"/>
|
||||
<text text-anchor="start" x="4.5" y="-253.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F2--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>_F2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-256C175.22,-257.72 182.82,-204.72 253,-203"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M109,-258C177.2,-258 184.8,-205 253,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-260C179.18,-258.28 186.78,-205.28 253,-207"/>
|
||||
</g>
|
||||
<!-- _F3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_F3</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-180 109,-180 109,-216 0,-216 0,-180"/>
|
||||
<text text-anchor="start" x="3.5" y="-193.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-187.5 0,-208.5 109,-208.5 109,-187.5 0,-187.5"/>
|
||||
</g>
|
||||
<!-- _F3--W1 -->
|
||||
<!-- _ferrule_crimp_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>_F3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-196C171.96,-196.72 186.97,-178.72 253,-178"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M109,-198C173.5,-198 188.5,-180 253,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-200C175.03,-199.28 190.04,-181.28 253,-182"/>
|
||||
<title>_ferrule_crimp_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-256C153.22,-257.72 160.82,-204.72 231,-203"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-258C155.2,-258 162.8,-205 231,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-260C157.18,-258.28 164.78,-205.28 231,-207"/>
|
||||
</g>
|
||||
<!-- _F4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F4</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-120 109,-120 109,-156 0,-156 0,-120"/>
|
||||
<text text-anchor="start" x="3.5" y="-133.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-127.5 0,-148.5 109,-148.5 109,-127.5 0,-127.5"/>
|
||||
<!-- _ferrule_crimp_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_ferrule_crimp_3</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-216 0,-216 0,-180 87,-180 87,-216"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-186 0.5,-209 87.5,-209 87.5,-186 0.5,-186"/>
|
||||
<text text-anchor="start" x="4.5" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F4--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>_F4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-136C174.94,-136.67 190.05,-153.67 253,-153"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M109,-138C173.44,-138 188.56,-155 253,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-140C171.95,-139.33 187.06,-156.33 253,-157"/>
|
||||
</g>
|
||||
<!-- _F5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F5</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-60 109,-60 109,-96 0,-96 0,-60"/>
|
||||
<text text-anchor="start" x="3.5" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-67.5 0,-88.5 109,-88.5 109,-67.5 0,-67.5"/>
|
||||
</g>
|
||||
<!-- _F5--W1 -->
|
||||
<!-- _ferrule_crimp_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>_F5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-76C179.02,-77.7 186.93,-129.7 253,-128"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M109,-78C177.05,-78 184.95,-130 253,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-80C175.07,-78.3 182.98,-130.3 253,-132"/>
|
||||
<title>_ferrule_crimp_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-196C149.96,-196.72 164.97,-178.72 231,-178"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-198C151.5,-198 166.5,-180 231,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-200C153.03,-199.28 168.04,-181.28 231,-182"/>
|
||||
</g>
|
||||
<!-- _F6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_F6</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,0 109,0 109,-36 0,-36 0,0"/>
|
||||
<text text-anchor="start" x="3.5" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<text text-anchor="start" x="98.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-7.5 0,-28.5 109,-28.5 109,-7.5 0,-7.5"/>
|
||||
<!-- _ferrule_crimp_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_ferrule_crimp_4</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-156 0,-156 0,-120 87,-120 87,-156"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 87.5,-149 87.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="4.5" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _F6--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>_F6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-16C185.77,-18.13 180.22,-105.13 253,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M109,-18C183.77,-18 178.23,-105 253,-105"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M109,-20C181.78,-17.87 176.23,-104.87 253,-107"/>
|
||||
</g>
|
||||
<!-- _F7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>_F7</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-36 595,-36 595,0 704,0 704,-36"/>
|
||||
<text text-anchor="start" x="598.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-13.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-7.5 595,-28.5 704,-28.5 704,-7.5 595,-7.5"/>
|
||||
</g>
|
||||
<!-- _F8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>_F8</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-96 595,-96 595,-60 704,-60 704,-96"/>
|
||||
<text text-anchor="start" x="598.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-73.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-67.5 595,-88.5 704,-88.5 704,-67.5 595,-67.5"/>
|
||||
</g>
|
||||
<!-- _F9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>_F9</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-156 595,-156 595,-120 704,-120 704,-156"/>
|
||||
<text text-anchor="start" x="598.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-133.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-127.5 595,-148.5 704,-148.5 704,-127.5 595,-127.5"/>
|
||||
</g>
|
||||
<!-- _F10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>_F10</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-216 595,-216 595,-180 704,-180 704,-216"/>
|
||||
<text text-anchor="start" x="598.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-193.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-187.5 595,-208.5 704,-208.5 704,-187.5 595,-187.5"/>
|
||||
</g>
|
||||
<!-- _F11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>_F11</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-276 595,-276 595,-240 704,-240 704,-276"/>
|
||||
<text text-anchor="start" x="598.5" y="-253.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-253.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-247.5 595,-268.5 704,-268.5 704,-247.5 595,-247.5"/>
|
||||
</g>
|
||||
<!-- _F12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>_F12</title>
|
||||
<polygon fill="white" stroke="transparent" points="704,-336 595,-336 595,-300 704,-300 704,-336"/>
|
||||
<text text-anchor="start" x="598.5" y="-313.8" font-family="arial" font-size="14.00">  </text>
|
||||
<text text-anchor="start" x="610.5" y="-313.8" font-family="arial" font-size="14.00"> Crimp ferrule  </text>
|
||||
<polygon fill="none" stroke="black" points="595,-307.5 595,-328.5 704,-328.5 704,-307.5 595,-307.5"/>
|
||||
</g>
|
||||
<!-- W1--_F7 -->
|
||||
<!-- _ferrule_crimp_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--_F7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-103C523.78,-105.13 518.23,-18.13 595,-16"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M451,-105C525.77,-105 520.23,-18 595,-18"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-107C527.77,-104.87 522.22,-17.87 595,-20"/>
|
||||
<title>_ferrule_crimp_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-136C152.94,-136.67 168.05,-153.67 231,-153"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-138C151.44,-138 166.56,-155 231,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-140C149.95,-139.33 165.06,-156.33 231,-157"/>
|
||||
</g>
|
||||
<!-- W1--_F8 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--_F8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-128C517.07,-129.7 524.98,-77.7 595,-76"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M451,-130C519.05,-130 526.95,-78 595,-78"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-132C521.02,-130.3 528.93,-78.3 595,-80"/>
|
||||
<!-- _ferrule_crimp_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_ferrule_crimp_5</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-96 0,-96 0,-60 87,-60 87,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-66 0.5,-89 87.5,-89 87.5,-66 0.5,-66"/>
|
||||
<text text-anchor="start" x="4.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_F9 -->
|
||||
<!-- _ferrule_crimp_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--_F9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-153C513.95,-153.67 529.06,-136.67 595,-136"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M451,-155C515.44,-155 530.56,-138 595,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-157C516.94,-156.33 532.05,-139.33 595,-140"/>
|
||||
<title>_ferrule_crimp_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-76C157.02,-77.7 164.93,-129.7 231,-128"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-78C155.05,-78 162.95,-130 231,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-80C153.07,-78.3 160.98,-130.3 231,-132"/>
|
||||
</g>
|
||||
<!-- W1--_F10 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--_F10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-178C517.03,-178.72 532.04,-196.72 595,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M451,-180C515.5,-180 530.5,-198 595,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-182C513.96,-181.28 528.97,-199.28 595,-200"/>
|
||||
<!-- _ferrule_crimp_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>_ferrule_crimp_6</title>
|
||||
<polygon fill="white" stroke="transparent" points="87,-36 0,-36 0,0 87,0 87,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-6 0.5,-29 87.5,-29 87.5,-6 0.5,-6"/>
|
||||
<text text-anchor="start" x="4.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_F11 -->
|
||||
<!-- _ferrule_crimp_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--_F11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-203C521.18,-204.72 528.78,-257.72 595,-256"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M451,-205C519.2,-205 526.8,-258 595,-258"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-207C517.22,-205.28 524.82,-258.28 595,-260"/>
|
||||
<title>_ferrule_crimp_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-16C163.77,-18.13 158.22,-105.13 231,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-18C161.77,-18 156.23,-105 231,-105"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-20C159.78,-17.87 154.23,-104.87 231,-107"/>
|
||||
</g>
|
||||
<!-- W1--_F12 -->
|
||||
<!-- _ferrule_crimp_7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>_ferrule_crimp_7</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-336 573,-336 573,-300 660,-300 660,-336"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-306 573.5,-329 660.5,-329 660.5,-306 573.5,-306"/>
|
||||
<text text-anchor="start" x="577.5" y="-313.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>_ferrule_crimp_8</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-276 573,-276 573,-240 660,-240 660,-276"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-246 573.5,-269 660.5,-269 660.5,-246 573.5,-246"/>
|
||||
<text text-anchor="start" x="577.5" y="-253.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>_ferrule_crimp_9</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-216 573,-216 573,-180 660,-180 660,-216"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-186 573.5,-209 660.5,-209 660.5,-186 573.5,-186"/>
|
||||
<text text-anchor="start" x="577.5" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>_ferrule_crimp_10</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-156 573,-156 573,-120 660,-120 660,-156"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-126 573.5,-149 660.5,-149 660.5,-126 573.5,-126"/>
|
||||
<text text-anchor="start" x="577.5" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>_ferrule_crimp_11</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-96 573,-96 573,-60 660,-60 660,-96"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-66 573.5,-89 660.5,-89 660.5,-66 573.5,-66"/>
|
||||
<text text-anchor="start" x="577.5" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- _ferrule_crimp_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>_ferrule_crimp_12</title>
|
||||
<polygon fill="white" stroke="transparent" points="660,-36 573,-36 573,0 660,0 660,-36"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-6 573.5,-29 660.5,-29 660.5,-6 573.5,-6"/>
|
||||
<text text-anchor="start" x="577.5" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_7 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-228C506,-230.14 499.99,-318.14 573,-316"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-230C504,-230 498,-318 573,-318"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-232C502.01,-229.86 496,-317.86 573,-320"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_8 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-203C499.18,-204.72 506.78,-257.72 573,-256"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-205C497.2,-205 504.8,-258 573,-258"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-207C495.22,-205.28 502.82,-258.28 573,-260"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_9 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-178C495.03,-178.72 510.04,-196.72 573,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-180C493.5,-180 508.5,-198 573,-198"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-182C491.96,-181.28 506.97,-199.28 573,-200"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_10 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-153C491.95,-153.67 507.06,-136.67 573,-136"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-155C493.44,-155 508.56,-138 573,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-157C494.94,-156.33 510.05,-139.33 573,-140"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--_ferrule_crimp_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-128C495.07,-129.7 502.98,-77.7 573,-76"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-130C497.05,-130 504.95,-78 573,-78"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-132C499.02,-130.3 506.93,-78.3 573,-80"/>
|
||||
</g>
|
||||
<!-- W1--_ferrule_crimp_12 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--_F12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-228C528,-230.14 521.99,-318.14 595,-316"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M451,-230C526,-230 520,-318 595,-318"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M451,-232C524.01,-229.86 518,-317.86 595,-320"/>
|
||||
<title>W1:e--_ferrule_crimp_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-103C501.78,-105.13 496.23,-18.13 573,-16"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-105C503.77,-105 498.23,-18 573,-18"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-107C505.77,-104.87 500.22,-17.87 573,-20"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@ -9,16 +9,12 @@ cables:
|
||||
|
||||
connectors:
|
||||
ferrule_crimp:
|
||||
category: ferrule
|
||||
style: simple
|
||||
autogenerate: true
|
||||
type: Crimp ferrule
|
||||
show_name: false
|
||||
show_pincount: false
|
||||
|
||||
connections:
|
||||
-
|
||||
- ferrule_crimp
|
||||
- W1: [1-6]
|
||||
-
|
||||
- W1: [6-1]
|
||||
- ferrule_crimp
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Item Qty Unit Designators
|
||||
Connector, Molex KK 254, female, 4 pins 3 X1, X2, X3
|
||||
Wire, 0.25 mm², PK 0.4 m W1, W2
|
||||
Wire, 0.25 mm², TQ 0.4 m W1, W2
|
||||
Wire, 0.25 mm², VT 0.4 m W1, W2
|
||||
Wire, 0.25 mm², YE 0.4 m W1, W2
|
||||
Wire, I2C, 0.25 mm², PK 0.4 m W1, W2
|
||||
Wire, I2C, 0.25 mm², TQ 0.4 m W1, W2
|
||||
Wire, I2C, 0.25 mm², VT 0.4 m W1, W2
|
||||
Wire, I2C, 0.25 mm², YE 0.4 m W1, W2
|
||||
|
||||
|
@ -4,9 +4,9 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|4-pin}|{{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X3 [label="X3|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}}"]
|
||||
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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td port="p3l">3</td><td>SCL</td><td port="p3r">3</td></tr><tr><td port="p4l">4</td><td>SDA</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
@ -19,7 +19,7 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td>I2C</td><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>PK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>TQ</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>VT</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td balign="left">I2C</td><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>PK</td><td>X2:1</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="#ff66cc" 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</td><td>TQ</td><td>X2:2</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="#00ffff" 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</td><td>YE</td><td>X2:3</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="#ffff00" 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</td><td>VT</td><td>X2:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X2:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
@ -32,5 +32,5 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X2:p4r:e -- W2:w4:w
|
||||
W2:w4:e -- X3:p4l:w
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W2</td></tr><tr><td>I2C</td><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X2:1</td><td>PK</td><td>X3:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X2:2</td><td>TQ</td><td>X3:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X2:3</td><td>YE</td><td>X3:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X2:4</td><td>VT</td><td>X3:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W2</td></tr><tr><td balign="left">I2C</td><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X2:1</td><td>PK</td><td>X3:1</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="#ff66cc" 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</td><td>TQ</td><td>X3:2</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="#00ffff" 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</td><td>YE</td><td>X3:3</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="#ffff00" 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</td><td>VT</td><td>X3:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
}
|
||||
|
||||
@ -1,299 +1,301 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1528pt" height="188pt"
|
||||
viewBox="0.00 0.00 1528.00 188.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="1456pt" height="188pt"
|
||||
viewBox="0.00 0.00 1456.00 188.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 184)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 1524,-184 1524,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 1452,-184 1452,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 206,-152 206,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="103" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 206,-129 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-106 101,-129 "/>
|
||||
<text text-anchor="middle" x="130" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-106 159,-129 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 206,-106 "/>
|
||||
<text text-anchor="middle" x="57" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 114,-83 "/>
|
||||
<text text-anchor="middle" x="57" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 114,-60 "/>
|
||||
<text text-anchor="middle" x="57" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 114,-37 "/>
|
||||
<text text-anchor="middle" x="57" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="114,-14 114,-106 "/>
|
||||
<text text-anchor="middle" x="160" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-83 206,-83 "/>
|
||||
<text text-anchor="middle" x="160" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-60 206,-60 "/>
|
||||
<text text-anchor="middle" x="160" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-37 206,-37 "/>
|
||||
<text text-anchor="middle" x="160" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
|
||||
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
|
||||
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
|
||||
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
|
||||
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
|
||||
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
|
||||
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
|
||||
<text text-anchor="start" x="138.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="513,-180 350,-180 350,0 513,0 513,-180"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-157 350.5,-180 513.5,-180 513.5,-157 350.5,-157"/>
|
||||
<text text-anchor="start" x="421" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-134 350.5,-157 380.5,-157 380.5,-134 350.5,-134"/>
|
||||
<text text-anchor="start" x="354.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="380.5,-134 380.5,-157 403.5,-157 403.5,-134 380.5,-134"/>
|
||||
<text text-anchor="start" x="384.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="403.5,-134 403.5,-157 470.5,-157 470.5,-134 403.5,-134"/>
|
||||
<text text-anchor="start" x="407.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="470.5,-134 470.5,-157 513.5,-157 513.5,-134 470.5,-134"/>
|
||||
<text text-anchor="start" x="474.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="430" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="365" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="471" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="350.5,-94 350.5,-100 513.5,-100 513.5,-94 350.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-95 512.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-99 351.5,-99 "/>
|
||||
<text text-anchor="start" x="365" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="471" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ffff" stroke="transparent" stroke-width="2" points="350.5,-69 350.5,-75 513.5,-75 513.5,-69 350.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-70 512.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-74 351.5,-74 "/>
|
||||
<text text-anchor="start" x="365" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="471" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-44 350.5,-50 513.5,-50 513.5,-44 350.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-45 512.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-49 351.5,-49 "/>
|
||||
<text text-anchor="start" x="365" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="423" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="471" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="350.5,-19 350.5,-25 513.5,-25 513.5,-19 350.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 512.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-24 351.5,-24 "/>
|
||||
<text text-anchor="start" x="377" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="489,-180 326,-180 326,0 489,0 489,-180"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-157 326.5,-180 489.5,-180 489.5,-157 326.5,-157"/>
|
||||
<text text-anchor="start" x="397" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-134 326.5,-157 356.5,-157 356.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="330.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="356.5,-134 356.5,-157 379.5,-157 379.5,-134 356.5,-134"/>
|
||||
<text text-anchor="start" x="360.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="379.5,-134 379.5,-157 446.5,-157 446.5,-134 379.5,-134"/>
|
||||
<text text-anchor="start" x="383.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="446.5,-134 446.5,-157 489.5,-157 489.5,-134 446.5,-134"/>
|
||||
<text text-anchor="start" x="450.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="406" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="341" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="398.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="447" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-98 326.5,-100 489.5,-100 489.5,-98 326.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="326.5,-96 326.5,-98 489.5,-98 489.5,-96 326.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-94 326.5,-96 489.5,-96 489.5,-94 326.5,-94"/>
|
||||
<text text-anchor="start" x="341" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="398" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="447" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-73 326.5,-75 489.5,-75 489.5,-73 326.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="326.5,-71 326.5,-73 489.5,-73 489.5,-71 326.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-69 326.5,-71 489.5,-71 489.5,-69 326.5,-69"/>
|
||||
<text text-anchor="start" x="341" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="398.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="447" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-48 326.5,-50 489.5,-50 489.5,-48 326.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-46 326.5,-48 489.5,-48 489.5,-46 326.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-44 326.5,-46 489.5,-46 489.5,-44 326.5,-44"/>
|
||||
<text text-anchor="start" x="341" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="399" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="447" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-23 326.5,-25 489.5,-25 489.5,-23 326.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="326.5,-21 326.5,-23 489.5,-23 489.5,-21 326.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-19 326.5,-21 489.5,-21 489.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="353" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270.25,-93.02 286.24,-95.02 350,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M206,-95C270.01,-95 285.99,-97 350,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-97C269.76,-96.98 285.75,-98.98 350,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-69C270.13,-69 286.12,-70 350,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M206,-71C270,-71 286,-72 350,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-73C269.88,-73 285.87,-74 350,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-46C269.88,-46 285.87,-45 350,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-48C270,-48 286,-47 350,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-50C270.13,-50 286.12,-49 350,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-23C269.64,-23.03 285.62,-20.03 350,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M206,-25C270.01,-25 285.99,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-27C270.38,-26.97 286.36,-23.97 350,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="657,-14 657,-152 863,-152 863,-14 657,-14"/>
|
||||
<text text-anchor="middle" x="760" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="657,-129 863,-129 "/>
|
||||
<text text-anchor="middle" x="707.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="758,-106 758,-129 "/>
|
||||
<text text-anchor="middle" x="787" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="816,-106 816,-129 "/>
|
||||
<text text-anchor="middle" x="839.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="657,-106 863,-106 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="657,-83 718,-83 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="657,-60 718,-60 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="657,-37 718,-37 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="718,-14 718,-106 "/>
|
||||
<text text-anchor="middle" x="760" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="718,-83 802,-83 "/>
|
||||
<text text-anchor="middle" x="760" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="718,-60 802,-60 "/>
|
||||
<text text-anchor="middle" x="760" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="718,-37 802,-37 "/>
|
||||
<text text-anchor="middle" x="760" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="802,-14 802,-106 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="802,-83 863,-83 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="802,-60 863,-60 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="802,-37 863,-37 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="815,-152 633,-152 633,-14 815,-14 815,-152"/>
|
||||
<polygon fill="none" stroke="black" points="633,-129 633,-152 815,-152 815,-129 633,-129"/>
|
||||
<text text-anchor="start" x="715.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="633,-106 633,-129 726,-129 726,-106 633,-106"/>
|
||||
<text text-anchor="start" x="637" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="726,-106 726,-129 776,-129 776,-106 726,-106"/>
|
||||
<text text-anchor="start" x="730" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="776,-106 776,-129 815,-129 815,-106 776,-106"/>
|
||||
<text text-anchor="start" x="780" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="633,-83 633,-106 686,-106 686,-83 633,-83"/>
|
||||
<text text-anchor="start" x="655.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="686,-83 686,-106 762,-106 762,-83 686,-83"/>
|
||||
<text text-anchor="start" x="708.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="762,-83 762,-106 815,-106 815,-83 762,-83"/>
|
||||
<text text-anchor="start" x="784.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="633,-60 633,-83 686,-83 686,-60 633,-60"/>
|
||||
<text text-anchor="start" x="655.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="686,-60 686,-83 762,-83 762,-60 686,-60"/>
|
||||
<text text-anchor="start" x="709.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="762,-60 762,-83 815,-83 815,-60 762,-60"/>
|
||||
<text text-anchor="start" x="784.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="633,-37 633,-60 686,-60 686,-37 633,-37"/>
|
||||
<text text-anchor="start" x="655.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="686,-37 686,-60 762,-60 762,-37 686,-37"/>
|
||||
<text text-anchor="start" x="710.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="762,-37 762,-60 815,-60 815,-37 762,-37"/>
|
||||
<text text-anchor="start" x="784.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="633,-14 633,-37 686,-37 686,-14 633,-14"/>
|
||||
<text text-anchor="start" x="655.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="686,-14 686,-37 762,-37 762,-14 686,-14"/>
|
||||
<text text-anchor="start" x="710" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="762,-14 762,-37 815,-37 815,-14 762,-14"/>
|
||||
<text text-anchor="start" x="784.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="1170,-180 1007,-180 1007,0 1170,0 1170,-180"/>
|
||||
<polygon fill="none" stroke="black" points="1007.5,-157 1007.5,-180 1170.5,-180 1170.5,-157 1007.5,-157"/>
|
||||
<text text-anchor="start" x="1078" y="-164.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="1007.5,-134 1007.5,-157 1037.5,-157 1037.5,-134 1007.5,-134"/>
|
||||
<text text-anchor="start" x="1011.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1037.5,-134 1037.5,-157 1060.5,-157 1060.5,-134 1037.5,-134"/>
|
||||
<text text-anchor="start" x="1041.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1060.5,-134 1060.5,-157 1127.5,-157 1127.5,-134 1060.5,-134"/>
|
||||
<text text-anchor="start" x="1064.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1127.5,-134 1127.5,-157 1170.5,-157 1170.5,-134 1127.5,-134"/>
|
||||
<text text-anchor="start" x="1131.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1087" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1022" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1079.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1128" y="-105.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="1007.5,-94 1007.5,-100 1170.5,-100 1170.5,-94 1007.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-95 1169.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-99 1008.5,-99 "/>
|
||||
<text text-anchor="start" x="1022" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1079" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1128" y="-80.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#00ffff" stroke="transparent" stroke-width="2" points="1007.5,-69 1007.5,-75 1170.5,-75 1170.5,-69 1007.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-70 1169.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-74 1008.5,-74 "/>
|
||||
<text text-anchor="start" x="1022" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1079.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1128" y="-55.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="1007.5,-44 1007.5,-50 1170.5,-50 1170.5,-44 1007.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-45 1169.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-49 1008.5,-49 "/>
|
||||
<text text-anchor="start" x="1022" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1080" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1128" y="-30.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="1007.5,-19 1007.5,-25 1170.5,-25 1170.5,-19 1007.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-20 1169.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-24 1008.5,-24 "/>
|
||||
<text text-anchor="start" x="1034" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="1122,-180 959,-180 959,0 1122,0 1122,-180"/>
|
||||
<polygon fill="none" stroke="black" points="959.5,-157 959.5,-180 1122.5,-180 1122.5,-157 959.5,-157"/>
|
||||
<text text-anchor="start" x="1030" y="-164.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="959.5,-134 959.5,-157 989.5,-157 989.5,-134 959.5,-134"/>
|
||||
<text text-anchor="start" x="963.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="989.5,-134 989.5,-157 1012.5,-157 1012.5,-134 989.5,-134"/>
|
||||
<text text-anchor="start" x="993.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1012.5,-134 1012.5,-157 1079.5,-157 1079.5,-134 1012.5,-134"/>
|
||||
<text text-anchor="start" x="1016.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1079.5,-134 1079.5,-157 1122.5,-157 1122.5,-134 1079.5,-134"/>
|
||||
<text text-anchor="start" x="1083.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1039" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="974" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1031.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1080" y="-105.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-98 959.5,-100 1122.5,-100 1122.5,-98 959.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="959.5,-96 959.5,-98 1122.5,-98 1122.5,-96 959.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-94 959.5,-96 1122.5,-96 1122.5,-94 959.5,-94"/>
|
||||
<text text-anchor="start" x="974" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1031" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1080" y="-80.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-73 959.5,-75 1122.5,-75 1122.5,-73 959.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="959.5,-71 959.5,-73 1122.5,-73 1122.5,-71 959.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-69 959.5,-71 1122.5,-71 1122.5,-69 959.5,-69"/>
|
||||
<text text-anchor="start" x="974" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1031.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1080" y="-55.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-48 959.5,-50 1122.5,-50 1122.5,-48 959.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="959.5,-46 959.5,-48 1122.5,-48 1122.5,-46 959.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-44 959.5,-46 1122.5,-46 1122.5,-44 959.5,-44"/>
|
||||
<text text-anchor="start" x="974" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1032" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1080" y="-30.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-23 959.5,-25 1122.5,-25 1122.5,-23 959.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="959.5,-21 959.5,-23 1122.5,-23 1122.5,-21 959.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-19 959.5,-21 1122.5,-21 1122.5,-19 959.5,-19"/>
|
||||
<text text-anchor="start" x="986" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-93C927.25,-93.02 943.24,-95.02 1007,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M863,-95C927.01,-95 942.99,-97 1007,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-97C926.76,-96.98 942.75,-98.98 1007,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-93C879.25,-93.02 895.24,-95.02 959,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M815,-95C879.01,-95 894.99,-97 959,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-97C878.76,-96.98 894.75,-98.98 959,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-69C927.13,-69 943.12,-70 1007,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M863,-71C927,-71 943,-72 1007,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-73C926.88,-73 942.87,-74 1007,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-69C879.13,-69 895.12,-70 959,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M815,-71C879,-71 895,-72 959,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-73C878.88,-73 894.87,-74 959,-74"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-46C926.88,-46 942.87,-45 1007,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M863,-48C927,-48 943,-47 1007,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-50C927.13,-50 943.12,-49 1007,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-46C878.88,-46 894.87,-45 959,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M815,-48C879,-48 895,-47 959,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-50C879.13,-50 895.12,-49 959,-49"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-23C926.64,-23.03 942.62,-20.03 1007,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M863,-25C927.01,-25 942.99,-22 1007,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-27C927.38,-26.97 943.36,-23.97 1007,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-23C878.64,-23.03 894.62,-20.03 959,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M815,-25C879.01,-25 894.99,-22 959,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-27C879.38,-26.97 895.36,-23.97 959,-24"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="1314,-14 1314,-152 1520,-152 1520,-14 1314,-14"/>
|
||||
<text text-anchor="middle" x="1417" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-129 1520,-129 "/>
|
||||
<text text-anchor="middle" x="1364.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="1415,-106 1415,-129 "/>
|
||||
<text text-anchor="middle" x="1444" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="1473,-106 1473,-129 "/>
|
||||
<text text-anchor="middle" x="1496.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-106 1520,-106 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-83 1405,-83 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-60 1405,-60 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-37 1405,-37 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-14 1405,-106 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-83 1520,-83 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-60 1520,-60 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-37 1520,-37 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="1448,-152 1266,-152 1266,-14 1448,-14 1448,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1266,-129 1266,-152 1448,-152 1448,-129 1266,-129"/>
|
||||
<text text-anchor="start" x="1348.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-106 1266,-129 1359,-129 1359,-106 1266,-106"/>
|
||||
<text text-anchor="start" x="1270" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1359,-106 1359,-129 1409,-129 1409,-106 1359,-106"/>
|
||||
<text text-anchor="start" x="1363" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1409,-106 1409,-129 1448,-129 1448,-106 1409,-106"/>
|
||||
<text text-anchor="start" x="1413" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-83 1266,-106 1346,-106 1346,-83 1266,-83"/>
|
||||
<text text-anchor="start" x="1302" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-83 1346,-106 1448,-106 1448,-83 1346,-83"/>
|
||||
<text text-anchor="start" x="1381.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-60 1266,-83 1346,-83 1346,-60 1266,-60"/>
|
||||
<text text-anchor="start" x="1302" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-60 1346,-83 1448,-83 1448,-60 1346,-60"/>
|
||||
<text text-anchor="start" x="1382.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-37 1266,-60 1346,-60 1346,-37 1266,-37"/>
|
||||
<text text-anchor="start" x="1302" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-37 1346,-60 1448,-60 1448,-37 1346,-37"/>
|
||||
<text text-anchor="start" x="1383.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-14 1266,-37 1346,-37 1346,-14 1266,-14"/>
|
||||
<text text-anchor="start" x="1302" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-14 1346,-37 1448,-37 1448,-14 1346,-14"/>
|
||||
<text text-anchor="start" x="1383" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C576.76,-95.02 592.75,-93.02 657,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M513,-97C577.01,-97 592.99,-95 657,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577.25,-98.98 593.24,-96.98 657,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-95C552.76,-95.02 568.75,-93.02 633,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M489,-97C553.01,-97 568.99,-95 633,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-99C553.25,-98.98 569.24,-96.98 633,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C576.88,-70 592.87,-69 657,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M513,-72C577,-72 593,-71 657,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C577.13,-74 593.12,-73 657,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-70C552.88,-70 568.87,-69 633,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M489,-72C553,-72 569,-71 633,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-74C553.13,-74 569.12,-73 633,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C577.13,-45 593.12,-46 657,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-47C577,-47 593,-48 657,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C576.88,-49 592.87,-50 657,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-45C553.13,-45 569.12,-46 633,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M489,-47C553,-47 569,-48 633,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-49C552.88,-49 568.87,-50 633,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C577.38,-20.03 593.36,-23.03 657,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M513,-22C577.01,-22 592.99,-25 657,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.64,-23.97 592.62,-26.97 657,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-20C553.38,-20.03 569.36,-23.03 633,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M489,-22C553.01,-22 568.99,-25 633,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-24C552.64,-23.97 568.62,-26.97 633,-27"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-95C1233.76,-95.02 1249.75,-93.02 1314,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1170,-97C1234.01,-97 1249.99,-95 1314,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-99C1234.25,-98.98 1250.24,-96.98 1314,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-95C1185.76,-95.02 1201.75,-93.02 1266,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1122,-97C1186.01,-97 1201.99,-95 1266,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-99C1186.25,-98.98 1202.24,-96.98 1266,-97"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-70C1233.88,-70 1249.87,-69 1314,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1170,-72C1234,-72 1250,-71 1314,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-74C1234.13,-74 1250.12,-73 1314,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-70C1185.88,-70 1201.87,-69 1266,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1122,-72C1186,-72 1202,-71 1266,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-74C1186.13,-74 1202.12,-73 1266,-73"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-45C1234.13,-45 1250.12,-46 1314,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1170,-47C1234,-47 1250,-48 1314,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-49C1233.88,-49 1249.87,-50 1314,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-45C1186.13,-45 1202.12,-46 1266,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1122,-47C1186,-47 1202,-48 1266,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-49C1185.88,-49 1201.87,-50 1266,-50"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-20C1234.38,-20.03 1250.36,-23.03 1314,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1170,-22C1234.01,-22 1249.99,-25 1314,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-24C1233.64,-23.97 1249.62,-26.97 1314,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-20C1186.38,-20.03 1202.36,-23.03 1266,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1122,-22C1186.01,-22 1201.99,-25 1266,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-24C1185.64,-23.97 1201.62,-26.97 1266,-27"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2, X3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.25 mm², PK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, 0.25 mm², TQ</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, 0.25 mm², VT</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, 0.25 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">3</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2, X3</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, I2C, 0.25 mm², PK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, I2C, 0.25 mm², TQ</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, I2C, 0.25 mm², VT</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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">Wire, I2C, 0.25 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.4</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>
|
||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
@ -4,295 +4,298 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1528pt" height="188pt"
|
||||
viewBox="0.00 0.00 1528.00 188.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="1456pt" height="188pt"
|
||||
viewBox="0.00 0.00 1456.00 188.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 184)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 1524,-184 1524,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 1452,-184 1452,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 206,-152 206,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="103" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 206,-129 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-106 101,-129 "/>
|
||||
<text text-anchor="middle" x="130" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-106 159,-129 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 206,-106 "/>
|
||||
<text text-anchor="middle" x="57" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 114,-83 "/>
|
||||
<text text-anchor="middle" x="57" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 114,-60 "/>
|
||||
<text text-anchor="middle" x="57" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 114,-37 "/>
|
||||
<text text-anchor="middle" x="57" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="114,-14 114,-106 "/>
|
||||
<text text-anchor="middle" x="160" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-83 206,-83 "/>
|
||||
<text text-anchor="middle" x="160" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-60 206,-60 "/>
|
||||
<text text-anchor="middle" x="160" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-37 206,-37 "/>
|
||||
<text text-anchor="middle" x="160" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
|
||||
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
|
||||
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
|
||||
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
|
||||
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
|
||||
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
|
||||
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
|
||||
<text text-anchor="start" x="138.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="513,-180 350,-180 350,0 513,0 513,-180"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-157 350.5,-180 513.5,-180 513.5,-157 350.5,-157"/>
|
||||
<text text-anchor="start" x="421" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-134 350.5,-157 380.5,-157 380.5,-134 350.5,-134"/>
|
||||
<text text-anchor="start" x="354.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="380.5,-134 380.5,-157 403.5,-157 403.5,-134 380.5,-134"/>
|
||||
<text text-anchor="start" x="384.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="403.5,-134 403.5,-157 470.5,-157 470.5,-134 403.5,-134"/>
|
||||
<text text-anchor="start" x="407.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="470.5,-134 470.5,-157 513.5,-157 513.5,-134 470.5,-134"/>
|
||||
<text text-anchor="start" x="474.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="430" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="365" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="422.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="471" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="350.5,-94 350.5,-100 513.5,-100 513.5,-94 350.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-95 512.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-99 351.5,-99 "/>
|
||||
<text text-anchor="start" x="365" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="422" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="471" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ffff" stroke="transparent" stroke-width="2" points="350.5,-69 350.5,-75 513.5,-75 513.5,-69 350.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-70 512.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-74 351.5,-74 "/>
|
||||
<text text-anchor="start" x="365" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="422.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="471" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-44 350.5,-50 513.5,-50 513.5,-44 350.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-45 512.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-49 351.5,-49 "/>
|
||||
<text text-anchor="start" x="365" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="423" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="471" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="350.5,-19 350.5,-25 513.5,-25 513.5,-19 350.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 512.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="512.5,-24 351.5,-24 "/>
|
||||
<text text-anchor="start" x="377" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="489,-180 326,-180 326,0 489,0 489,-180"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-157 326.5,-180 489.5,-180 489.5,-157 326.5,-157"/>
|
||||
<text text-anchor="start" x="397" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-134 326.5,-157 356.5,-157 356.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="330.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="356.5,-134 356.5,-157 379.5,-157 379.5,-134 356.5,-134"/>
|
||||
<text text-anchor="start" x="360.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="379.5,-134 379.5,-157 446.5,-157 446.5,-134 379.5,-134"/>
|
||||
<text text-anchor="start" x="383.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="446.5,-134 446.5,-157 489.5,-157 489.5,-134 446.5,-134"/>
|
||||
<text text-anchor="start" x="450.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="406" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="341" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="398.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="447" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-98 326.5,-100 489.5,-100 489.5,-98 326.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="326.5,-96 326.5,-98 489.5,-98 489.5,-96 326.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-94 326.5,-96 489.5,-96 489.5,-94 326.5,-94"/>
|
||||
<text text-anchor="start" x="341" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="398" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="447" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-73 326.5,-75 489.5,-75 489.5,-73 326.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="326.5,-71 326.5,-73 489.5,-73 489.5,-71 326.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-69 326.5,-71 489.5,-71 489.5,-69 326.5,-69"/>
|
||||
<text text-anchor="start" x="341" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="398.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="447" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-48 326.5,-50 489.5,-50 489.5,-48 326.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-46 326.5,-48 489.5,-48 489.5,-46 326.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-44 326.5,-46 489.5,-46 489.5,-44 326.5,-44"/>
|
||||
<text text-anchor="start" x="341" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="399" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="447" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-23 326.5,-25 489.5,-25 489.5,-23 326.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="326.5,-21 326.5,-23 489.5,-23 489.5,-21 326.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-19 326.5,-21 489.5,-21 489.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="353" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270.25,-93.02 286.24,-95.02 350,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M206,-95C270.01,-95 285.99,-97 350,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-97C269.76,-96.98 285.75,-98.98 350,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-69C270.13,-69 286.12,-70 350,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M206,-71C270,-71 286,-72 350,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-73C269.88,-73 285.87,-74 350,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-46C269.88,-46 285.87,-45 350,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-48C270,-48 286,-47 350,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-50C270.13,-50 286.12,-49 350,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-23C269.64,-23.03 285.62,-20.03 350,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M206,-25C270.01,-25 285.99,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-27C270.38,-26.97 286.36,-23.97 350,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="657,-14 657,-152 863,-152 863,-14 657,-14"/>
|
||||
<text text-anchor="middle" x="760" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="657,-129 863,-129 "/>
|
||||
<text text-anchor="middle" x="707.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="758,-106 758,-129 "/>
|
||||
<text text-anchor="middle" x="787" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="816,-106 816,-129 "/>
|
||||
<text text-anchor="middle" x="839.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="657,-106 863,-106 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="657,-83 718,-83 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="657,-60 718,-60 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="657,-37 718,-37 "/>
|
||||
<text text-anchor="middle" x="687.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="718,-14 718,-106 "/>
|
||||
<text text-anchor="middle" x="760" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="718,-83 802,-83 "/>
|
||||
<text text-anchor="middle" x="760" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="718,-60 802,-60 "/>
|
||||
<text text-anchor="middle" x="760" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="718,-37 802,-37 "/>
|
||||
<text text-anchor="middle" x="760" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="802,-14 802,-106 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="802,-83 863,-83 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="802,-60 863,-60 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="802,-37 863,-37 "/>
|
||||
<text text-anchor="middle" x="832.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="815,-152 633,-152 633,-14 815,-14 815,-152"/>
|
||||
<polygon fill="none" stroke="black" points="633,-129 633,-152 815,-152 815,-129 633,-129"/>
|
||||
<text text-anchor="start" x="715.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="633,-106 633,-129 726,-129 726,-106 633,-106"/>
|
||||
<text text-anchor="start" x="637" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="726,-106 726,-129 776,-129 776,-106 726,-106"/>
|
||||
<text text-anchor="start" x="730" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="776,-106 776,-129 815,-129 815,-106 776,-106"/>
|
||||
<text text-anchor="start" x="780" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="633,-83 633,-106 686,-106 686,-83 633,-83"/>
|
||||
<text text-anchor="start" x="655.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="686,-83 686,-106 762,-106 762,-83 686,-83"/>
|
||||
<text text-anchor="start" x="708.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="762,-83 762,-106 815,-106 815,-83 762,-83"/>
|
||||
<text text-anchor="start" x="784.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="633,-60 633,-83 686,-83 686,-60 633,-60"/>
|
||||
<text text-anchor="start" x="655.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="686,-60 686,-83 762,-83 762,-60 686,-60"/>
|
||||
<text text-anchor="start" x="709.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="762,-60 762,-83 815,-83 815,-60 762,-60"/>
|
||||
<text text-anchor="start" x="784.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="633,-37 633,-60 686,-60 686,-37 633,-37"/>
|
||||
<text text-anchor="start" x="655.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="686,-37 686,-60 762,-60 762,-37 686,-37"/>
|
||||
<text text-anchor="start" x="710.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="762,-37 762,-60 815,-60 815,-37 762,-37"/>
|
||||
<text text-anchor="start" x="784.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="633,-14 633,-37 686,-37 686,-14 633,-14"/>
|
||||
<text text-anchor="start" x="655.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="686,-14 686,-37 762,-37 762,-14 686,-14"/>
|
||||
<text text-anchor="start" x="710" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="762,-14 762,-37 815,-37 815,-14 762,-14"/>
|
||||
<text text-anchor="start" x="784.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="1170,-180 1007,-180 1007,0 1170,0 1170,-180"/>
|
||||
<polygon fill="none" stroke="black" points="1007.5,-157 1007.5,-180 1170.5,-180 1170.5,-157 1007.5,-157"/>
|
||||
<text text-anchor="start" x="1078" y="-164.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="1007.5,-134 1007.5,-157 1037.5,-157 1037.5,-134 1007.5,-134"/>
|
||||
<text text-anchor="start" x="1011.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1037.5,-134 1037.5,-157 1060.5,-157 1060.5,-134 1037.5,-134"/>
|
||||
<text text-anchor="start" x="1041.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1060.5,-134 1060.5,-157 1127.5,-157 1127.5,-134 1060.5,-134"/>
|
||||
<text text-anchor="start" x="1064.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1127.5,-134 1127.5,-157 1170.5,-157 1170.5,-134 1127.5,-134"/>
|
||||
<text text-anchor="start" x="1131.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1087" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1022" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1079.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1128" y="-105.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="1007.5,-94 1007.5,-100 1170.5,-100 1170.5,-94 1007.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-95 1169.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-99 1008.5,-99 "/>
|
||||
<text text-anchor="start" x="1022" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1079" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1128" y="-80.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#00ffff" stroke="transparent" stroke-width="2" points="1007.5,-69 1007.5,-75 1170.5,-75 1170.5,-69 1007.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-70 1169.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-74 1008.5,-74 "/>
|
||||
<text text-anchor="start" x="1022" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1079.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1128" y="-55.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="1007.5,-44 1007.5,-50 1170.5,-50 1170.5,-44 1007.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-45 1169.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-49 1008.5,-49 "/>
|
||||
<text text-anchor="start" x="1022" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1080" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1128" y="-30.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="1007.5,-19 1007.5,-25 1170.5,-25 1170.5,-19 1007.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1008.5,-20 1169.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1169.5,-24 1008.5,-24 "/>
|
||||
<text text-anchor="start" x="1034" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="1122,-180 959,-180 959,0 1122,0 1122,-180"/>
|
||||
<polygon fill="none" stroke="black" points="959.5,-157 959.5,-180 1122.5,-180 1122.5,-157 959.5,-157"/>
|
||||
<text text-anchor="start" x="1030" y="-164.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="959.5,-134 959.5,-157 989.5,-157 989.5,-134 959.5,-134"/>
|
||||
<text text-anchor="start" x="963.5" y="-141.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="989.5,-134 989.5,-157 1012.5,-157 1012.5,-134 989.5,-134"/>
|
||||
<text text-anchor="start" x="993.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1012.5,-134 1012.5,-157 1079.5,-157 1079.5,-134 1012.5,-134"/>
|
||||
<text text-anchor="start" x="1016.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1079.5,-134 1079.5,-157 1122.5,-157 1122.5,-134 1079.5,-134"/>
|
||||
<text text-anchor="start" x="1083.5" y="-141.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1039" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="974" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1031.5" y="-105.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1080" y="-105.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-98 959.5,-100 1122.5,-100 1122.5,-98 959.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="959.5,-96 959.5,-98 1122.5,-98 1122.5,-96 959.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-94 959.5,-96 1122.5,-96 1122.5,-94 959.5,-94"/>
|
||||
<text text-anchor="start" x="974" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1031" y="-80.8" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1080" y="-80.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-73 959.5,-75 1122.5,-75 1122.5,-73 959.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="959.5,-71 959.5,-73 1122.5,-73 1122.5,-71 959.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-69 959.5,-71 1122.5,-71 1122.5,-69 959.5,-69"/>
|
||||
<text text-anchor="start" x="974" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1031.5" y="-55.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1080" y="-55.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-48 959.5,-50 1122.5,-50 1122.5,-48 959.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="959.5,-46 959.5,-48 1122.5,-48 1122.5,-46 959.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-44 959.5,-46 1122.5,-46 1122.5,-44 959.5,-44"/>
|
||||
<text text-anchor="start" x="974" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1032" y="-30.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1080" y="-30.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-23 959.5,-25 1122.5,-25 1122.5,-23 959.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="959.5,-21 959.5,-23 1122.5,-23 1122.5,-21 959.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="959.5,-19 959.5,-21 1122.5,-21 1122.5,-19 959.5,-19"/>
|
||||
<text text-anchor="start" x="986" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-93C927.25,-93.02 943.24,-95.02 1007,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M863,-95C927.01,-95 942.99,-97 1007,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-97C926.76,-96.98 942.75,-98.98 1007,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-93C879.25,-93.02 895.24,-95.02 959,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M815,-95C879.01,-95 894.99,-97 959,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-97C878.76,-96.98 894.75,-98.98 959,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-69C927.13,-69 943.12,-70 1007,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M863,-71C927,-71 943,-72 1007,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-73C926.88,-73 942.87,-74 1007,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-69C879.13,-69 895.12,-70 959,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M815,-71C879,-71 895,-72 959,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-73C878.88,-73 894.87,-74 959,-74"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-46C926.88,-46 942.87,-45 1007,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M863,-48C927,-48 943,-47 1007,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-50C927.13,-50 943.12,-49 1007,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-46C878.88,-46 894.87,-45 959,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M815,-48C879,-48 895,-47 959,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-50C879.13,-50 895.12,-49 959,-49"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-23C926.64,-23.03 942.62,-20.03 1007,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M863,-25C927.01,-25 942.99,-22 1007,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M863,-27C927.38,-26.97 943.36,-23.97 1007,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-23C878.64,-23.03 894.62,-20.03 959,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M815,-25C879.01,-25 894.99,-22 959,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M815,-27C879.38,-26.97 895.36,-23.97 959,-24"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="1314,-14 1314,-152 1520,-152 1520,-14 1314,-14"/>
|
||||
<text text-anchor="middle" x="1417" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-129 1520,-129 "/>
|
||||
<text text-anchor="middle" x="1364.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="1415,-106 1415,-129 "/>
|
||||
<text text-anchor="middle" x="1444" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="1473,-106 1473,-129 "/>
|
||||
<text text-anchor="middle" x="1496.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-106 1520,-106 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-83 1405,-83 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-60 1405,-60 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="1314,-37 1405,-37 "/>
|
||||
<text text-anchor="middle" x="1359.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-14 1405,-106 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-83 1520,-83 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-60 1520,-60 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="1405,-37 1520,-37 "/>
|
||||
<text text-anchor="middle" x="1462.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="white" stroke="transparent" points="1448,-152 1266,-152 1266,-14 1448,-14 1448,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1266,-129 1266,-152 1448,-152 1448,-129 1266,-129"/>
|
||||
<text text-anchor="start" x="1348.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-106 1266,-129 1359,-129 1359,-106 1266,-106"/>
|
||||
<text text-anchor="start" x="1270" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1359,-106 1359,-129 1409,-129 1409,-106 1359,-106"/>
|
||||
<text text-anchor="start" x="1363" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1409,-106 1409,-129 1448,-129 1448,-106 1409,-106"/>
|
||||
<text text-anchor="start" x="1413" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-83 1266,-106 1346,-106 1346,-83 1266,-83"/>
|
||||
<text text-anchor="start" x="1302" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-83 1346,-106 1448,-106 1448,-83 1346,-83"/>
|
||||
<text text-anchor="start" x="1381.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-60 1266,-83 1346,-83 1346,-60 1266,-60"/>
|
||||
<text text-anchor="start" x="1302" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-60 1346,-83 1448,-83 1448,-60 1346,-60"/>
|
||||
<text text-anchor="start" x="1382.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-37 1266,-60 1346,-60 1346,-37 1266,-37"/>
|
||||
<text text-anchor="start" x="1302" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-37 1346,-60 1448,-60 1448,-37 1346,-37"/>
|
||||
<text text-anchor="start" x="1383.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1266,-14 1266,-37 1346,-37 1346,-14 1266,-14"/>
|
||||
<text text-anchor="start" x="1302" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1346,-14 1346,-37 1448,-37 1448,-14 1346,-14"/>
|
||||
<text text-anchor="start" x="1383" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C576.76,-95.02 592.75,-93.02 657,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M513,-97C577.01,-97 592.99,-95 657,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577.25,-98.98 593.24,-96.98 657,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-95C552.76,-95.02 568.75,-93.02 633,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M489,-97C553.01,-97 568.99,-95 633,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-99C553.25,-98.98 569.24,-96.98 633,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C576.88,-70 592.87,-69 657,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M513,-72C577,-72 593,-71 657,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C577.13,-74 593.12,-73 657,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-70C552.88,-70 568.87,-69 633,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M489,-72C553,-72 569,-71 633,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-74C553.13,-74 569.12,-73 633,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C577.13,-45 593.12,-46 657,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-47C577,-47 593,-48 657,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C576.88,-49 592.87,-50 657,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-45C553.13,-45 569.12,-46 633,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M489,-47C553,-47 569,-48 633,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-49C552.88,-49 568.87,-50 633,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C577.38,-20.03 593.36,-23.03 657,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M513,-22C577.01,-22 592.99,-25 657,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.64,-23.97 592.62,-26.97 657,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-20C553.38,-20.03 569.36,-23.03 633,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M489,-22C553.01,-22 568.99,-25 633,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M489,-24C552.64,-23.97 568.62,-26.97 633,-27"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-95C1233.76,-95.02 1249.75,-93.02 1314,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1170,-97C1234.01,-97 1249.99,-95 1314,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-99C1234.25,-98.98 1250.24,-96.98 1314,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-95C1185.76,-95.02 1201.75,-93.02 1266,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1122,-97C1186.01,-97 1201.99,-95 1266,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-99C1186.25,-98.98 1202.24,-96.98 1266,-97"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-70C1233.88,-70 1249.87,-69 1314,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1170,-72C1234,-72 1250,-71 1314,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-74C1234.13,-74 1250.12,-73 1314,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-70C1185.88,-70 1201.87,-69 1266,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1122,-72C1186,-72 1202,-71 1266,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-74C1186.13,-74 1202.12,-73 1266,-73"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-45C1234.13,-45 1250.12,-46 1314,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1170,-47C1234,-47 1250,-48 1314,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-49C1233.88,-49 1249.87,-50 1314,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-45C1186.13,-45 1202.12,-46 1266,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1122,-47C1186,-47 1202,-48 1266,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-49C1185.88,-49 1201.87,-50 1266,-50"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-20C1234.38,-20.03 1250.36,-23.03 1314,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1170,-22C1234.01,-22 1249.99,-25 1314,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-24C1233.64,-23.97 1249.62,-26.97 1314,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-20C1186.38,-20.03 1202.36,-23.03 1266,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1122,-22C1186.01,-22 1201.99,-25 1266,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1122,-24C1185.64,-23.97 1201.62,-26.97 1266,-27"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 22 KiB |
@ -3,7 +3,7 @@ templates:
|
||||
- &template_con
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, VCC, SCL, SDA]
|
||||
pinlabels: [GND, VCC, SCL, SDA]
|
||||
- &template_wire
|
||||
gauge: 0.25 mm2
|
||||
length: 0.2
|
||||
|
||||
@ -4,12 +4,12 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|4-pin}|{{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}}"]
|
||||
X3 [label="X3|{Molex KK 254|female|4-pin}|{{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X4 [label="X4|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}}"]
|
||||
X5 [label="X5|{Molex KK 254|female|4-pin}|{{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X6 [label="X6|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}}"]
|
||||
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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X5 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X5</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
X6 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">X6</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
@ -22,7 +22,7 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>PK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>TQ</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>VT</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>PK</td><td>X2:1</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="#ff66cc" 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</td><td>TQ</td><td>X2:2</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="#00ffff" 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</td><td>YE</td><td>X2:3</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="#ffff00" 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</td><td>VT</td><td>X2:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X3:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X2:p1l:w
|
||||
@ -35,7 +35,7 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X3:p4r:e -- W2:w4:w
|
||||
W2:w4:e -- X2:p4l:w
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X3:1</td><td>PK</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X3:2</td><td>TQ</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X3:3</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X3:4</td><td>VT</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X3:1</td><td>PK</td><td>X2:1</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="#ff66cc" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:2</td><td>TQ</td><td>X2:2</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="#00ffff" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:3</td><td>YE</td><td>X2:3</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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:4</td><td>VT</td><td>X2:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X3:p1r:e -- W3:w1:w
|
||||
W3:w1:e -- X4:p1l:w
|
||||
@ -48,7 +48,7 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X3:p4r:e -- W3:w4:w
|
||||
W3:w4:e -- X4:p4l:w
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X3:1</td><td>PK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X3:2</td><td>TQ</td><td>X4:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X3:3</td><td>YE</td><td>X4:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X3:4</td><td>VT</td><td>X4:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W3</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X3:1</td><td>PK</td><td>X4:1</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="#ff66cc" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:2</td><td>TQ</td><td>X4:2</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="#00ffff" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:3</td><td>YE</td><td>X4:3</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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X3:4</td><td>VT</td><td>X4:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X5:p1r:e -- W4:w1:w
|
||||
W4:w1:e -- X4:p1l:w
|
||||
@ -61,7 +61,7 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X5:p4r:e -- W4:w4:w
|
||||
W4:w4:e -- X4:p4l:w
|
||||
W4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W4</td></tr><tr><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X5:1</td><td>PK</td><td>X4:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X5:2</td><td>TQ</td><td>X4:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X5:3</td><td>YE</td><td>X4:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X5:4</td><td>VT</td><td>X4:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W4</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X5:1</td><td>PK</td><td>X4:1</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="#ff66cc" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:2</td><td>TQ</td><td>X4:2</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="#00ffff" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:3</td><td>YE</td><td>X4:3</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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:4</td><td>VT</td><td>X4:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
X5:p1r:e -- W5:w1:w
|
||||
W5:w1:e -- X6:p1l:w
|
||||
@ -74,5 +74,5 @@ graph {
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
X5:p4r:e -- W5:w4:w
|
||||
W5:w4:e -- X6:p4l:w
|
||||
W5 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W5</td></tr><tr><td>4x</td><td>0.25 mm²</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X5:1</td><td>PK</td><td>X6:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff66cc" border="2" sides="tb" port="w1"></td></tr><tr><td>X5:2</td><td>TQ</td><td>X6:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X5:3</td><td>YE</td><td>X6:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X5:4</td><td>VT</td><td>X6:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#8000ff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W5 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W5</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm²</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X5:1</td><td>PK</td><td>X6:1</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="#ff66cc" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:2</td><td>TQ</td><td>X6:2</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="#00ffff" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:3</td><td>YE</td><td>X6:3</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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>X5:4</td><td>VT</td><td>X6:4</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="#8000ff" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 315 KiB After Width: | Height: | Size: 313 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 48 KiB |
@ -3,7 +3,7 @@ templates:
|
||||
- &template_con
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, VCC, SCL, SDA]
|
||||
pinlabels: [GND, VCC, SCL, SDA]
|
||||
- &template_wire
|
||||
gauge: 0.25 mm2
|
||||
length: 0.2
|
||||
|
||||
@ -4,13 +4,13 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{TE 776164-1|female|35-pin}|{{<p5r>5|<p6r>6}}|Unconnected pins are not shown"]
|
||||
X2 [label="X2|{D-Sub|female|9-pin}|{{<p2l>2|<p7l>7}}|Unconnected pins are not shown"]
|
||||
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">TE 776164-1</td><td balign="left">female</td><td balign="left">35-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p5r">5</td></tr><tr><td port="p6r">6</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Unconnected pins are not shown</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">D-Sub</td><td balign="left">female</td><td balign="left">9-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p2l">2</td></tr><tr><td port="p7l">7</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Unconnected pins are not shown</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X1:p5r:e -- C1:w1:w
|
||||
C1:w1:e -- X2:p7l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
X1:p6r:e -- C1:w2:w
|
||||
C1:w2:e -- X2:p2l:w
|
||||
C1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">C1</td></tr><tr><td>2x</td><td>20 AWG</td><td>1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:5</td><td>YE</td><td>X2:7</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:6</td><td>GN</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w2"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
C1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">C1</td></tr><tr><td balign="left">2x</td><td balign="left">20 AWG</td><td balign="left">1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:5</td><td>YE</td><td>X2:7</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="#ffff00" 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</td><td>GN</td><td>X2:2</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="#00ff00" 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=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,103 +1,104 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="837pt" height="150pt"
|
||||
viewBox="0.00 0.00 837.00 150.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 146)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-146 833,-146 833,4 -4,4"/>
|
||||
<svg width="821pt" height="149pt"
|
||||
viewBox="0.00 0.00 821.00 148.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 144.5)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-144.5 817,-144.5 817,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-0.5 0,-115.5 213,-115.5 213,-0.5 0,-0.5"/>
|
||||
<text text-anchor="middle" x="106.5" y="-100.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-92.5 213,-92.5 "/>
|
||||
<text text-anchor="middle" x="48.5" y="-77.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polyline fill="none" stroke="black" points="97,-69.5 97,-92.5 "/>
|
||||
<text text-anchor="middle" x="127" y="-77.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="157,-69.5 157,-92.5 "/>
|
||||
<text text-anchor="middle" x="185" y="-77.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-69.5 213,-69.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-54.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-46.5 213,-46.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-31.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-23.5 213,-23.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-8.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="white" stroke="transparent" points="205,-115 0,-115 0,0 205,0 205,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-68.5"/>
|
||||
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
|
||||
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
|
||||
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="none" stroke="black" points="472,-142 357,-142 357,-12 472,-12 472,-142"/>
|
||||
<polygon fill="none" stroke="black" points="357.5,-119 357.5,-142 472.5,-142 472.5,-119 357.5,-119"/>
|
||||
<text text-anchor="start" x="406" y="-126.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="357.5,-96 357.5,-119 380.5,-119 380.5,-96 357.5,-96"/>
|
||||
<text text-anchor="start" x="361.5" y="-103.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="380.5,-96 380.5,-119 440.5,-119 440.5,-96 380.5,-96"/>
|
||||
<text text-anchor="start" x="384.5" y="-103.8" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="440.5,-96 440.5,-119 472.5,-119 472.5,-96 440.5,-96"/>
|
||||
<text text-anchor="start" x="444.5" y="-103.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="413" y="-84.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="364" y="-67.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="406" y="-67.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="438.5" y="-67.8" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="357.5,-56 357.5,-62 472.5,-62 472.5,-56 357.5,-56"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="358.5,-57 471.5,-57 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="471.5,-61 358.5,-61 "/>
|
||||
<text text-anchor="start" x="364" y="-42.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="404.5" y="-42.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="438.5" y="-42.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="357.5,-31 357.5,-37 472.5,-37 472.5,-31 357.5,-31"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="358.5,-32 471.5,-32 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="471.5,-36 358.5,-36 "/>
|
||||
<text text-anchor="start" x="376" y="-17.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="464,-140.5 349,-140.5 349,-10.5 464,-10.5 464,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="349.5,-117.5 349.5,-140.5 464.5,-140.5 464.5,-117.5 349.5,-117.5"/>
|
||||
<text text-anchor="start" x="398" y="-125.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-94.5 349.5,-117.5 372.5,-117.5 372.5,-94.5 349.5,-94.5"/>
|
||||
<text text-anchor="start" x="353.5" y="-102.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="372.5,-94.5 372.5,-117.5 432.5,-117.5 432.5,-94.5 372.5,-94.5"/>
|
||||
<text text-anchor="start" x="376.5" y="-102.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="432.5,-94.5 432.5,-117.5 464.5,-117.5 464.5,-94.5 432.5,-94.5"/>
|
||||
<text text-anchor="start" x="436.5" y="-102.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="405" y="-83.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="398" y="-66.3" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="430.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-58.5 349.5,-60.5 464.5,-60.5 464.5,-58.5 349.5,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="349.5,-56.5 349.5,-58.5 464.5,-58.5 464.5,-56.5 349.5,-56.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-54.5 349.5,-56.5 464.5,-56.5 464.5,-54.5 349.5,-54.5"/>
|
||||
<text text-anchor="start" x="356" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="396.5" y="-41.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="430.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-33.5 349.5,-35.5 464.5,-35.5 464.5,-33.5 349.5,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="349.5,-31.5 349.5,-33.5 464.5,-33.5 464.5,-31.5 349.5,-31.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-29.5 349.5,-31.5 464.5,-31.5 464.5,-29.5 349.5,-29.5"/>
|
||||
<text text-anchor="start" x="368" y="-16.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-56C277.13,-56 293.12,-57 357,-57"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M213,-58C277,-58 293,-59 357,-59"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-60C276.88,-60 292.87,-61 357,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-59.5"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-33C276.88,-33 292.87,-32 357,-32"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M213,-35C277,-35 293,-34 357,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-37C277.13,-37 293.12,-36 357,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-34.5"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="616,-0.5 616,-115.5 829,-115.5 829,-0.5 616,-0.5"/>
|
||||
<text text-anchor="middle" x="722.5" y="-100.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="616,-92.5 829,-92.5 "/>
|
||||
<text text-anchor="middle" x="652" y="-77.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="688,-69.5 688,-92.5 "/>
|
||||
<text text-anchor="middle" x="726" y="-77.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="764,-69.5 764,-92.5 "/>
|
||||
<text text-anchor="middle" x="796.5" y="-77.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polyline fill="none" stroke="black" points="616,-69.5 829,-69.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-54.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="616,-46.5 829,-46.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-31.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="616,-23.5 829,-23.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-8.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="white" stroke="transparent" points="813,-115 608,-115 608,0 813,0 813,-115"/>
|
||||
<polygon fill="none" stroke="black" points="608.5,-91.5 608.5,-114.5 813.5,-114.5 813.5,-91.5 608.5,-91.5"/>
|
||||
<text text-anchor="start" x="702.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-68.5 608.5,-91.5 678.5,-91.5 678.5,-68.5 608.5,-68.5"/>
|
||||
<text text-anchor="start" x="624" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-68.5 678.5,-91.5 751.5,-91.5 751.5,-68.5 678.5,-68.5"/>
|
||||
<text text-anchor="start" x="694" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="751.5,-68.5 751.5,-91.5 813.5,-91.5 813.5,-68.5 751.5,-68.5"/>
|
||||
<text text-anchor="start" x="767" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-45.5 608.5,-68.5 813.5,-68.5 813.5,-45.5 608.5,-45.5"/>
|
||||
<text text-anchor="start" x="707" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-22.5 608.5,-45.5 813.5,-45.5 813.5,-22.5 608.5,-22.5"/>
|
||||
<text text-anchor="start" x="707" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,0.5 608.5,-22.5 813.5,-22.5 813.5,0.5 608.5,0.5"/>
|
||||
<text text-anchor="start" x="612.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-57C535.16,-57.98 549.4,-33.98 616,-33"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M472,-59C536.88,-59 551.12,-35 616,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-61C538.6,-60.02 552.84,-36.02 616,-37"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-55.5C527.16,-56.48 541.4,-32.48 608,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-57.5C528.88,-57.5 543.12,-33.5 608,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-59.5C530.6,-58.52 544.84,-34.52 608,-35.5"/>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-32C538.6,-32.98 552.84,-56.98 616,-56"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M472,-34C536.88,-34 551.12,-58 616,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-36C535.16,-35.02 549.4,-59.02 616,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-30.5C530.6,-31.48 544.84,-55.48 608,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M464,-32.5C528.88,-32.5 543.12,-56.5 608,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-34.5C527.16,-33.52 541.4,-57.52 608,-58.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 30 KiB |
@ -4,100 +4,102 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="837pt" height="150pt"
|
||||
viewBox="0.00 0.00 837.00 150.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 146)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-146 833,-146 833,4 -4,4"/>
|
||||
<svg width="821pt" height="149pt"
|
||||
viewBox="0.00 0.00 821.00 148.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 144.5)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-144.5 817,-144.5 817,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-0.5 0,-115.5 213,-115.5 213,-0.5 0,-0.5"/>
|
||||
<text text-anchor="middle" x="106.5" y="-100.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-92.5 213,-92.5 "/>
|
||||
<text text-anchor="middle" x="48.5" y="-77.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polyline fill="none" stroke="black" points="97,-69.5 97,-92.5 "/>
|
||||
<text text-anchor="middle" x="127" y="-77.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="157,-69.5 157,-92.5 "/>
|
||||
<text text-anchor="middle" x="185" y="-77.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-69.5 213,-69.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-54.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-46.5 213,-46.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-31.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-23.5 213,-23.5 "/>
|
||||
<text text-anchor="middle" x="106.5" y="-8.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="white" stroke="transparent" points="205,-115 0,-115 0,0 205,0 205,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-68.5"/>
|
||||
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
|
||||
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
|
||||
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="none" stroke="black" points="472,-142 357,-142 357,-12 472,-12 472,-142"/>
|
||||
<polygon fill="none" stroke="black" points="357.5,-119 357.5,-142 472.5,-142 472.5,-119 357.5,-119"/>
|
||||
<text text-anchor="start" x="406" y="-126.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="357.5,-96 357.5,-119 380.5,-119 380.5,-96 357.5,-96"/>
|
||||
<text text-anchor="start" x="361.5" y="-103.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="380.5,-96 380.5,-119 440.5,-119 440.5,-96 380.5,-96"/>
|
||||
<text text-anchor="start" x="384.5" y="-103.8" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="440.5,-96 440.5,-119 472.5,-119 472.5,-96 440.5,-96"/>
|
||||
<text text-anchor="start" x="444.5" y="-103.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="413" y="-84.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="364" y="-67.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="406" y="-67.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="438.5" y="-67.8" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="357.5,-56 357.5,-62 472.5,-62 472.5,-56 357.5,-56"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="358.5,-57 471.5,-57 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="471.5,-61 358.5,-61 "/>
|
||||
<text text-anchor="start" x="364" y="-42.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="404.5" y="-42.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="438.5" y="-42.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="357.5,-31 357.5,-37 472.5,-37 472.5,-31 357.5,-31"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="358.5,-32 471.5,-32 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="471.5,-36 358.5,-36 "/>
|
||||
<text text-anchor="start" x="376" y="-17.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="464,-140.5 349,-140.5 349,-10.5 464,-10.5 464,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="349.5,-117.5 349.5,-140.5 464.5,-140.5 464.5,-117.5 349.5,-117.5"/>
|
||||
<text text-anchor="start" x="398" y="-125.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-94.5 349.5,-117.5 372.5,-117.5 372.5,-94.5 349.5,-94.5"/>
|
||||
<text text-anchor="start" x="353.5" y="-102.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="372.5,-94.5 372.5,-117.5 432.5,-117.5 432.5,-94.5 372.5,-94.5"/>
|
||||
<text text-anchor="start" x="376.5" y="-102.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="432.5,-94.5 432.5,-117.5 464.5,-117.5 464.5,-94.5 432.5,-94.5"/>
|
||||
<text text-anchor="start" x="436.5" y="-102.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="405" y="-83.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="356" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="398" y="-66.3" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="430.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-58.5 349.5,-60.5 464.5,-60.5 464.5,-58.5 349.5,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="349.5,-56.5 349.5,-58.5 464.5,-58.5 464.5,-56.5 349.5,-56.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-54.5 349.5,-56.5 464.5,-56.5 464.5,-54.5 349.5,-54.5"/>
|
||||
<text text-anchor="start" x="356" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="396.5" y="-41.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="430.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-33.5 349.5,-35.5 464.5,-35.5 464.5,-33.5 349.5,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="349.5,-31.5 349.5,-33.5 464.5,-33.5 464.5,-31.5 349.5,-31.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="349.5,-29.5 349.5,-31.5 464.5,-31.5 464.5,-29.5 349.5,-29.5"/>
|
||||
<text text-anchor="start" x="368" y="-16.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-56C277.13,-56 293.12,-57 357,-57"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M213,-58C277,-58 293,-59 357,-59"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-60C276.88,-60 292.87,-61 357,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-59.5"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-33C276.88,-33 292.87,-32 357,-32"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M213,-35C277,-35 293,-34 357,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213,-37C277.13,-37 293.12,-36 357,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-34.5"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="616,-0.5 616,-115.5 829,-115.5 829,-0.5 616,-0.5"/>
|
||||
<text text-anchor="middle" x="722.5" y="-100.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="616,-92.5 829,-92.5 "/>
|
||||
<text text-anchor="middle" x="652" y="-77.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="688,-69.5 688,-92.5 "/>
|
||||
<text text-anchor="middle" x="726" y="-77.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="764,-69.5 764,-92.5 "/>
|
||||
<text text-anchor="middle" x="796.5" y="-77.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polyline fill="none" stroke="black" points="616,-69.5 829,-69.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-54.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="616,-46.5 829,-46.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-31.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="616,-23.5 829,-23.5 "/>
|
||||
<text text-anchor="middle" x="722.5" y="-8.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="white" stroke="transparent" points="813,-115 608,-115 608,0 813,0 813,-115"/>
|
||||
<polygon fill="none" stroke="black" points="608.5,-91.5 608.5,-114.5 813.5,-114.5 813.5,-91.5 608.5,-91.5"/>
|
||||
<text text-anchor="start" x="702.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-68.5 608.5,-91.5 678.5,-91.5 678.5,-68.5 608.5,-68.5"/>
|
||||
<text text-anchor="start" x="624" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-68.5 678.5,-91.5 751.5,-91.5 751.5,-68.5 678.5,-68.5"/>
|
||||
<text text-anchor="start" x="694" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="751.5,-68.5 751.5,-91.5 813.5,-91.5 813.5,-68.5 751.5,-68.5"/>
|
||||
<text text-anchor="start" x="767" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-45.5 608.5,-68.5 813.5,-68.5 813.5,-45.5 608.5,-45.5"/>
|
||||
<text text-anchor="start" x="707" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,-22.5 608.5,-45.5 813.5,-45.5 813.5,-22.5 608.5,-22.5"/>
|
||||
<text text-anchor="start" x="707" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="608.5,0.5 608.5,-22.5 813.5,-22.5 813.5,0.5 608.5,0.5"/>
|
||||
<text text-anchor="start" x="612.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-57C535.16,-57.98 549.4,-33.98 616,-33"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M472,-59C536.88,-59 551.12,-35 616,-35"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-61C538.6,-60.02 552.84,-36.02 616,-37"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-55.5C527.16,-56.48 541.4,-32.48 608,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-57.5C528.88,-57.5 543.12,-33.5 608,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-59.5C530.6,-58.52 544.84,-34.52 608,-35.5"/>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-32C538.6,-32.98 552.84,-56.98 616,-56"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M472,-34C536.88,-34 551.12,-58 616,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M472,-36C535.16,-35.02 549.4,-59.02 616,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-30.5C530.6,-31.48 544.84,-55.48 608,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M464,-32.5C528.88,-32.5 543.12,-56.5 608,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-34.5C527.16,-33.52 541.4,-57.52 608,-58.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 7.6 KiB |
@ -4,14 +4,14 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
Key [label="Key|{Phone Connector|male 3.5}|{{Dot|Dash|Ground}|{<pTr>T|<pRr>R|<pSr>S}}"]
|
||||
Key [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Key</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Phone Connector</td><td balign="left">male 3.5</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td>Dot</td><td port="pTr">T</td></tr><tr><td>Dash</td><td port="pRr">R</td></tr><tr><td>Ground</td><td port="pSr">S</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
Key:pSr:e -- W1:w1:w
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
Key:pRr:e -- W1:w2:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
Key:pTr:e -- W1:w3:w
|
||||
edge [color="#000000"]
|
||||
edge [color="#000000:#aaaaaa:#000000"]
|
||||
Key:pSr:e -- W1:ws:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td>3x</td><td>24 AWG</td><td>+ S</td><td>0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>Key:S</td><td>WH</td><td><!-- 1_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w1"></td></tr><tr><td>Key:R</td><td>BN</td><td><!-- 2_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w2"></td></tr><tr><td>Key:T</td><td>GN</td><td><!-- 3_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w3"></td></tr><tr><td> </td></tr><tr><td>Key:S</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td balign="left">3x</td><td balign="left">24 AWG</td><td balign="left">+ S</td><td balign="left">0.2 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>Key:S</td><td>WH</td><td><!-- 1_out --></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="#ffffff" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>Key:R</td><td>BN</td><td><!-- 2_out --></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="#895956" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td>Key:T</td><td>GN</td><td><!-- 3_out --></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="#00ff00" 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><tr><td>Key:S</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,96 +1,98 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="499pt" height="207pt"
|
||||
viewBox="0.00 0.00 499.00 207.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="483pt" height="207pt"
|
||||
viewBox="0.00 0.00 483.00 207.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 203)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-203 495,-203 495,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-203 479,-203 479,4 -4,4"/>
|
||||
<!-- Key -->
|
||||
<g id="node1" class="node">
|
||||
<title>Key</title>
|
||||
<polygon fill="white" stroke="black" points="0,-33 0,-148 191,-148 191,-33 0,-33"/>
|
||||
<text text-anchor="middle" x="95.5" y="-132.8" font-family="arial" font-size="14.00">Key</text>
|
||||
<polyline fill="none" stroke="black" points="0,-125 191,-125 "/>
|
||||
<text text-anchor="middle" x="61" y="-109.8" font-family="arial" font-size="14.00">Phone Connector</text>
|
||||
<polyline fill="none" stroke="black" points="122,-102 122,-125 "/>
|
||||
<text text-anchor="middle" x="156.5" y="-109.8" font-family="arial" font-size="14.00">male 3.5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-102 191,-102 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-86.8" font-family="arial" font-size="14.00">Dot</text>
|
||||
<polyline fill="none" stroke="black" points="0,-79 113,-79 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-63.8" font-family="arial" font-size="14.00">Dash</text>
|
||||
<polyline fill="none" stroke="black" points="0,-56 113,-56 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-40.8" font-family="arial" font-size="14.00">Ground</text>
|
||||
<polyline fill="none" stroke="black" points="113,-33 113,-102 "/>
|
||||
<text text-anchor="middle" x="152" y="-86.8" font-family="arial" font-size="14.00">T</text>
|
||||
<polyline fill="none" stroke="black" points="113,-79 191,-79 "/>
|
||||
<text text-anchor="middle" x="152" y="-63.8" font-family="arial" font-size="14.00">R</text>
|
||||
<polyline fill="none" stroke="black" points="113,-56 191,-56 "/>
|
||||
<text text-anchor="middle" x="152" y="-40.8" font-family="arial" font-size="14.00">S</text>
|
||||
<polygon fill="white" stroke="transparent" points="175,-149 0,-149 0,-34 175,-34 175,-149"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-125.5 0.5,-148.5 175.5,-148.5 175.5,-125.5 0.5,-125.5"/>
|
||||
<text text-anchor="start" x="76" y="-133.3" font-family="arial" font-size="14.00">Key</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-102.5 0.5,-125.5 114.5,-125.5 114.5,-102.5 0.5,-102.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-110.3" font-family="arial" font-size="14.00">Phone Connector</text>
|
||||
<polygon fill="none" stroke="black" points="114.5,-102.5 114.5,-125.5 175.5,-125.5 175.5,-102.5 114.5,-102.5"/>
|
||||
<text text-anchor="start" x="118.5" y="-110.3" font-family="arial" font-size="14.00">male 3.5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-79.5 0.5,-102.5 106.5,-102.5 106.5,-79.5 0.5,-79.5"/>
|
||||
<text text-anchor="start" x="42.5" y="-87.3" font-family="arial" font-size="14.00">Dot</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-79.5 106.5,-102.5 175.5,-102.5 175.5,-79.5 106.5,-79.5"/>
|
||||
<text text-anchor="start" x="136.5" y="-87.3" font-family="arial" font-size="14.00">T</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-56.5 0.5,-79.5 106.5,-79.5 106.5,-56.5 0.5,-56.5"/>
|
||||
<text text-anchor="start" x="37.5" y="-64.3" font-family="arial" font-size="14.00">Dash</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-56.5 106.5,-79.5 175.5,-79.5 175.5,-56.5 106.5,-56.5"/>
|
||||
<text text-anchor="start" x="136" y="-64.3" font-family="arial" font-size="14.00">R</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-33.5 0.5,-56.5 106.5,-56.5 106.5,-33.5 0.5,-33.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-41.3" font-family="arial" font-size="14.00">Ground</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-33.5 106.5,-56.5 175.5,-56.5 175.5,-33.5 106.5,-33.5"/>
|
||||
<text text-anchor="start" x="136" y="-41.3" font-family="arial" font-size="14.00">S</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="491,-199 335,-199 335,0 491,0 491,-199"/>
|
||||
<polygon fill="none" stroke="black" points="335,-175.5 335,-198.5 491,-198.5 491,-175.5 335,-175.5"/>
|
||||
<text text-anchor="start" x="402" y="-183.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="335,-152.5 335,-175.5 358,-175.5 358,-152.5 335,-152.5"/>
|
||||
<text text-anchor="start" x="339" y="-160.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="358,-152.5 358,-175.5 418,-175.5 418,-152.5 358,-152.5"/>
|
||||
<text text-anchor="start" x="362" y="-160.3" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="418,-152.5 418,-175.5 448,-175.5 448,-152.5 418,-152.5"/>
|
||||
<text text-anchor="start" x="422" y="-160.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="448,-152.5 448,-175.5 491,-175.5 491,-152.5 448,-152.5"/>
|
||||
<text text-anchor="start" x="452" y="-160.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="411" y="-141.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="348.5" y="-124.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="419.5" y="-124.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="335,-112.5 335,-118.5 491,-118.5 491,-112.5 335,-112.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-113.5 490,-113.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-117.5 336,-117.5 "/>
|
||||
<text text-anchor="start" x="348.5" y="-99.3" font-family="arial" font-size="14.00">Key:R</text>
|
||||
<text text-anchor="start" x="422" y="-99.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="335,-87.5 335,-93.5 491,-93.5 491,-87.5 335,-87.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-88.5 490,-88.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-92.5 336,-92.5 "/>
|
||||
<text text-anchor="start" x="349" y="-74.3" font-family="arial" font-size="14.00">Key:T</text>
|
||||
<text text-anchor="start" x="420.5" y="-74.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="335,-62.5 335,-68.5 491,-68.5 491,-62.5 335,-62.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-63.5 490,-63.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-67.5 336,-67.5 "/>
|
||||
<text text-anchor="start" x="365" y="-49.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="348.5" y="-30.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="412.5" y="-30.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-19.5 490,-19.5 "/>
|
||||
<text text-anchor="start" x="365" y="-5.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="475,-199 319,-199 319,0 475,0 475,-199"/>
|
||||
<polygon fill="none" stroke="black" points="319,-175.5 319,-198.5 475,-198.5 475,-175.5 319,-175.5"/>
|
||||
<text text-anchor="start" x="386" y="-183.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="319,-152.5 319,-175.5 342,-175.5 342,-152.5 319,-152.5"/>
|
||||
<text text-anchor="start" x="323" y="-160.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="342,-152.5 342,-175.5 402,-175.5 402,-152.5 342,-152.5"/>
|
||||
<text text-anchor="start" x="346" y="-160.3" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="402,-152.5 402,-175.5 432,-175.5 432,-152.5 402,-152.5"/>
|
||||
<text text-anchor="start" x="406" y="-160.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="432,-152.5 432,-175.5 475,-175.5 475,-152.5 432,-152.5"/>
|
||||
<text text-anchor="start" x="436" y="-160.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="395" y="-141.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="332.5" y="-124.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="403.5" y="-124.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-116.5 319,-118.5 475,-118.5 475,-116.5 319,-116.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="319,-114.5 319,-116.5 475,-116.5 475,-114.5 319,-114.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-112.5 319,-114.5 475,-114.5 475,-112.5 319,-112.5"/>
|
||||
<text text-anchor="start" x="332.5" y="-99.3" font-family="arial" font-size="14.00">Key:R</text>
|
||||
<text text-anchor="start" x="406" y="-99.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-91.5 319,-93.5 475,-93.5 475,-91.5 319,-91.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="319,-89.5 319,-91.5 475,-91.5 475,-89.5 319,-89.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-87.5 319,-89.5 475,-89.5 475,-87.5 319,-87.5"/>
|
||||
<text text-anchor="start" x="333" y="-74.3" font-family="arial" font-size="14.00">Key:T</text>
|
||||
<text text-anchor="start" x="404.5" y="-74.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-66.5 319,-68.5 475,-68.5 475,-66.5 319,-66.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="319,-64.5 319,-66.5 475,-66.5 475,-64.5 319,-64.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-62.5 319,-64.5 475,-64.5 475,-62.5 319,-62.5"/>
|
||||
<text text-anchor="start" x="349" y="-49.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="332.5" y="-30.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="396.5" y="-30.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="320,-19.5 474,-19.5 "/>
|
||||
<text text-anchor="start" x="349" y="-5.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-42.5C264.36,-44.46 265.64,-115.46 335,-113.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M191,-44.5C262.36,-44.5 263.64,-115.5 335,-115.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-46.5C260.36,-44.54 261.64,-115.54 335,-117.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-42.5C248.36,-44.46 249.64,-115.46 319,-113.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M175,-44.5C246.36,-44.5 247.64,-115.5 319,-115.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-46.5C244.36,-44.54 245.64,-115.54 319,-117.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-65.5C257.51,-66.44 271.88,-89.44 335,-88.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M191,-67.5C255.81,-67.5 270.19,-90.5 335,-90.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-69.5C254.12,-68.56 268.49,-91.56 335,-92.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-65.5C241.51,-66.44 255.88,-89.44 319,-88.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M175,-67.5C239.81,-67.5 254.19,-90.5 319,-90.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-69.5C238.12,-68.56 252.49,-91.56 319,-92.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-88.5C254.21,-89.52 268.3,-64.52 335,-63.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M191,-90.5C255.96,-90.5 270.04,-65.5 335,-65.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-92.5C257.7,-91.48 271.79,-66.48 335,-67.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-88.5C238.21,-89.52 252.3,-64.52 319,-63.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M175,-90.5C239.96,-90.5 254.04,-65.5 319,-65.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-92.5C241.7,-91.48 255.79,-66.48 319,-67.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-44.5C255.81,-44.5 270.19,-21.5 335,-21.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-42.5C238.12,-43.44 252.49,-20.44 319,-19.5"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M175,-44.5C239.81,-44.5 254.19,-21.5 319,-21.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-46.5C241.51,-45.56 255.88,-22.56 319,-23.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 33 KiB |
@ -4,93 +4,96 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="499pt" height="207pt"
|
||||
viewBox="0.00 0.00 499.00 207.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="483pt" height="207pt"
|
||||
viewBox="0.00 0.00 483.00 207.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 203)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-203 495,-203 495,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-203 479,-203 479,4 -4,4"/>
|
||||
<!-- Key -->
|
||||
<g id="node1" class="node">
|
||||
<title>Key</title>
|
||||
<polygon fill="white" stroke="black" points="0,-33 0,-148 191,-148 191,-33 0,-33"/>
|
||||
<text text-anchor="middle" x="95.5" y="-132.8" font-family="arial" font-size="14.00">Key</text>
|
||||
<polyline fill="none" stroke="black" points="0,-125 191,-125 "/>
|
||||
<text text-anchor="middle" x="61" y="-109.8" font-family="arial" font-size="14.00">Phone Connector</text>
|
||||
<polyline fill="none" stroke="black" points="122,-102 122,-125 "/>
|
||||
<text text-anchor="middle" x="156.5" y="-109.8" font-family="arial" font-size="14.00">male 3.5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-102 191,-102 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-86.8" font-family="arial" font-size="14.00">Dot</text>
|
||||
<polyline fill="none" stroke="black" points="0,-79 113,-79 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-63.8" font-family="arial" font-size="14.00">Dash</text>
|
||||
<polyline fill="none" stroke="black" points="0,-56 113,-56 "/>
|
||||
<text text-anchor="middle" x="56.5" y="-40.8" font-family="arial" font-size="14.00">Ground</text>
|
||||
<polyline fill="none" stroke="black" points="113,-33 113,-102 "/>
|
||||
<text text-anchor="middle" x="152" y="-86.8" font-family="arial" font-size="14.00">T</text>
|
||||
<polyline fill="none" stroke="black" points="113,-79 191,-79 "/>
|
||||
<text text-anchor="middle" x="152" y="-63.8" font-family="arial" font-size="14.00">R</text>
|
||||
<polyline fill="none" stroke="black" points="113,-56 191,-56 "/>
|
||||
<text text-anchor="middle" x="152" y="-40.8" font-family="arial" font-size="14.00">S</text>
|
||||
<polygon fill="white" stroke="transparent" points="175,-149 0,-149 0,-34 175,-34 175,-149"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-125.5 0.5,-148.5 175.5,-148.5 175.5,-125.5 0.5,-125.5"/>
|
||||
<text text-anchor="start" x="76" y="-133.3" font-family="arial" font-size="14.00">Key</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-102.5 0.5,-125.5 114.5,-125.5 114.5,-102.5 0.5,-102.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-110.3" font-family="arial" font-size="14.00">Phone Connector</text>
|
||||
<polygon fill="none" stroke="black" points="114.5,-102.5 114.5,-125.5 175.5,-125.5 175.5,-102.5 114.5,-102.5"/>
|
||||
<text text-anchor="start" x="118.5" y="-110.3" font-family="arial" font-size="14.00">male 3.5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-79.5 0.5,-102.5 106.5,-102.5 106.5,-79.5 0.5,-79.5"/>
|
||||
<text text-anchor="start" x="42.5" y="-87.3" font-family="arial" font-size="14.00">Dot</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-79.5 106.5,-102.5 175.5,-102.5 175.5,-79.5 106.5,-79.5"/>
|
||||
<text text-anchor="start" x="136.5" y="-87.3" font-family="arial" font-size="14.00">T</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-56.5 0.5,-79.5 106.5,-79.5 106.5,-56.5 0.5,-56.5"/>
|
||||
<text text-anchor="start" x="37.5" y="-64.3" font-family="arial" font-size="14.00">Dash</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-56.5 106.5,-79.5 175.5,-79.5 175.5,-56.5 106.5,-56.5"/>
|
||||
<text text-anchor="start" x="136" y="-64.3" font-family="arial" font-size="14.00">R</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-33.5 0.5,-56.5 106.5,-56.5 106.5,-33.5 0.5,-33.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-41.3" font-family="arial" font-size="14.00">Ground</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-33.5 106.5,-56.5 175.5,-56.5 175.5,-33.5 106.5,-33.5"/>
|
||||
<text text-anchor="start" x="136" y="-41.3" font-family="arial" font-size="14.00">S</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="491,-199 335,-199 335,0 491,0 491,-199"/>
|
||||
<polygon fill="none" stroke="black" points="335,-175.5 335,-198.5 491,-198.5 491,-175.5 335,-175.5"/>
|
||||
<text text-anchor="start" x="402" y="-183.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="335,-152.5 335,-175.5 358,-175.5 358,-152.5 335,-152.5"/>
|
||||
<text text-anchor="start" x="339" y="-160.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="358,-152.5 358,-175.5 418,-175.5 418,-152.5 358,-152.5"/>
|
||||
<text text-anchor="start" x="362" y="-160.3" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="418,-152.5 418,-175.5 448,-175.5 448,-152.5 418,-152.5"/>
|
||||
<text text-anchor="start" x="422" y="-160.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="448,-152.5 448,-175.5 491,-175.5 491,-152.5 448,-152.5"/>
|
||||
<text text-anchor="start" x="452" y="-160.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="411" y="-141.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="348.5" y="-124.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="419.5" y="-124.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="335,-112.5 335,-118.5 491,-118.5 491,-112.5 335,-112.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-113.5 490,-113.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-117.5 336,-117.5 "/>
|
||||
<text text-anchor="start" x="348.5" y="-99.3" font-family="arial" font-size="14.00">Key:R</text>
|
||||
<text text-anchor="start" x="422" y="-99.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="335,-87.5 335,-93.5 491,-93.5 491,-87.5 335,-87.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-88.5 490,-88.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-92.5 336,-92.5 "/>
|
||||
<text text-anchor="start" x="349" y="-74.3" font-family="arial" font-size="14.00">Key:T</text>
|
||||
<text text-anchor="start" x="420.5" y="-74.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="335,-62.5 335,-68.5 491,-68.5 491,-62.5 335,-62.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-63.5 490,-63.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-67.5 336,-67.5 "/>
|
||||
<text text-anchor="start" x="365" y="-49.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="348.5" y="-30.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="412.5" y="-30.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="336,-19.5 490,-19.5 "/>
|
||||
<text text-anchor="start" x="365" y="-5.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="475,-199 319,-199 319,0 475,0 475,-199"/>
|
||||
<polygon fill="none" stroke="black" points="319,-175.5 319,-198.5 475,-198.5 475,-175.5 319,-175.5"/>
|
||||
<text text-anchor="start" x="386" y="-183.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="319,-152.5 319,-175.5 342,-175.5 342,-152.5 319,-152.5"/>
|
||||
<text text-anchor="start" x="323" y="-160.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="342,-152.5 342,-175.5 402,-175.5 402,-152.5 342,-152.5"/>
|
||||
<text text-anchor="start" x="346" y="-160.3" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="402,-152.5 402,-175.5 432,-175.5 432,-152.5 402,-152.5"/>
|
||||
<text text-anchor="start" x="406" y="-160.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="432,-152.5 432,-175.5 475,-175.5 475,-152.5 432,-152.5"/>
|
||||
<text text-anchor="start" x="436" y="-160.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="395" y="-141.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="332.5" y="-124.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="403.5" y="-124.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-116.5 319,-118.5 475,-118.5 475,-116.5 319,-116.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="319,-114.5 319,-116.5 475,-116.5 475,-114.5 319,-114.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-112.5 319,-114.5 475,-114.5 475,-112.5 319,-112.5"/>
|
||||
<text text-anchor="start" x="332.5" y="-99.3" font-family="arial" font-size="14.00">Key:R</text>
|
||||
<text text-anchor="start" x="406" y="-99.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-91.5 319,-93.5 475,-93.5 475,-91.5 319,-91.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="319,-89.5 319,-91.5 475,-91.5 475,-89.5 319,-89.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-87.5 319,-89.5 475,-89.5 475,-87.5 319,-87.5"/>
|
||||
<text text-anchor="start" x="333" y="-74.3" font-family="arial" font-size="14.00">Key:T</text>
|
||||
<text text-anchor="start" x="404.5" y="-74.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-66.5 319,-68.5 475,-68.5 475,-66.5 319,-66.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="319,-64.5 319,-66.5 475,-66.5 475,-64.5 319,-64.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="319,-62.5 319,-64.5 475,-64.5 475,-62.5 319,-62.5"/>
|
||||
<text text-anchor="start" x="349" y="-49.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="332.5" y="-30.3" font-family="arial" font-size="14.00">Key:S</text>
|
||||
<text text-anchor="start" x="396.5" y="-30.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="320,-19.5 474,-19.5 "/>
|
||||
<text text-anchor="start" x="349" y="-5.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-42.5C264.36,-44.46 265.64,-115.46 335,-113.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M191,-44.5C262.36,-44.5 263.64,-115.5 335,-115.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-46.5C260.36,-44.54 261.64,-115.54 335,-117.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-42.5C248.36,-44.46 249.64,-115.46 319,-113.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M175,-44.5C246.36,-44.5 247.64,-115.5 319,-115.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-46.5C244.36,-44.54 245.64,-115.54 319,-117.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-65.5C257.51,-66.44 271.88,-89.44 335,-88.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M191,-67.5C255.81,-67.5 270.19,-90.5 335,-90.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-69.5C254.12,-68.56 268.49,-91.56 335,-92.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-65.5C241.51,-66.44 255.88,-89.44 319,-88.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M175,-67.5C239.81,-67.5 254.19,-90.5 319,-90.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-69.5C238.12,-68.56 252.49,-91.56 319,-92.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-88.5C254.21,-89.52 268.3,-64.52 335,-63.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M191,-90.5C255.96,-90.5 270.04,-65.5 335,-65.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-92.5C257.7,-91.48 271.79,-66.48 335,-67.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-88.5C238.21,-89.52 252.3,-64.52 319,-63.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M175,-90.5C239.96,-90.5 254.04,-65.5 319,-65.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-92.5C241.7,-91.48 255.79,-66.48 319,-67.5"/>
|
||||
</g>
|
||||
<!-- Key--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>Key:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M191,-44.5C255.81,-44.5 270.19,-21.5 335,-21.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-42.5C238.12,-43.44 252.49,-20.44 319,-19.5"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M175,-44.5C239.81,-44.5 254.19,-21.5 319,-21.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M175,-46.5C241.51,-45.56 255.88,-22.56 319,-23.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 7.2 KiB |
@ -4,8 +4,8 @@ connectors:
|
||||
Key:
|
||||
type: Phone Connector
|
||||
subtype: male 3.5
|
||||
pinnumbers: [T, R, S]
|
||||
pinout: [Dot, Dash, Ground]
|
||||
pins: [T, R, S]
|
||||
pinlabels: [Dot, Dash, Ground]
|
||||
show_pincount: false
|
||||
|
||||
cables:
|
||||
|
||||
@ -1,451 +1,526 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="774pt" height="1159pt"
|
||||
viewBox="0.00 0.00 774.00 1159.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 1155)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-1155 770,-1155 770,4 -4,4"/>
|
||||
<svg width="726pt" height="1158pt"
|
||||
viewBox="0.00 0.00 726.00 1158.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 1154)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-1154 722,-1154 722,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-377 0,-722 156,-722 156,-377 0,-377"/>
|
||||
<text text-anchor="middle" x="78" y="-706.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-699 156,-699 "/>
|
||||
<text text-anchor="middle" x="27.5" y="-683.8" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="55,-676 55,-699 "/>
|
||||
<text text-anchor="middle" x="78.5" y="-683.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="102,-676 102,-699 "/>
|
||||
<text text-anchor="middle" x="129" y="-683.8" font-family="arial" font-size="14.00">25-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-676 156,-676 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-660.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-653 109,-653 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-637.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-630 109,-630 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-614.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-607 109,-607 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-591.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-584 109,-584 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-568.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-561 109,-561 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-545.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-538 109,-538 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-522.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-515 109,-515 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-499.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-492 109,-492 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-476.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-469 109,-469 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-453.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-446 109,-446 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-430.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-423 109,-423 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-407.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-400 109,-400 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-384.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="109,-377 109,-676 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-660.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="109,-653 156,-653 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-637.8" font-family="arial" font-size="14.00">14</text>
|
||||
<polyline fill="none" stroke="black" points="109,-630 156,-630 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-614.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="109,-607 156,-607 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-591.8" font-family="arial" font-size="14.00">16</text>
|
||||
<polyline fill="none" stroke="black" points="109,-584 156,-584 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-568.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="109,-561 156,-561 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-545.8" font-family="arial" font-size="14.00">18</text>
|
||||
<polyline fill="none" stroke="black" points="109,-538 156,-538 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-522.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="109,-515 156,-515 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-499.8" font-family="arial" font-size="14.00">20</text>
|
||||
<polyline fill="none" stroke="black" points="109,-492 156,-492 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-476.8" font-family="arial" font-size="14.00">9</text>
|
||||
<polyline fill="none" stroke="black" points="109,-469 156,-469 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-453.8" font-family="arial" font-size="14.00">22</text>
|
||||
<polyline fill="none" stroke="black" points="109,-446 156,-446 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-430.8" font-family="arial" font-size="14.00">11</text>
|
||||
<polyline fill="none" stroke="black" points="109,-423 156,-423 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-407.8" font-family="arial" font-size="14.00">24</text>
|
||||
<polyline fill="none" stroke="black" points="109,-400 156,-400 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-384.8" font-family="arial" font-size="14.00">13</text>
|
||||
<polygon fill="white" stroke="transparent" points="132,-732.5 0,-732.5 0,-387.5 132,-387.5 132,-732.5"/>
|
||||
<polygon fill="none" stroke="black" points="0,-709 0,-732 132,-732 132,-709 0,-709"/>
|
||||
<text text-anchor="start" x="57.5" y="-716.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-686 0,-709 47,-709 47,-686 0,-686"/>
|
||||
<text text-anchor="start" x="4" y="-693.8" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-686 47,-709 86,-709 86,-686 47,-686"/>
|
||||
<text text-anchor="start" x="51" y="-693.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="86,-686 86,-709 132,-709 132,-686 86,-686"/>
|
||||
<text text-anchor="start" x="90" y="-693.8" font-family="arial" font-size="14.00">25-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-663 0,-686 98,-686 98,-663 0,-663"/>
|
||||
<text text-anchor="start" x="10" y="-670.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-663 98,-686 132,-686 132,-663 98,-663"/>
|
||||
<text text-anchor="start" x="111" y="-670.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-640 0,-663 98,-663 98,-640 0,-640"/>
|
||||
<text text-anchor="start" x="9.5" y="-647.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-640 98,-663 132,-663 132,-640 98,-640"/>
|
||||
<text text-anchor="start" x="107" y="-647.8" font-family="arial" font-size="14.00">14</text>
|
||||
<polygon fill="none" stroke="black" points="0,-617 0,-640 98,-640 98,-617 0,-617"/>
|
||||
<text text-anchor="start" x="10" y="-624.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
|
||||
<polygon fill="none" stroke="black" points="98,-617 98,-640 132,-640 132,-617 98,-617"/>
|
||||
<text text-anchor="start" x="111" y="-624.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-594 0,-617 98,-617 98,-594 0,-594"/>
|
||||
<text text-anchor="start" x="9.5" y="-601.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
|
||||
<polygon fill="none" stroke="black" points="98,-594 98,-617 132,-617 132,-594 98,-594"/>
|
||||
<text text-anchor="start" x="107" y="-601.8" font-family="arial" font-size="14.00">16</text>
|
||||
<polygon fill="none" stroke="black" points="0,-571 0,-594 98,-594 98,-571 0,-571"/>
|
||||
<text text-anchor="start" x="10" y="-578.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
|
||||
<polygon fill="none" stroke="black" points="98,-571 98,-594 132,-594 132,-571 98,-571"/>
|
||||
<text text-anchor="start" x="111" y="-578.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-548 0,-571 98,-571 98,-548 0,-548"/>
|
||||
<text text-anchor="start" x="9.5" y="-555.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
|
||||
<polygon fill="none" stroke="black" points="98,-548 98,-571 132,-571 132,-548 98,-548"/>
|
||||
<text text-anchor="start" x="107" y="-555.8" font-family="arial" font-size="14.00">18</text>
|
||||
<polygon fill="none" stroke="black" points="0,-525 0,-548 98,-548 98,-525 0,-525"/>
|
||||
<text text-anchor="start" x="10" y="-532.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
|
||||
<polygon fill="none" stroke="black" points="98,-525 98,-548 132,-548 132,-525 98,-525"/>
|
||||
<text text-anchor="start" x="111" y="-532.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-502 0,-525 98,-525 98,-502 0,-502"/>
|
||||
<text text-anchor="start" x="9.5" y="-509.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
|
||||
<polygon fill="none" stroke="black" points="98,-502 98,-525 132,-525 132,-502 98,-502"/>
|
||||
<text text-anchor="start" x="107" y="-509.8" font-family="arial" font-size="14.00">20</text>
|
||||
<polygon fill="none" stroke="black" points="0,-479 0,-502 98,-502 98,-479 0,-479"/>
|
||||
<text text-anchor="start" x="10" y="-486.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
|
||||
<polygon fill="none" stroke="black" points="98,-479 98,-502 132,-502 132,-479 98,-479"/>
|
||||
<text text-anchor="start" x="111" y="-486.8" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="none" stroke="black" points="0,-456 0,-479 98,-479 98,-456 0,-456"/>
|
||||
<text text-anchor="start" x="9.5" y="-463.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
|
||||
<polygon fill="none" stroke="black" points="98,-456 98,-479 132,-479 132,-456 98,-456"/>
|
||||
<text text-anchor="start" x="107" y="-463.8" font-family="arial" font-size="14.00">22</text>
|
||||
<polygon fill="none" stroke="black" points="0,-433 0,-456 98,-456 98,-433 0,-433"/>
|
||||
<text text-anchor="start" x="10" y="-440.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
|
||||
<polygon fill="none" stroke="black" points="98,-433 98,-456 132,-456 132,-433 98,-433"/>
|
||||
<text text-anchor="start" x="107.5" y="-440.8" font-family="arial" font-size="14.00">11</text>
|
||||
<polygon fill="none" stroke="black" points="0,-410 0,-433 98,-433 98,-410 0,-410"/>
|
||||
<text text-anchor="start" x="9.5" y="-417.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
|
||||
<polygon fill="none" stroke="black" points="98,-410 98,-433 132,-433 132,-410 98,-410"/>
|
||||
<text text-anchor="start" x="107" y="-417.8" font-family="arial" font-size="14.00">24</text>
|
||||
<polygon fill="none" stroke="black" points="0,-387 0,-410 98,-410 98,-387 0,-387"/>
|
||||
<text text-anchor="start" x="33.5" y="-394.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="98,-387 98,-410 132,-410 132,-387 98,-387"/>
|
||||
<text text-anchor="start" x="107" y="-394.8" font-family="arial" font-size="14.00">13</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="470,-772.5 300,-772.5 300,-348.5 470,-348.5 470,-772.5"/>
|
||||
<polygon fill="none" stroke="black" points="300,-749.5 300,-772.5 470,-772.5 470,-749.5 300,-749.5"/>
|
||||
<text text-anchor="start" x="374" y="-757.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="300,-726.5 300,-749.5 330,-749.5 330,-726.5 300,-726.5"/>
|
||||
<text text-anchor="start" x="304" y="-734.3" font-family="arial" font-size="14.00">12x</text>
|
||||
<polygon fill="none" stroke="black" points="330,-726.5 330,-749.5 397,-749.5 397,-726.5 330,-726.5"/>
|
||||
<text text-anchor="start" x="334" y="-734.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="397,-726.5 397,-749.5 427,-749.5 427,-726.5 397,-726.5"/>
|
||||
<text text-anchor="start" x="401" y="-734.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="427,-726.5 427,-749.5 470,-749.5 470,-726.5 427,-726.5"/>
|
||||
<text text-anchor="start" x="431" y="-734.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="383" y="-715.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="309" y="-698.3" font-family="arial" font-size="14.00">X1:14</text>
|
||||
<text text-anchor="start" x="370" y="-698.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="422.5" y="-698.3" font-family="arial" font-size="14.00">X2:z2</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="300,-686.5 300,-692.5 470,-692.5 470,-686.5 300,-686.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-687.5 469,-687.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-691.5 301,-691.5 "/>
|
||||
<text text-anchor="start" x="313" y="-673.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="372.5" y="-673.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="422" y="-673.3" font-family="arial" font-size="14.00">X2:d4</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="300,-661.5 300,-667.5 470,-667.5 470,-661.5 300,-661.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-662.5 469,-662.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-666.5 301,-666.5 "/>
|
||||
<text text-anchor="start" x="309" y="-648.3" font-family="arial" font-size="14.00">X1:16</text>
|
||||
<text text-anchor="start" x="371" y="-648.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="422.5" y="-648.3" font-family="arial" font-size="14.00">X2:z8</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="300,-636.5 300,-642.5 470,-642.5 470,-636.5 300,-636.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-637.5 469,-637.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-641.5 301,-641.5 "/>
|
||||
<text text-anchor="start" x="313" y="-623.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="372.5" y="-623.3" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="418.5" y="-623.3" font-family="arial" font-size="14.00">X2:d10</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="300,-611.5 300,-617.5 470,-617.5 470,-611.5 300,-611.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-612.5 469,-612.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-616.5 301,-616.5 "/>
|
||||
<text text-anchor="start" x="309" y="-598.3" font-family="arial" font-size="14.00">X1:18</text>
|
||||
<text text-anchor="start" x="371.5" y="-598.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<text text-anchor="start" x="418.5" y="-598.3" font-family="arial" font-size="14.00">X2:z14</text>
|
||||
<polygon fill="#999999" stroke="transparent" stroke-width="2" points="300,-586.5 300,-592.5 470,-592.5 470,-586.5 300,-586.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-587.5 469,-587.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-591.5 301,-591.5 "/>
|
||||
<text text-anchor="start" x="313" y="-573.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="372.5" y="-573.3" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="418.5" y="-573.3" font-family="arial" font-size="14.00">X2:d16</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" stroke-width="2" points="300,-561.5 300,-567.5 470,-567.5 470,-561.5 300,-561.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-562.5 469,-562.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-566.5 301,-566.5 "/>
|
||||
<text text-anchor="start" x="309" y="-548.3" font-family="arial" font-size="14.00">X1:20</text>
|
||||
<text text-anchor="start" x="372.5" y="-548.3" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="418.5" y="-548.3" font-family="arial" font-size="14.00">X2:z18</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="300,-536.5 300,-542.5 470,-542.5 470,-536.5 300,-536.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-537.5 469,-537.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-541.5 301,-541.5 "/>
|
||||
<text text-anchor="start" x="313" y="-523.3" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="372" y="-523.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="418.5" y="-523.3" font-family="arial" font-size="14.00">X2:d20</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="300,-511.5 300,-517.5 470,-517.5 470,-511.5 300,-511.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-512.5 469,-512.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-516.5 301,-516.5 "/>
|
||||
<text text-anchor="start" x="309" y="-498.3" font-family="arial" font-size="14.00">X1:22</text>
|
||||
<text text-anchor="start" x="372.5" y="-498.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="418.5" y="-498.3" font-family="arial" font-size="14.00">X2:z24</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="300,-486.5 300,-492.5 470,-492.5 470,-486.5 300,-486.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-487.5 469,-487.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-491.5 301,-491.5 "/>
|
||||
<text text-anchor="start" x="313" y="-473.3" font-family="arial" font-size="14.00">X1:9</text>
|
||||
<text text-anchor="start" x="373" y="-473.3" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="418.5" y="-473.3" font-family="arial" font-size="14.00">X2:d26</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="300,-461.5 300,-467.5 470,-467.5 470,-461.5 300,-461.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-462.5 469,-462.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-466.5 301,-466.5 "/>
|
||||
<text text-anchor="start" x="309" y="-448.3" font-family="arial" font-size="14.00">X1:24</text>
|
||||
<text text-anchor="start" x="370" y="-448.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="418.5" y="-448.3" font-family="arial" font-size="14.00">X2:z30</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="300,-436.5 300,-442.5 470,-442.5 470,-436.5 300,-436.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-437.5 469,-437.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-441.5 301,-441.5 "/>
|
||||
<text text-anchor="start" x="309.5" y="-423.3" font-family="arial" font-size="14.00">X1:11</text>
|
||||
<text text-anchor="start" x="372.5" y="-423.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="418.5" y="-423.3" font-family="arial" font-size="14.00">X2:d32</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="300,-411.5 300,-417.5 470,-417.5 470,-411.5 300,-411.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-412.5 469,-412.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-416.5 301,-416.5 "/>
|
||||
<text text-anchor="start" x="325" y="-398.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="309" y="-379.3" font-family="arial" font-size="14.00">X1:13</text>
|
||||
<text text-anchor="start" x="363" y="-379.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-368.5 469,-368.5 "/>
|
||||
<text text-anchor="start" x="325" y="-354.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="446,-796 276,-796 276,-324 446,-324 446,-796"/>
|
||||
<polygon fill="none" stroke="black" points="276,-773 276,-796 446,-796 446,-773 276,-773"/>
|
||||
<text text-anchor="start" x="350" y="-780.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="276,-750 276,-773 306,-773 306,-750 276,-750"/>
|
||||
<text text-anchor="start" x="280" y="-757.8" font-family="arial" font-size="14.00">12x</text>
|
||||
<polygon fill="none" stroke="black" points="306,-750 306,-773 373,-773 373,-750 306,-750"/>
|
||||
<text text-anchor="start" x="310" y="-757.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="373,-750 373,-773 403,-773 403,-750 373,-750"/>
|
||||
<text text-anchor="start" x="377" y="-757.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="403,-750 403,-773 446,-773 446,-750 403,-750"/>
|
||||
<text text-anchor="start" x="407" y="-757.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359" y="-738.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285" y="-721.8" font-family="arial" font-size="14.00">X1:14</text>
|
||||
<text text-anchor="start" x="346" y="-721.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="398.5" y="-721.8" font-family="arial" font-size="14.00">X2:z2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-714 276,-716 446,-716 446,-714 276,-714"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-712 276,-714 446,-714 446,-712 276,-712"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-710 276,-712 446,-712 446,-710 276,-710"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-708 276,-710 446,-710 446,-708 276,-708"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-706 276,-708 446,-708 446,-706 276,-706"/>
|
||||
<text text-anchor="start" x="289" y="-692.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="348.5" y="-692.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="398" y="-692.8" font-family="arial" font-size="14.00">X2:d4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-685 276,-687 446,-687 446,-685 276,-685"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-683 276,-685 446,-685 446,-683 276,-683"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-681 276,-683 446,-683 446,-681 276,-681"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-679 276,-681 446,-681 446,-679 276,-679"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-677 276,-679 446,-679 446,-677 276,-677"/>
|
||||
<text text-anchor="start" x="285" y="-663.8" font-family="arial" font-size="14.00">X1:16</text>
|
||||
<text text-anchor="start" x="347" y="-663.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="398.5" y="-663.8" font-family="arial" font-size="14.00">X2:z8</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-656 276,-658 446,-658 446,-656 276,-656"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-654 276,-656 446,-656 446,-654 276,-654"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-652 276,-654 446,-654 446,-652 276,-652"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-650 276,-652 446,-652 446,-650 276,-650"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-648 276,-650 446,-650 446,-648 276,-648"/>
|
||||
<text text-anchor="start" x="289" y="-634.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="348.5" y="-634.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="394.5" y="-634.8" font-family="arial" font-size="14.00">X2:d10</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-627 276,-629 446,-629 446,-627 276,-627"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-625 276,-627 446,-627 446,-625 276,-625"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-623 276,-625 446,-625 446,-623 276,-623"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-621 276,-623 446,-623 446,-621 276,-621"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-619 276,-621 446,-621 446,-619 276,-619"/>
|
||||
<text text-anchor="start" x="285" y="-605.8" font-family="arial" font-size="14.00">X1:18</text>
|
||||
<text text-anchor="start" x="347.5" y="-605.8" font-family="arial" font-size="14.00">GY</text>
|
||||
<text text-anchor="start" x="394.5" y="-605.8" font-family="arial" font-size="14.00">X2:z14</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-598 276,-600 446,-600 446,-598 276,-598"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-596 276,-598 446,-598 446,-596 276,-596"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-594 276,-596 446,-596 446,-594 276,-594"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-592 276,-594 446,-594 446,-592 276,-592"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-590 276,-592 446,-592 446,-590 276,-590"/>
|
||||
<text text-anchor="start" x="289" y="-576.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="348.5" y="-576.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="394.5" y="-576.8" font-family="arial" font-size="14.00">X2:d16</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-569 276,-571 446,-571 446,-569 276,-569"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-567 276,-569 446,-569 446,-567 276,-567"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-565 276,-567 446,-567 446,-565 276,-565"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-563 276,-565 446,-565 446,-563 276,-563"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-561 276,-563 446,-563 446,-561 276,-561"/>
|
||||
<text text-anchor="start" x="285" y="-547.8" font-family="arial" font-size="14.00">X1:20</text>
|
||||
<text text-anchor="start" x="348.5" y="-547.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="394.5" y="-547.8" font-family="arial" font-size="14.00">X2:z18</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-540 276,-542 446,-542 446,-540 276,-540"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-538 276,-540 446,-540 446,-538 276,-538"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-536 276,-538 446,-538 446,-536 276,-536"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-534 276,-536 446,-536 446,-534 276,-534"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-532 276,-534 446,-534 446,-532 276,-532"/>
|
||||
<text text-anchor="start" x="289" y="-518.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="348" y="-518.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="394.5" y="-518.8" font-family="arial" font-size="14.00">X2:d20</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-511 276,-513 446,-513 446,-511 276,-511"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-509 276,-511 446,-511 446,-509 276,-509"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-507 276,-509 446,-509 446,-507 276,-507"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-505 276,-507 446,-507 446,-505 276,-505"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-503 276,-505 446,-505 446,-503 276,-503"/>
|
||||
<text text-anchor="start" x="285" y="-489.8" font-family="arial" font-size="14.00">X1:22</text>
|
||||
<text text-anchor="start" x="348.5" y="-489.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="394.5" y="-489.8" font-family="arial" font-size="14.00">X2:z24</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-482 276,-484 446,-484 446,-482 276,-482"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-480 276,-482 446,-482 446,-480 276,-480"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-478 276,-480 446,-480 446,-478 276,-478"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-476 276,-478 446,-478 446,-476 276,-476"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-474 276,-476 446,-476 446,-474 276,-474"/>
|
||||
<text text-anchor="start" x="289" y="-460.8" font-family="arial" font-size="14.00">X1:9</text>
|
||||
<text text-anchor="start" x="349" y="-460.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="394.5" y="-460.8" font-family="arial" font-size="14.00">X2:d26</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-453 276,-455 446,-455 446,-453 276,-453"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-451 276,-453 446,-453 446,-451 276,-451"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-449 276,-451 446,-451 446,-449 276,-449"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-447 276,-449 446,-449 446,-447 276,-447"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-445 276,-447 446,-447 446,-445 276,-445"/>
|
||||
<text text-anchor="start" x="285" y="-431.8" font-family="arial" font-size="14.00">X1:24</text>
|
||||
<text text-anchor="start" x="338.5" y="-431.8" font-family="arial" font-size="14.00">GYPK</text>
|
||||
<text text-anchor="start" x="394.5" y="-431.8" font-family="arial" font-size="14.00">X2:z30</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-424 276,-426 446,-426 446,-424 276,-424"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-422 276,-424 446,-424 446,-422 276,-422"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-420 276,-422 446,-422 446,-420 276,-420"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-418 276,-420 446,-420 446,-418 276,-418"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-416 276,-418 446,-418 446,-416 276,-416"/>
|
||||
<text text-anchor="start" x="285.5" y="-402.8" font-family="arial" font-size="14.00">X1:11</text>
|
||||
<text text-anchor="start" x="338.5" y="-402.8" font-family="arial" font-size="14.00">RDBU</text>
|
||||
<text text-anchor="start" x="394.5" y="-402.8" font-family="arial" font-size="14.00">X2:d32</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-395 276,-397 446,-397 446,-395 276,-395"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-393 276,-395 446,-395 446,-393 276,-393"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-391 276,-393 446,-393 446,-391 276,-391"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-389 276,-391 446,-391 446,-389 276,-389"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-387 276,-389 446,-389 446,-387 276,-387"/>
|
||||
<text text-anchor="start" x="301" y="-373.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285" y="-354.8" font-family="arial" font-size="14.00">X1:13</text>
|
||||
<text text-anchor="start" x="339" y="-354.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="277,-344 445,-344 "/>
|
||||
<text text-anchor="start" x="301" y="-329.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-662.5C220,-662.5 236,-662.5 300,-662.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M156,-664.5C220,-664.5 236,-664.5 300,-664.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-666.5C220,-666.5 236,-666.5 300,-666.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-671C197.69,-671.34 213.54,-678.34 276,-678"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-673C196.88,-673.17 212.73,-680.17 276,-680"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-675C196.08,-675 211.92,-682 276,-682"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-677C195.27,-676.83 211.12,-683.83 276,-684"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-679C194.46,-678.66 210.31,-685.66 276,-686"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-639.5C225.43,-641.13 234.5,-689.13 300,-687.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M156,-641.5C223.46,-641.5 232.54,-689.5 300,-689.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-643.5C221.5,-641.87 230.57,-689.87 300,-691.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-648C205.15,-651.62 210.82,-710.62 276,-707"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-650C203.15,-651.81 208.83,-710.81 276,-709"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-652C201.16,-652 206.84,-711 276,-711"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-654C199.17,-652.19 204.85,-711.19 276,-713"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-656C197.18,-652.38 202.85,-711.38 276,-715"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-616.5C219.54,-616.56 235.49,-612.56 300,-612.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M156,-618.5C220.02,-618.5 235.98,-614.5 300,-614.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-620.5C220.51,-620.44 236.46,-616.44 300,-616.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-625C194.84,-625.18 210.76,-620.18 276,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-627C195.44,-627.09 211.36,-622.09 276,-622"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-629C196.04,-629 211.96,-624 276,-624"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-631C196.64,-630.91 212.56,-625.91 276,-626"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-633C197.24,-632.82 213.16,-627.82 276,-628"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-593.5C224.87,-595.05 235.03,-639.05 300,-637.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M156,-595.5C222.92,-595.5 233.08,-639.5 300,-639.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-597.5C220.97,-595.95 231.13,-639.95 300,-641.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-602C203.25,-605.22 212.6,-652.22 276,-649"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-604C201.28,-605.61 210.64,-652.61 276,-651"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-606C199.32,-606 208.68,-653 276,-653"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-608C197.36,-606.39 206.72,-653.39 276,-655"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-610C195.4,-606.78 204.75,-653.78 276,-657"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-570.5C219.2,-570.72 235,-562.72 300,-562.5"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M156,-572.5C220.1,-572.5 235.9,-564.5 300,-564.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-574.5C221,-574.28 236.8,-566.28 300,-566.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-579C193.45,-580.34 208.57,-563.34 276,-562"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-581C194.95,-581.67 210.06,-564.67 276,-564"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-583C196.44,-583 211.56,-566 276,-566"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-585C197.94,-584.33 213.05,-567.33 276,-568"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-587C199.43,-585.66 214.55,-568.66 276,-570"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-547.5C224.35,-548.96 235.5,-588.96 300,-587.5"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M156,-549.5C222.42,-549.5 233.58,-589.5 300,-589.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-551.5C220.5,-550.04 231.65,-590.04 300,-591.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-555C201.76,-557.73 213.82,-593.73 276,-591"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-557C199.87,-558.36 211.93,-594.36 276,-593"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-559C197.97,-559 210.03,-595 276,-595"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-561C196.07,-559.64 208.13,-595.64 276,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-563C194.18,-560.27 206.24,-596.27 276,-599"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-524.5C219,-524.92 234.56,-512.92 300,-512.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M156,-526.5C220.22,-526.5 235.78,-514.5 300,-514.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-528.5C221.44,-528.08 237,-516.08 300,-516.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-532C193.6,-534.25 207.2,-506.25 276,-504"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-534C195.4,-535.13 209,-507.13 276,-506"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-536C197.2,-536 210.8,-508 276,-508"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-538C199,-536.87 212.6,-508.87 276,-510"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-540C200.8,-537.75 214.4,-509.75 276,-512"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-501.5C223.87,-502.86 235.93,-538.86 300,-537.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M156,-503.5C221.97,-503.5 234.03,-539.5 300,-539.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-505.5C220.07,-504.14 232.13,-540.14 300,-541.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-509C200.32,-510.96 214.56,-534.96 276,-533"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-511C198.6,-511.98 212.84,-535.98 276,-535"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-513C196.88,-513 211.12,-537 276,-537"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-515C195.16,-514.02 209.4,-538.02 276,-539"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-517C193.44,-515.04 207.68,-539.04 276,-541"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-478.5C218.94,-479.12 234.16,-463.12 300,-462.5"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M156,-480.5C220.39,-480.5 235.61,-464.5 300,-464.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-482.5C221.84,-481.88 237.06,-465.88 300,-466.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-486C194.57,-488.93 205.72,-448.93 276,-446"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-488C196.5,-489.46 207.65,-449.46 276,-448"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-490C198.42,-490 209.58,-450 276,-450"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-492C200.35,-490.54 211.5,-450.54 276,-452"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-494C202.28,-491.07 213.43,-451.07 276,-454"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-455.5C223.42,-456.75 236.29,-488.75 300,-487.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-457.5C221.56,-457.5 234.44,-489.5 300,-489.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-459.5C219.71,-458.25 232.58,-490.25 300,-491.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-463C198.66,-463.83 214.22,-475.83 276,-475"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-465C197.44,-465.42 213,-477.42 276,-477"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-467C196.22,-467 211.78,-479 276,-479"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-469C195,-468.58 210.56,-480.58 276,-481"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-471C193.78,-470.17 209.34,-482.17 276,-483"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-432.5C219.01,-433.31 233.78,-413.31 300,-412.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M156,-434.5C220.61,-434.5 235.39,-414.5 300,-414.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-436.5C222.22,-435.69 236.99,-415.69 300,-416.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-440C196.09,-443.4 204,-391.4 276,-388"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-442C198.07,-443.7 205.98,-391.7 276,-390"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-444C200.05,-444 207.95,-392 276,-392"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-446C202.02,-444.3 209.93,-392.3 276,-394"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-448C204,-444.6 211.91,-392.6 276,-396"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-409.5C223,-410.63 236.6,-438.63 300,-437.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M156,-411.5C221.2,-411.5 234.8,-439.5 300,-439.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-413.5C219.4,-412.37 233,-440.37 300,-441.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-417C196,-417 212,-417 276,-417"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-419C196,-419 212,-419 276,-419"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-421C196,-421 212,-421 276,-421"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-423C196,-423 212,-423 276,-423"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-425C196,-425 212,-425 276,-425"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-388.5C220.5,-388.5 235.5,-370.5 300,-370.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-396C198.07,-397.7 205.98,-345.7 276,-344"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M132,-398C200.05,-398 207.95,-346 276,-346"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-400C202.02,-398.3 209.93,-346.3 276,-348"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="614,-0.5 614,-1150.5 766,-1150.5 766,-0.5 614,-0.5"/>
|
||||
<text text-anchor="middle" x="690" y="-1135.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1127.5 766,-1127.5 "/>
|
||||
<text text-anchor="middle" x="634" y="-1112.3" font-family="arial" font-size="14.00">F48</text>
|
||||
<polyline fill="none" stroke="black" points="654,-1104.5 654,-1127.5 "/>
|
||||
<text text-anchor="middle" x="683" y="-1112.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="712,-1104.5 712,-1127.5 "/>
|
||||
<text text-anchor="middle" x="739" y="-1112.3" font-family="arial" font-size="14.00">48-pin</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1104.5 766,-1104.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1089.3" font-family="arial" font-size="14.00">z2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1081.5 766,-1081.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1066.3" font-family="arial" font-size="14.00">b2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1058.5 766,-1058.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1043.3" font-family="arial" font-size="14.00">d2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1035.5 766,-1035.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1020.3" font-family="arial" font-size="14.00">z4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1012.5 766,-1012.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-997.3" font-family="arial" font-size="14.00">b4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-989.5 766,-989.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-974.3" font-family="arial" font-size="14.00">d4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-966.5 766,-966.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-951.3" font-family="arial" font-size="14.00">z6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-943.5 766,-943.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-928.3" font-family="arial" font-size="14.00">b6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-920.5 766,-920.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-905.3" font-family="arial" font-size="14.00">d6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-897.5 766,-897.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-882.3" font-family="arial" font-size="14.00">z8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-874.5 766,-874.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-859.3" font-family="arial" font-size="14.00">b8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-851.5 766,-851.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-836.3" font-family="arial" font-size="14.00">d8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-828.5 766,-828.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-813.3" font-family="arial" font-size="14.00">z10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-805.5 766,-805.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-790.3" font-family="arial" font-size="14.00">b10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-782.5 766,-782.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-767.3" font-family="arial" font-size="14.00">d10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-759.5 766,-759.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-744.3" font-family="arial" font-size="14.00">z12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-736.5 766,-736.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-721.3" font-family="arial" font-size="14.00">b12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-713.5 766,-713.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-698.3" font-family="arial" font-size="14.00">d12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-690.5 766,-690.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-675.3" font-family="arial" font-size="14.00">z14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-667.5 766,-667.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-652.3" font-family="arial" font-size="14.00">b14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-644.5 766,-644.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-629.3" font-family="arial" font-size="14.00">d14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-621.5 766,-621.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-606.3" font-family="arial" font-size="14.00">z16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-598.5 766,-598.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-583.3" font-family="arial" font-size="14.00">b16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-575.5 766,-575.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-560.3" font-family="arial" font-size="14.00">d16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-552.5 766,-552.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-537.3" font-family="arial" font-size="14.00">z18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-529.5 766,-529.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-514.3" font-family="arial" font-size="14.00">b18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-506.5 766,-506.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-491.3" font-family="arial" font-size="14.00">d18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-483.5 766,-483.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-468.3" font-family="arial" font-size="14.00">z20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-460.5 766,-460.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-445.3" font-family="arial" font-size="14.00">b20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-437.5 766,-437.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-422.3" font-family="arial" font-size="14.00">d20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-414.5 766,-414.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-399.3" font-family="arial" font-size="14.00">z22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-391.5 766,-391.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-376.3" font-family="arial" font-size="14.00">b22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-368.5 766,-368.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-353.3" font-family="arial" font-size="14.00">d22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-345.5 766,-345.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-330.3" font-family="arial" font-size="14.00">z24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-322.5 766,-322.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-307.3" font-family="arial" font-size="14.00">b24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-299.5 766,-299.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-284.3" font-family="arial" font-size="14.00">d24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-276.5 766,-276.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-261.3" font-family="arial" font-size="14.00">z26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-253.5 766,-253.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-238.3" font-family="arial" font-size="14.00">b26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-230.5 766,-230.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-215.3" font-family="arial" font-size="14.00">d26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-207.5 766,-207.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-192.3" font-family="arial" font-size="14.00">z28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-184.5 766,-184.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-169.3" font-family="arial" font-size="14.00">b28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-161.5 766,-161.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-146.3" font-family="arial" font-size="14.00">d28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-138.5 766,-138.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-123.3" font-family="arial" font-size="14.00">z30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-115.5 766,-115.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-100.3" font-family="arial" font-size="14.00">b30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-92.5 766,-92.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-77.3" font-family="arial" font-size="14.00">d30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-69.5 766,-69.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-54.3" font-family="arial" font-size="14.00">z32</text>
|
||||
<polyline fill="none" stroke="black" points="614,-46.5 766,-46.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-31.3" font-family="arial" font-size="14.00">b32</text>
|
||||
<polyline fill="none" stroke="black" points="614,-23.5 766,-23.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-8.3" font-family="arial" font-size="14.00">d32</text>
|
||||
<polygon fill="white" stroke="transparent" points="718,-1150 590,-1150 590,0 718,0 718,-1150"/>
|
||||
<polygon fill="none" stroke="black" points="590,-1127 590,-1150 718,-1150 718,-1127 590,-1127"/>
|
||||
<text text-anchor="start" x="645.5" y="-1134.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1104 590,-1127 622,-1127 622,-1104 590,-1104"/>
|
||||
<text text-anchor="start" x="594" y="-1111.8" font-family="arial" font-size="14.00">F48</text>
|
||||
<polygon fill="none" stroke="black" points="622,-1104 622,-1127 672,-1127 672,-1104 622,-1104"/>
|
||||
<text text-anchor="start" x="626" y="-1111.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="672,-1104 672,-1127 718,-1127 718,-1104 672,-1104"/>
|
||||
<text text-anchor="start" x="676" y="-1111.8" font-family="arial" font-size="14.00">48-pin</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1081 590,-1104 718,-1104 718,-1081 590,-1081"/>
|
||||
<text text-anchor="start" x="646.5" y="-1088.8" font-family="arial" font-size="14.00">z2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1058 590,-1081 718,-1081 718,-1058 590,-1058"/>
|
||||
<text text-anchor="start" x="646" y="-1065.8" font-family="arial" font-size="14.00">b2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1035 590,-1058 718,-1058 718,-1035 590,-1035"/>
|
||||
<text text-anchor="start" x="646" y="-1042.8" font-family="arial" font-size="14.00">d2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1012 590,-1035 718,-1035 718,-1012 590,-1012"/>
|
||||
<text text-anchor="start" x="646.5" y="-1019.8" font-family="arial" font-size="14.00">z4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-989 590,-1012 718,-1012 718,-989 590,-989"/>
|
||||
<text text-anchor="start" x="646" y="-996.8" font-family="arial" font-size="14.00">b4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-966 590,-989 718,-989 718,-966 590,-966"/>
|
||||
<text text-anchor="start" x="646" y="-973.8" font-family="arial" font-size="14.00">d4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-943 590,-966 718,-966 718,-943 590,-943"/>
|
||||
<text text-anchor="start" x="646.5" y="-950.8" font-family="arial" font-size="14.00">z6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-920 590,-943 718,-943 718,-920 590,-920"/>
|
||||
<text text-anchor="start" x="646" y="-927.8" font-family="arial" font-size="14.00">b6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-897 590,-920 718,-920 718,-897 590,-897"/>
|
||||
<text text-anchor="start" x="646" y="-904.8" font-family="arial" font-size="14.00">d6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-874 590,-897 718,-897 718,-874 590,-874"/>
|
||||
<text text-anchor="start" x="646.5" y="-881.8" font-family="arial" font-size="14.00">z8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-851 590,-874 718,-874 718,-851 590,-851"/>
|
||||
<text text-anchor="start" x="646" y="-858.8" font-family="arial" font-size="14.00">b8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-828 590,-851 718,-851 718,-828 590,-828"/>
|
||||
<text text-anchor="start" x="646" y="-835.8" font-family="arial" font-size="14.00">d8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-805 590,-828 718,-828 718,-805 590,-805"/>
|
||||
<text text-anchor="start" x="643" y="-812.8" font-family="arial" font-size="14.00">z10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-782 590,-805 718,-805 718,-782 590,-782"/>
|
||||
<text text-anchor="start" x="642.5" y="-789.8" font-family="arial" font-size="14.00">b10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-759 590,-782 718,-782 718,-759 590,-759"/>
|
||||
<text text-anchor="start" x="642.5" y="-766.8" font-family="arial" font-size="14.00">d10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-736 590,-759 718,-759 718,-736 590,-736"/>
|
||||
<text text-anchor="start" x="643" y="-743.8" font-family="arial" font-size="14.00">z12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-713 590,-736 718,-736 718,-713 590,-713"/>
|
||||
<text text-anchor="start" x="642.5" y="-720.8" font-family="arial" font-size="14.00">b12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-690 590,-713 718,-713 718,-690 590,-690"/>
|
||||
<text text-anchor="start" x="642.5" y="-697.8" font-family="arial" font-size="14.00">d12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-667 590,-690 718,-690 718,-667 590,-667"/>
|
||||
<text text-anchor="start" x="643" y="-674.8" font-family="arial" font-size="14.00">z14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-644 590,-667 718,-667 718,-644 590,-644"/>
|
||||
<text text-anchor="start" x="642.5" y="-651.8" font-family="arial" font-size="14.00">b14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-621 590,-644 718,-644 718,-621 590,-621"/>
|
||||
<text text-anchor="start" x="642.5" y="-628.8" font-family="arial" font-size="14.00">d14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-598 590,-621 718,-621 718,-598 590,-598"/>
|
||||
<text text-anchor="start" x="643" y="-605.8" font-family="arial" font-size="14.00">z16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-575 590,-598 718,-598 718,-575 590,-575"/>
|
||||
<text text-anchor="start" x="642.5" y="-582.8" font-family="arial" font-size="14.00">b16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-552 590,-575 718,-575 718,-552 590,-552"/>
|
||||
<text text-anchor="start" x="642.5" y="-559.8" font-family="arial" font-size="14.00">d16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-529 590,-552 718,-552 718,-529 590,-529"/>
|
||||
<text text-anchor="start" x="643" y="-536.8" font-family="arial" font-size="14.00">z18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-506 590,-529 718,-529 718,-506 590,-506"/>
|
||||
<text text-anchor="start" x="642.5" y="-513.8" font-family="arial" font-size="14.00">b18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-483 590,-506 718,-506 718,-483 590,-483"/>
|
||||
<text text-anchor="start" x="642.5" y="-490.8" font-family="arial" font-size="14.00">d18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-460 590,-483 718,-483 718,-460 590,-460"/>
|
||||
<text text-anchor="start" x="643" y="-467.8" font-family="arial" font-size="14.00">z20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-437 590,-460 718,-460 718,-437 590,-437"/>
|
||||
<text text-anchor="start" x="642.5" y="-444.8" font-family="arial" font-size="14.00">b20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-414 590,-437 718,-437 718,-414 590,-414"/>
|
||||
<text text-anchor="start" x="642.5" y="-421.8" font-family="arial" font-size="14.00">d20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-391 590,-414 718,-414 718,-391 590,-391"/>
|
||||
<text text-anchor="start" x="643" y="-398.8" font-family="arial" font-size="14.00">z22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-368 590,-391 718,-391 718,-368 590,-368"/>
|
||||
<text text-anchor="start" x="642.5" y="-375.8" font-family="arial" font-size="14.00">b22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-345 590,-368 718,-368 718,-345 590,-345"/>
|
||||
<text text-anchor="start" x="642.5" y="-352.8" font-family="arial" font-size="14.00">d22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-322 590,-345 718,-345 718,-322 590,-322"/>
|
||||
<text text-anchor="start" x="643" y="-329.8" font-family="arial" font-size="14.00">z24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-299 590,-322 718,-322 718,-299 590,-299"/>
|
||||
<text text-anchor="start" x="642.5" y="-306.8" font-family="arial" font-size="14.00">b24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-276 590,-299 718,-299 718,-276 590,-276"/>
|
||||
<text text-anchor="start" x="642.5" y="-283.8" font-family="arial" font-size="14.00">d24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-253 590,-276 718,-276 718,-253 590,-253"/>
|
||||
<text text-anchor="start" x="643" y="-260.8" font-family="arial" font-size="14.00">z26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-230 590,-253 718,-253 718,-230 590,-230"/>
|
||||
<text text-anchor="start" x="642.5" y="-237.8" font-family="arial" font-size="14.00">b26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-207 590,-230 718,-230 718,-207 590,-207"/>
|
||||
<text text-anchor="start" x="642.5" y="-214.8" font-family="arial" font-size="14.00">d26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-184 590,-207 718,-207 718,-184 590,-184"/>
|
||||
<text text-anchor="start" x="643" y="-191.8" font-family="arial" font-size="14.00">z28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-161 590,-184 718,-184 718,-161 590,-161"/>
|
||||
<text text-anchor="start" x="642.5" y="-168.8" font-family="arial" font-size="14.00">b28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-138 590,-161 718,-161 718,-138 590,-138"/>
|
||||
<text text-anchor="start" x="642.5" y="-145.8" font-family="arial" font-size="14.00">d28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-115 590,-138 718,-138 718,-115 590,-115"/>
|
||||
<text text-anchor="start" x="643" y="-122.8" font-family="arial" font-size="14.00">z30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-92 590,-115 718,-115 718,-92 590,-92"/>
|
||||
<text text-anchor="start" x="642.5" y="-99.8" font-family="arial" font-size="14.00">b30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-69 590,-92 718,-92 718,-69 590,-69"/>
|
||||
<text text-anchor="start" x="642.5" y="-76.8" font-family="arial" font-size="14.00">d30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-46 590,-69 718,-69 718,-46 590,-46"/>
|
||||
<text text-anchor="start" x="643" y="-53.8" font-family="arial" font-size="14.00">z32</text>
|
||||
<polygon fill="none" stroke="black" points="590,-23 590,-46 718,-46 718,-23 590,-23"/>
|
||||
<text text-anchor="start" x="642.5" y="-30.8" font-family="arial" font-size="14.00">b32</text>
|
||||
<polygon fill="none" stroke="black" points="590,0 590,-23 718,-23 718,0 590,0"/>
|
||||
<text text-anchor="start" x="642.5" y="-7.8" font-family="arial" font-size="14.00">d32</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-662.5C625.31,-665.42 462.24,-979.42 614,-976.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M470,-664.5C623.53,-664.5 460.47,-978.5 614,-978.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-666.5C621.76,-663.58 458.69,-977.58 614,-980.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-678C595.87,-683.79 447.28,-979.79 590,-974"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-680C594.08,-682.9 445.49,-978.9 590,-976"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-682C592.3,-682 443.7,-978 590,-978"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-684C590.51,-681.1 441.92,-977.1 590,-980"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-686C588.72,-680.21 440.13,-976.21 590,-982"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-687.5C662.35,-690.51 425.1,-1094.51 614,-1091.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M470,-689.5C660.62,-689.5 423.38,-1093.5 614,-1093.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-691.5C658.9,-688.49 421.65,-1092.49 614,-1095.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-707C630.91,-712.99 412.03,-1094.99 590,-1089"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-709C629.18,-711.99 410.3,-1093.99 590,-1091"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-711C627.44,-711 408.56,-1093 590,-1093"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-713C625.7,-710.01 406.82,-1092.01 590,-1095"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-715C623.97,-709.01 405.09,-1091.01 590,-1097"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-612.5C566.6,-615.06 521.24,-772.06 614,-769.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M470,-614.5C564.68,-614.5 519.32,-771.5 614,-771.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-616.5C562.76,-613.94 517.4,-770.94 614,-773.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-620C541.32,-625.02 502.41,-772.02 590,-767"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-622C539.39,-624.51 500.48,-771.51 590,-769"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-624C537.46,-624 498.54,-771 590,-771"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-626C535.52,-623.49 496.61,-770.49 590,-773"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-628C533.59,-622.98 494.68,-769.98 590,-775"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-637.5C598.9,-640.31 488.76,-887.31 614,-884.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M470,-639.5C597.07,-639.5 486.93,-886.5 614,-886.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-641.5C595.24,-638.69 485.1,-885.69 614,-888.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-649C571.42,-654.57 471.94,-887.57 590,-882"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-651C569.58,-653.79 470.1,-886.79 590,-884"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-653C567.74,-653 468.26,-886 590,-886"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-655C565.9,-652.21 466.42,-885.21 590,-888"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-657C564.06,-651.43 464.58,-884.43 590,-890"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-562.5C533.88,-562.5 549.87,-561.5 614,-561.5"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M470,-564.5C534,-564.5 550,-563.5 614,-563.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-566.5C534.13,-566.5 550.12,-565.5 614,-565.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-562C509.28,-562.07 525.25,-559.07 590,-559"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-564C509.64,-564.03 525.62,-561.03 590,-561"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-566C510.01,-566 525.99,-563 590,-563"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-568C510.38,-567.97 526.36,-564.97 590,-565"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-570C510.75,-569.93 526.72,-566.93 590,-567"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-587.5C547.47,-589.65 540.52,-679.65 614,-677.5"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M470,-589.5C545.47,-589.5 538.53,-679.5 614,-679.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-591.5C543.48,-589.35 536.53,-679.35 614,-681.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-591C524.09,-595.2 519.9,-679.2 590,-675"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-593C522.09,-595.1 517.9,-679.1 590,-677"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-595C520.09,-595 515.91,-679 590,-679"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-597C518.1,-594.9 513.91,-678.9 590,-681"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-599C516.1,-594.8 511.91,-678.8 590,-683"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-512.5C543.24,-514.65 536.77,-425.65 614,-423.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M470,-514.5C545.24,-514.5 538.76,-425.5 614,-425.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-516.5C547.23,-514.35 540.76,-425.35 614,-427.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-504C515.87,-508.18 512.13,-425.18 590,-421"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-506C517.87,-508.09 514.13,-425.09 590,-423"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-508C519.87,-508 516.13,-425 590,-425"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-510C521.87,-507.91 518.13,-424.91 590,-427"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-512C523.87,-507.82 520.13,-424.82 590,-429"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-537.5C534.13,-537.5 550.12,-538.5 614,-538.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M470,-539.5C534,-539.5 550,-540.5 614,-540.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-541.5C533.88,-541.5 549.87,-542.5 614,-542.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-533C510.75,-533.07 526.72,-536.07 590,-536"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-535C510.38,-535.03 526.36,-538.03 590,-538"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-537C510.01,-537 525.99,-540 590,-540"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-539C509.64,-538.97 525.62,-541.97 590,-542"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-541C509.28,-540.93 525.25,-543.93 590,-544"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-462.5C594.86,-465.31 485.48,-219.31 614,-216.5"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M470,-464.5C596.69,-464.5 487.31,-218.5 614,-218.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-466.5C598.52,-463.69 489.14,-217.69 614,-220.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-446C563.68,-451.57 464.96,-219.57 590,-214"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-448C565.52,-450.78 466.8,-218.78 590,-216"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-450C567.36,-450 468.64,-218 590,-218"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-452C569.2,-449.22 470.48,-217.22 590,-220"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-454C571.04,-448.43 472.32,-216.43 590,-222"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-487.5C562.43,-490.05 517.72,-334.05 614,-331.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-489.5C564.36,-489.5 519.64,-333.5 614,-333.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-491.5C566.28,-488.95 521.57,-332.95 614,-335.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-475C533.27,-480.01 494.99,-334.01 590,-329"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-477C535.21,-479.51 496.93,-333.51 590,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-479C537.14,-479 498.86,-333 590,-333"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-481C539.07,-478.49 500.79,-332.49 590,-335"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-483C541.01,-477.99 502.73,-331.99 590,-337"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-412.5C658.48,-415.51 422.07,-12.51 614,-9.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M470,-414.5C660.2,-414.5 423.8,-11.5 614,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-416.5C661.93,-413.49 425.52,-10.49 614,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-388C623.55,-393.99 405.5,-12.99 590,-7"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-390C625.29,-392.99 407.24,-11.99 590,-9"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-392C627.02,-392 408.98,-11 590,-11"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-394C628.76,-391.01 410.71,-10.01 590,-13"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-396C630.5,-390.01 412.45,-9.01 590,-15"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-437.5C621.35,-440.42 459.1,-127.42 614,-124.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M470,-439.5C623.13,-439.5 460.87,-126.5 614,-126.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-441.5C624.9,-438.58 462.65,-125.58 614,-128.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-417C588.32,-422.79 440.53,-127.79 590,-122"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-419C590.11,-421.9 442.31,-126.9 590,-124"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-421C591.9,-421 444.1,-126 590,-126"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-423C593.69,-420.1 445.89,-125.1 590,-128"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-425C595.47,-419.21 447.68,-124.21 590,-130"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, D-Sub, male, 25 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, F48, female, 48 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 12 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, D-Sub, male, 25 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, F48, female, 48 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 12 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">0.2</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 203 KiB After Width: | Height: | Size: 229 KiB |
@ -4,447 +4,523 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="774pt" height="1159pt"
|
||||
viewBox="0.00 0.00 774.00 1159.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 1155)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-1155 770,-1155 770,4 -4,4"/>
|
||||
<svg width="726pt" height="1158pt"
|
||||
viewBox="0.00 0.00 726.00 1158.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 1154)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-1154 722,-1154 722,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-377 0,-722 156,-722 156,-377 0,-377"/>
|
||||
<text text-anchor="middle" x="78" y="-706.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-699 156,-699 "/>
|
||||
<text text-anchor="middle" x="27.5" y="-683.8" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polyline fill="none" stroke="black" points="55,-676 55,-699 "/>
|
||||
<text text-anchor="middle" x="78.5" y="-683.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="102,-676 102,-699 "/>
|
||||
<text text-anchor="middle" x="129" y="-683.8" font-family="arial" font-size="14.00">25-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-676 156,-676 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-660.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-653 109,-653 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-637.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-630 109,-630 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-614.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-607 109,-607 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-591.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-584 109,-584 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-568.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-561 109,-561 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-545.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-538 109,-538 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-522.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-515 109,-515 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-499.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-492 109,-492 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-476.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-469 109,-469 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-453.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
|
||||
<polyline fill="none" stroke="black" points="0,-446 109,-446 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-430.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-423 109,-423 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-407.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
|
||||
<polyline fill="none" stroke="black" points="0,-400 109,-400 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-384.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="109,-377 109,-676 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-660.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="109,-653 156,-653 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-637.8" font-family="arial" font-size="14.00">14</text>
|
||||
<polyline fill="none" stroke="black" points="109,-630 156,-630 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-614.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="109,-607 156,-607 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-591.8" font-family="arial" font-size="14.00">16</text>
|
||||
<polyline fill="none" stroke="black" points="109,-584 156,-584 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-568.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polyline fill="none" stroke="black" points="109,-561 156,-561 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-545.8" font-family="arial" font-size="14.00">18</text>
|
||||
<polyline fill="none" stroke="black" points="109,-538 156,-538 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-522.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polyline fill="none" stroke="black" points="109,-515 156,-515 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-499.8" font-family="arial" font-size="14.00">20</text>
|
||||
<polyline fill="none" stroke="black" points="109,-492 156,-492 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-476.8" font-family="arial" font-size="14.00">9</text>
|
||||
<polyline fill="none" stroke="black" points="109,-469 156,-469 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-453.8" font-family="arial" font-size="14.00">22</text>
|
||||
<polyline fill="none" stroke="black" points="109,-446 156,-446 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-430.8" font-family="arial" font-size="14.00">11</text>
|
||||
<polyline fill="none" stroke="black" points="109,-423 156,-423 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-407.8" font-family="arial" font-size="14.00">24</text>
|
||||
<polyline fill="none" stroke="black" points="109,-400 156,-400 "/>
|
||||
<text text-anchor="middle" x="132.5" y="-384.8" font-family="arial" font-size="14.00">13</text>
|
||||
<polygon fill="white" stroke="transparent" points="132,-732.5 0,-732.5 0,-387.5 132,-387.5 132,-732.5"/>
|
||||
<polygon fill="none" stroke="black" points="0,-709 0,-732 132,-732 132,-709 0,-709"/>
|
||||
<text text-anchor="start" x="57.5" y="-716.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-686 0,-709 47,-709 47,-686 0,-686"/>
|
||||
<text text-anchor="start" x="4" y="-693.8" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-686 47,-709 86,-709 86,-686 47,-686"/>
|
||||
<text text-anchor="start" x="51" y="-693.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="86,-686 86,-709 132,-709 132,-686 86,-686"/>
|
||||
<text text-anchor="start" x="90" y="-693.8" font-family="arial" font-size="14.00">25-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-663 0,-686 98,-686 98,-663 0,-663"/>
|
||||
<text text-anchor="start" x="10" y="-670.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-663 98,-686 132,-686 132,-663 98,-663"/>
|
||||
<text text-anchor="start" x="111" y="-670.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-640 0,-663 98,-663 98,-640 0,-640"/>
|
||||
<text text-anchor="start" x="9.5" y="-647.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-640 98,-663 132,-663 132,-640 98,-640"/>
|
||||
<text text-anchor="start" x="107" y="-647.8" font-family="arial" font-size="14.00">14</text>
|
||||
<polygon fill="none" stroke="black" points="0,-617 0,-640 98,-640 98,-617 0,-617"/>
|
||||
<text text-anchor="start" x="10" y="-624.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
|
||||
<polygon fill="none" stroke="black" points="98,-617 98,-640 132,-640 132,-617 98,-617"/>
|
||||
<text text-anchor="start" x="111" y="-624.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-594 0,-617 98,-617 98,-594 0,-594"/>
|
||||
<text text-anchor="start" x="9.5" y="-601.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
|
||||
<polygon fill="none" stroke="black" points="98,-594 98,-617 132,-617 132,-594 98,-594"/>
|
||||
<text text-anchor="start" x="107" y="-601.8" font-family="arial" font-size="14.00">16</text>
|
||||
<polygon fill="none" stroke="black" points="0,-571 0,-594 98,-594 98,-571 0,-571"/>
|
||||
<text text-anchor="start" x="10" y="-578.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
|
||||
<polygon fill="none" stroke="black" points="98,-571 98,-594 132,-594 132,-571 98,-571"/>
|
||||
<text text-anchor="start" x="111" y="-578.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-548 0,-571 98,-571 98,-548 0,-548"/>
|
||||
<text text-anchor="start" x="9.5" y="-555.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
|
||||
<polygon fill="none" stroke="black" points="98,-548 98,-571 132,-571 132,-548 98,-548"/>
|
||||
<text text-anchor="start" x="107" y="-555.8" font-family="arial" font-size="14.00">18</text>
|
||||
<polygon fill="none" stroke="black" points="0,-525 0,-548 98,-548 98,-525 0,-525"/>
|
||||
<text text-anchor="start" x="10" y="-532.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
|
||||
<polygon fill="none" stroke="black" points="98,-525 98,-548 132,-548 132,-525 98,-525"/>
|
||||
<text text-anchor="start" x="111" y="-532.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-502 0,-525 98,-525 98,-502 0,-502"/>
|
||||
<text text-anchor="start" x="9.5" y="-509.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
|
||||
<polygon fill="none" stroke="black" points="98,-502 98,-525 132,-525 132,-502 98,-502"/>
|
||||
<text text-anchor="start" x="107" y="-509.8" font-family="arial" font-size="14.00">20</text>
|
||||
<polygon fill="none" stroke="black" points="0,-479 0,-502 98,-502 98,-479 0,-479"/>
|
||||
<text text-anchor="start" x="10" y="-486.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
|
||||
<polygon fill="none" stroke="black" points="98,-479 98,-502 132,-502 132,-479 98,-479"/>
|
||||
<text text-anchor="start" x="111" y="-486.8" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="none" stroke="black" points="0,-456 0,-479 98,-479 98,-456 0,-456"/>
|
||||
<text text-anchor="start" x="9.5" y="-463.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
|
||||
<polygon fill="none" stroke="black" points="98,-456 98,-479 132,-479 132,-456 98,-456"/>
|
||||
<text text-anchor="start" x="107" y="-463.8" font-family="arial" font-size="14.00">22</text>
|
||||
<polygon fill="none" stroke="black" points="0,-433 0,-456 98,-456 98,-433 0,-433"/>
|
||||
<text text-anchor="start" x="10" y="-440.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
|
||||
<polygon fill="none" stroke="black" points="98,-433 98,-456 132,-456 132,-433 98,-433"/>
|
||||
<text text-anchor="start" x="107.5" y="-440.8" font-family="arial" font-size="14.00">11</text>
|
||||
<polygon fill="none" stroke="black" points="0,-410 0,-433 98,-433 98,-410 0,-410"/>
|
||||
<text text-anchor="start" x="9.5" y="-417.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
|
||||
<polygon fill="none" stroke="black" points="98,-410 98,-433 132,-433 132,-410 98,-410"/>
|
||||
<text text-anchor="start" x="107" y="-417.8" font-family="arial" font-size="14.00">24</text>
|
||||
<polygon fill="none" stroke="black" points="0,-387 0,-410 98,-410 98,-387 0,-387"/>
|
||||
<text text-anchor="start" x="33.5" y="-394.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="98,-387 98,-410 132,-410 132,-387 98,-387"/>
|
||||
<text text-anchor="start" x="107" y="-394.8" font-family="arial" font-size="14.00">13</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="470,-772.5 300,-772.5 300,-348.5 470,-348.5 470,-772.5"/>
|
||||
<polygon fill="none" stroke="black" points="300,-749.5 300,-772.5 470,-772.5 470,-749.5 300,-749.5"/>
|
||||
<text text-anchor="start" x="374" y="-757.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="300,-726.5 300,-749.5 330,-749.5 330,-726.5 300,-726.5"/>
|
||||
<text text-anchor="start" x="304" y="-734.3" font-family="arial" font-size="14.00">12x</text>
|
||||
<polygon fill="none" stroke="black" points="330,-726.5 330,-749.5 397,-749.5 397,-726.5 330,-726.5"/>
|
||||
<text text-anchor="start" x="334" y="-734.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="397,-726.5 397,-749.5 427,-749.5 427,-726.5 397,-726.5"/>
|
||||
<text text-anchor="start" x="401" y="-734.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="427,-726.5 427,-749.5 470,-749.5 470,-726.5 427,-726.5"/>
|
||||
<text text-anchor="start" x="431" y="-734.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="383" y="-715.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="309" y="-698.3" font-family="arial" font-size="14.00">X1:14</text>
|
||||
<text text-anchor="start" x="370" y="-698.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="422.5" y="-698.3" font-family="arial" font-size="14.00">X2:z2</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="300,-686.5 300,-692.5 470,-692.5 470,-686.5 300,-686.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-687.5 469,-687.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-691.5 301,-691.5 "/>
|
||||
<text text-anchor="start" x="313" y="-673.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="372.5" y="-673.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="422" y="-673.3" font-family="arial" font-size="14.00">X2:d4</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="300,-661.5 300,-667.5 470,-667.5 470,-661.5 300,-661.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-662.5 469,-662.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-666.5 301,-666.5 "/>
|
||||
<text text-anchor="start" x="309" y="-648.3" font-family="arial" font-size="14.00">X1:16</text>
|
||||
<text text-anchor="start" x="371" y="-648.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="422.5" y="-648.3" font-family="arial" font-size="14.00">X2:z8</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="300,-636.5 300,-642.5 470,-642.5 470,-636.5 300,-636.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-637.5 469,-637.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-641.5 301,-641.5 "/>
|
||||
<text text-anchor="start" x="313" y="-623.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="372.5" y="-623.3" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="418.5" y="-623.3" font-family="arial" font-size="14.00">X2:d10</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="300,-611.5 300,-617.5 470,-617.5 470,-611.5 300,-611.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-612.5 469,-612.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-616.5 301,-616.5 "/>
|
||||
<text text-anchor="start" x="309" y="-598.3" font-family="arial" font-size="14.00">X1:18</text>
|
||||
<text text-anchor="start" x="371.5" y="-598.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<text text-anchor="start" x="418.5" y="-598.3" font-family="arial" font-size="14.00">X2:z14</text>
|
||||
<polygon fill="#999999" stroke="transparent" stroke-width="2" points="300,-586.5 300,-592.5 470,-592.5 470,-586.5 300,-586.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-587.5 469,-587.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-591.5 301,-591.5 "/>
|
||||
<text text-anchor="start" x="313" y="-573.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="372.5" y="-573.3" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="418.5" y="-573.3" font-family="arial" font-size="14.00">X2:d16</text>
|
||||
<polygon fill="#ff66cc" stroke="transparent" stroke-width="2" points="300,-561.5 300,-567.5 470,-567.5 470,-561.5 300,-561.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-562.5 469,-562.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-566.5 301,-566.5 "/>
|
||||
<text text-anchor="start" x="309" y="-548.3" font-family="arial" font-size="14.00">X1:20</text>
|
||||
<text text-anchor="start" x="372.5" y="-548.3" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="418.5" y="-548.3" font-family="arial" font-size="14.00">X2:z18</text>
|
||||
<polygon fill="#0066ff" stroke="transparent" stroke-width="2" points="300,-536.5 300,-542.5 470,-542.5 470,-536.5 300,-536.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-537.5 469,-537.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-541.5 301,-541.5 "/>
|
||||
<text text-anchor="start" x="313" y="-523.3" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="372" y="-523.3" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="418.5" y="-523.3" font-family="arial" font-size="14.00">X2:d20</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="300,-511.5 300,-517.5 470,-517.5 470,-511.5 300,-511.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-512.5 469,-512.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-516.5 301,-516.5 "/>
|
||||
<text text-anchor="start" x="309" y="-498.3" font-family="arial" font-size="14.00">X1:22</text>
|
||||
<text text-anchor="start" x="372.5" y="-498.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="418.5" y="-498.3" font-family="arial" font-size="14.00">X2:z24</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="300,-486.5 300,-492.5 470,-492.5 470,-486.5 300,-486.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-487.5 469,-487.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-491.5 301,-491.5 "/>
|
||||
<text text-anchor="start" x="313" y="-473.3" font-family="arial" font-size="14.00">X1:9</text>
|
||||
<text text-anchor="start" x="373" y="-473.3" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="418.5" y="-473.3" font-family="arial" font-size="14.00">X2:d26</text>
|
||||
<polygon fill="#8000ff" stroke="transparent" stroke-width="2" points="300,-461.5 300,-467.5 470,-467.5 470,-461.5 300,-461.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-462.5 469,-462.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-466.5 301,-466.5 "/>
|
||||
<text text-anchor="start" x="309" y="-448.3" font-family="arial" font-size="14.00">X1:24</text>
|
||||
<text text-anchor="start" x="370" y="-448.3" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="418.5" y="-448.3" font-family="arial" font-size="14.00">X2:z30</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="300,-436.5 300,-442.5 470,-442.5 470,-436.5 300,-436.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-437.5 469,-437.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-441.5 301,-441.5 "/>
|
||||
<text text-anchor="start" x="309.5" y="-423.3" font-family="arial" font-size="14.00">X1:11</text>
|
||||
<text text-anchor="start" x="372.5" y="-423.3" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="418.5" y="-423.3" font-family="arial" font-size="14.00">X2:d32</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="300,-411.5 300,-417.5 470,-417.5 470,-411.5 300,-411.5"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-412.5 469,-412.5 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="469,-416.5 301,-416.5 "/>
|
||||
<text text-anchor="start" x="325" y="-398.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="309" y="-379.3" font-family="arial" font-size="14.00">X1:13</text>
|
||||
<text text-anchor="start" x="363" y="-379.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="301,-368.5 469,-368.5 "/>
|
||||
<text text-anchor="start" x="325" y="-354.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="446,-796 276,-796 276,-324 446,-324 446,-796"/>
|
||||
<polygon fill="none" stroke="black" points="276,-773 276,-796 446,-796 446,-773 276,-773"/>
|
||||
<text text-anchor="start" x="350" y="-780.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="276,-750 276,-773 306,-773 306,-750 276,-750"/>
|
||||
<text text-anchor="start" x="280" y="-757.8" font-family="arial" font-size="14.00">12x</text>
|
||||
<polygon fill="none" stroke="black" points="306,-750 306,-773 373,-773 373,-750 306,-750"/>
|
||||
<text text-anchor="start" x="310" y="-757.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="373,-750 373,-773 403,-773 403,-750 373,-750"/>
|
||||
<text text-anchor="start" x="377" y="-757.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="403,-750 403,-773 446,-773 446,-750 403,-750"/>
|
||||
<text text-anchor="start" x="407" y="-757.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359" y="-738.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285" y="-721.8" font-family="arial" font-size="14.00">X1:14</text>
|
||||
<text text-anchor="start" x="346" y="-721.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="398.5" y="-721.8" font-family="arial" font-size="14.00">X2:z2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-714 276,-716 446,-716 446,-714 276,-714"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-712 276,-714 446,-714 446,-712 276,-712"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-710 276,-712 446,-712 446,-710 276,-710"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="276,-708 276,-710 446,-710 446,-708 276,-708"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-706 276,-708 446,-708 446,-706 276,-706"/>
|
||||
<text text-anchor="start" x="289" y="-692.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="348.5" y="-692.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="398" y="-692.8" font-family="arial" font-size="14.00">X2:d4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-685 276,-687 446,-687 446,-685 276,-685"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-683 276,-685 446,-685 446,-683 276,-683"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-681 276,-683 446,-683 446,-681 276,-681"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="276,-679 276,-681 446,-681 446,-679 276,-679"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-677 276,-679 446,-679 446,-677 276,-677"/>
|
||||
<text text-anchor="start" x="285" y="-663.8" font-family="arial" font-size="14.00">X1:16</text>
|
||||
<text text-anchor="start" x="347" y="-663.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="398.5" y="-663.8" font-family="arial" font-size="14.00">X2:z8</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-656 276,-658 446,-658 446,-656 276,-656"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-654 276,-656 446,-656 446,-654 276,-654"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-652 276,-654 446,-654 446,-652 276,-652"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="276,-650 276,-652 446,-652 446,-650 276,-650"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-648 276,-650 446,-650 446,-648 276,-648"/>
|
||||
<text text-anchor="start" x="289" y="-634.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="348.5" y="-634.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="394.5" y="-634.8" font-family="arial" font-size="14.00">X2:d10</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-627 276,-629 446,-629 446,-627 276,-627"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-625 276,-627 446,-627 446,-625 276,-625"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-623 276,-625 446,-625 446,-623 276,-623"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="276,-621 276,-623 446,-623 446,-621 276,-621"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-619 276,-621 446,-621 446,-619 276,-619"/>
|
||||
<text text-anchor="start" x="285" y="-605.8" font-family="arial" font-size="14.00">X1:18</text>
|
||||
<text text-anchor="start" x="347.5" y="-605.8" font-family="arial" font-size="14.00">GY</text>
|
||||
<text text-anchor="start" x="394.5" y="-605.8" font-family="arial" font-size="14.00">X2:z14</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-598 276,-600 446,-600 446,-598 276,-598"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-596 276,-598 446,-598 446,-596 276,-596"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-594 276,-596 446,-596 446,-594 276,-594"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-592 276,-594 446,-594 446,-592 276,-592"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-590 276,-592 446,-592 446,-590 276,-590"/>
|
||||
<text text-anchor="start" x="289" y="-576.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="348.5" y="-576.8" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="394.5" y="-576.8" font-family="arial" font-size="14.00">X2:d16</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-569 276,-571 446,-571 446,-569 276,-569"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-567 276,-569 446,-569 446,-567 276,-567"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-565 276,-567 446,-567 446,-565 276,-565"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-563 276,-565 446,-565 446,-563 276,-563"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-561 276,-563 446,-563 446,-561 276,-561"/>
|
||||
<text text-anchor="start" x="285" y="-547.8" font-family="arial" font-size="14.00">X1:20</text>
|
||||
<text text-anchor="start" x="348.5" y="-547.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="394.5" y="-547.8" font-family="arial" font-size="14.00">X2:z18</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-540 276,-542 446,-542 446,-540 276,-540"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-538 276,-540 446,-540 446,-538 276,-538"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-536 276,-538 446,-538 446,-536 276,-536"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-534 276,-536 446,-536 446,-534 276,-534"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-532 276,-534 446,-534 446,-532 276,-532"/>
|
||||
<text text-anchor="start" x="289" y="-518.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="348" y="-518.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="394.5" y="-518.8" font-family="arial" font-size="14.00">X2:d20</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-511 276,-513 446,-513 446,-511 276,-511"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-509 276,-511 446,-511 446,-509 276,-509"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-507 276,-509 446,-509 446,-507 276,-507"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-505 276,-507 446,-507 446,-505 276,-505"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-503 276,-505 446,-505 446,-503 276,-503"/>
|
||||
<text text-anchor="start" x="285" y="-489.8" font-family="arial" font-size="14.00">X1:22</text>
|
||||
<text text-anchor="start" x="348.5" y="-489.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="394.5" y="-489.8" font-family="arial" font-size="14.00">X2:z24</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-482 276,-484 446,-484 446,-482 276,-482"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-480 276,-482 446,-482 446,-480 276,-480"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-478 276,-480 446,-480 446,-478 276,-478"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-476 276,-478 446,-478 446,-476 276,-476"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-474 276,-476 446,-476 446,-474 276,-474"/>
|
||||
<text text-anchor="start" x="289" y="-460.8" font-family="arial" font-size="14.00">X1:9</text>
|
||||
<text text-anchor="start" x="349" y="-460.8" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="394.5" y="-460.8" font-family="arial" font-size="14.00">X2:d26</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-453 276,-455 446,-455 446,-453 276,-453"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-451 276,-453 446,-453 446,-451 276,-451"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-449 276,-451 446,-451 446,-449 276,-449"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="276,-447 276,-449 446,-449 446,-447 276,-447"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-445 276,-447 446,-447 446,-445 276,-445"/>
|
||||
<text text-anchor="start" x="285" y="-431.8" font-family="arial" font-size="14.00">X1:24</text>
|
||||
<text text-anchor="start" x="338.5" y="-431.8" font-family="arial" font-size="14.00">GYPK</text>
|
||||
<text text-anchor="start" x="394.5" y="-431.8" font-family="arial" font-size="14.00">X2:z30</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-424 276,-426 446,-426 446,-424 276,-424"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-422 276,-424 446,-424 446,-422 276,-422"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="276,-420 276,-422 446,-422 446,-420 276,-420"/>
|
||||
<polygon fill="#999999" stroke="transparent" points="276,-418 276,-420 446,-420 446,-418 276,-418"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-416 276,-418 446,-418 446,-416 276,-416"/>
|
||||
<text text-anchor="start" x="285.5" y="-402.8" font-family="arial" font-size="14.00">X1:11</text>
|
||||
<text text-anchor="start" x="338.5" y="-402.8" font-family="arial" font-size="14.00">RDBU</text>
|
||||
<text text-anchor="start" x="394.5" y="-402.8" font-family="arial" font-size="14.00">X2:d32</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-395 276,-397 446,-397 446,-395 276,-395"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-393 276,-395 446,-395 446,-393 276,-393"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="276,-391 276,-393 446,-393 446,-391 276,-391"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="276,-389 276,-391 446,-391 446,-389 276,-389"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="276,-387 276,-389 446,-389 446,-387 276,-387"/>
|
||||
<text text-anchor="start" x="301" y="-373.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285" y="-354.8" font-family="arial" font-size="14.00">X1:13</text>
|
||||
<text text-anchor="start" x="339" y="-354.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="277,-344 445,-344 "/>
|
||||
<text text-anchor="start" x="301" y="-329.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-662.5C220,-662.5 236,-662.5 300,-662.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M156,-664.5C220,-664.5 236,-664.5 300,-664.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-666.5C220,-666.5 236,-666.5 300,-666.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-671C197.69,-671.34 213.54,-678.34 276,-678"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-673C196.88,-673.17 212.73,-680.17 276,-680"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-675C196.08,-675 211.92,-682 276,-682"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-677C195.27,-676.83 211.12,-683.83 276,-684"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-679C194.46,-678.66 210.31,-685.66 276,-686"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-639.5C225.43,-641.13 234.5,-689.13 300,-687.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M156,-641.5C223.46,-641.5 232.54,-689.5 300,-689.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-643.5C221.5,-641.87 230.57,-689.87 300,-691.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-648C205.15,-651.62 210.82,-710.62 276,-707"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-650C203.15,-651.81 208.83,-710.81 276,-709"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-652C201.16,-652 206.84,-711 276,-711"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-654C199.17,-652.19 204.85,-711.19 276,-713"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-656C197.18,-652.38 202.85,-711.38 276,-715"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-616.5C219.54,-616.56 235.49,-612.56 300,-612.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M156,-618.5C220.02,-618.5 235.98,-614.5 300,-614.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-620.5C220.51,-620.44 236.46,-616.44 300,-616.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-625C194.84,-625.18 210.76,-620.18 276,-620"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-627C195.44,-627.09 211.36,-622.09 276,-622"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-629C196.04,-629 211.96,-624 276,-624"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-631C196.64,-630.91 212.56,-625.91 276,-626"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-633C197.24,-632.82 213.16,-627.82 276,-628"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-593.5C224.87,-595.05 235.03,-639.05 300,-637.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M156,-595.5C222.92,-595.5 233.08,-639.5 300,-639.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-597.5C220.97,-595.95 231.13,-639.95 300,-641.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-602C203.25,-605.22 212.6,-652.22 276,-649"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-604C201.28,-605.61 210.64,-652.61 276,-651"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-606C199.32,-606 208.68,-653 276,-653"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-608C197.36,-606.39 206.72,-653.39 276,-655"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-610C195.4,-606.78 204.75,-653.78 276,-657"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-570.5C219.2,-570.72 235,-562.72 300,-562.5"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M156,-572.5C220.1,-572.5 235.9,-564.5 300,-564.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-574.5C221,-574.28 236.8,-566.28 300,-566.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-579C193.45,-580.34 208.57,-563.34 276,-562"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-581C194.95,-581.67 210.06,-564.67 276,-564"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-583C196.44,-583 211.56,-566 276,-566"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-585C197.94,-584.33 213.05,-567.33 276,-568"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-587C199.43,-585.66 214.55,-568.66 276,-570"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-547.5C224.35,-548.96 235.5,-588.96 300,-587.5"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M156,-549.5C222.42,-549.5 233.58,-589.5 300,-589.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-551.5C220.5,-550.04 231.65,-590.04 300,-591.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-555C201.76,-557.73 213.82,-593.73 276,-591"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-557C199.87,-558.36 211.93,-594.36 276,-593"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-559C197.97,-559 210.03,-595 276,-595"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-561C196.07,-559.64 208.13,-595.64 276,-597"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-563C194.18,-560.27 206.24,-596.27 276,-599"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-524.5C219,-524.92 234.56,-512.92 300,-512.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M156,-526.5C220.22,-526.5 235.78,-514.5 300,-514.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-528.5C221.44,-528.08 237,-516.08 300,-516.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-532C193.6,-534.25 207.2,-506.25 276,-504"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-534C195.4,-535.13 209,-507.13 276,-506"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-536C197.2,-536 210.8,-508 276,-508"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-538C199,-536.87 212.6,-508.87 276,-510"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-540C200.8,-537.75 214.4,-509.75 276,-512"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-501.5C223.87,-502.86 235.93,-538.86 300,-537.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M156,-503.5C221.97,-503.5 234.03,-539.5 300,-539.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-505.5C220.07,-504.14 232.13,-540.14 300,-541.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-509C200.32,-510.96 214.56,-534.96 276,-533"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-511C198.6,-511.98 212.84,-535.98 276,-535"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-513C196.88,-513 211.12,-537 276,-537"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-515C195.16,-514.02 209.4,-538.02 276,-539"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-517C193.44,-515.04 207.68,-539.04 276,-541"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-478.5C218.94,-479.12 234.16,-463.12 300,-462.5"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M156,-480.5C220.39,-480.5 235.61,-464.5 300,-464.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-482.5C221.84,-481.88 237.06,-465.88 300,-466.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-486C194.57,-488.93 205.72,-448.93 276,-446"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-488C196.5,-489.46 207.65,-449.46 276,-448"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-490C198.42,-490 209.58,-450 276,-450"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-492C200.35,-490.54 211.5,-450.54 276,-452"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-494C202.28,-491.07 213.43,-451.07 276,-454"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-455.5C223.42,-456.75 236.29,-488.75 300,-487.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-457.5C221.56,-457.5 234.44,-489.5 300,-489.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-459.5C219.71,-458.25 232.58,-490.25 300,-491.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-463C198.66,-463.83 214.22,-475.83 276,-475"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-465C197.44,-465.42 213,-477.42 276,-477"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-467C196.22,-467 211.78,-479 276,-479"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-469C195,-468.58 210.56,-480.58 276,-481"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-471C193.78,-470.17 209.34,-482.17 276,-483"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-432.5C219.01,-433.31 233.78,-413.31 300,-412.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M156,-434.5C220.61,-434.5 235.39,-414.5 300,-414.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-436.5C222.22,-435.69 236.99,-415.69 300,-416.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-440C196.09,-443.4 204,-391.4 276,-388"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-442C198.07,-443.7 205.98,-391.7 276,-390"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-444C200.05,-444 207.95,-392 276,-392"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-446C202.02,-444.3 209.93,-392.3 276,-394"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-448C204,-444.6 211.91,-392.6 276,-396"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-409.5C223,-410.63 236.6,-438.63 300,-437.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M156,-411.5C221.2,-411.5 234.8,-439.5 300,-439.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-413.5C219.4,-412.37 233,-440.37 300,-441.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-417C196,-417 212,-417 276,-417"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-419C196,-419 212,-419 276,-419"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-421C196,-421 212,-421 276,-421"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-423C196,-423 212,-423 276,-423"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-425C196,-425 212,-425 276,-425"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M156,-388.5C220.5,-388.5 235.5,-370.5 300,-370.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-396C198.07,-397.7 205.98,-345.7 276,-344"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M132,-398C200.05,-398 207.95,-346 276,-346"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-400C202.02,-398.3 209.93,-346.3 276,-348"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="614,-0.5 614,-1150.5 766,-1150.5 766,-0.5 614,-0.5"/>
|
||||
<text text-anchor="middle" x="690" y="-1135.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1127.5 766,-1127.5 "/>
|
||||
<text text-anchor="middle" x="634" y="-1112.3" font-family="arial" font-size="14.00">F48</text>
|
||||
<polyline fill="none" stroke="black" points="654,-1104.5 654,-1127.5 "/>
|
||||
<text text-anchor="middle" x="683" y="-1112.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="712,-1104.5 712,-1127.5 "/>
|
||||
<text text-anchor="middle" x="739" y="-1112.3" font-family="arial" font-size="14.00">48-pin</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1104.5 766,-1104.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1089.3" font-family="arial" font-size="14.00">z2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1081.5 766,-1081.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1066.3" font-family="arial" font-size="14.00">b2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1058.5 766,-1058.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1043.3" font-family="arial" font-size="14.00">d2</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1035.5 766,-1035.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-1020.3" font-family="arial" font-size="14.00">z4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-1012.5 766,-1012.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-997.3" font-family="arial" font-size="14.00">b4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-989.5 766,-989.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-974.3" font-family="arial" font-size="14.00">d4</text>
|
||||
<polyline fill="none" stroke="black" points="614,-966.5 766,-966.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-951.3" font-family="arial" font-size="14.00">z6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-943.5 766,-943.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-928.3" font-family="arial" font-size="14.00">b6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-920.5 766,-920.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-905.3" font-family="arial" font-size="14.00">d6</text>
|
||||
<polyline fill="none" stroke="black" points="614,-897.5 766,-897.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-882.3" font-family="arial" font-size="14.00">z8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-874.5 766,-874.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-859.3" font-family="arial" font-size="14.00">b8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-851.5 766,-851.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-836.3" font-family="arial" font-size="14.00">d8</text>
|
||||
<polyline fill="none" stroke="black" points="614,-828.5 766,-828.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-813.3" font-family="arial" font-size="14.00">z10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-805.5 766,-805.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-790.3" font-family="arial" font-size="14.00">b10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-782.5 766,-782.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-767.3" font-family="arial" font-size="14.00">d10</text>
|
||||
<polyline fill="none" stroke="black" points="614,-759.5 766,-759.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-744.3" font-family="arial" font-size="14.00">z12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-736.5 766,-736.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-721.3" font-family="arial" font-size="14.00">b12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-713.5 766,-713.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-698.3" font-family="arial" font-size="14.00">d12</text>
|
||||
<polyline fill="none" stroke="black" points="614,-690.5 766,-690.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-675.3" font-family="arial" font-size="14.00">z14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-667.5 766,-667.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-652.3" font-family="arial" font-size="14.00">b14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-644.5 766,-644.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-629.3" font-family="arial" font-size="14.00">d14</text>
|
||||
<polyline fill="none" stroke="black" points="614,-621.5 766,-621.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-606.3" font-family="arial" font-size="14.00">z16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-598.5 766,-598.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-583.3" font-family="arial" font-size="14.00">b16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-575.5 766,-575.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-560.3" font-family="arial" font-size="14.00">d16</text>
|
||||
<polyline fill="none" stroke="black" points="614,-552.5 766,-552.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-537.3" font-family="arial" font-size="14.00">z18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-529.5 766,-529.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-514.3" font-family="arial" font-size="14.00">b18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-506.5 766,-506.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-491.3" font-family="arial" font-size="14.00">d18</text>
|
||||
<polyline fill="none" stroke="black" points="614,-483.5 766,-483.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-468.3" font-family="arial" font-size="14.00">z20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-460.5 766,-460.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-445.3" font-family="arial" font-size="14.00">b20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-437.5 766,-437.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-422.3" font-family="arial" font-size="14.00">d20</text>
|
||||
<polyline fill="none" stroke="black" points="614,-414.5 766,-414.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-399.3" font-family="arial" font-size="14.00">z22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-391.5 766,-391.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-376.3" font-family="arial" font-size="14.00">b22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-368.5 766,-368.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-353.3" font-family="arial" font-size="14.00">d22</text>
|
||||
<polyline fill="none" stroke="black" points="614,-345.5 766,-345.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-330.3" font-family="arial" font-size="14.00">z24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-322.5 766,-322.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-307.3" font-family="arial" font-size="14.00">b24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-299.5 766,-299.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-284.3" font-family="arial" font-size="14.00">d24</text>
|
||||
<polyline fill="none" stroke="black" points="614,-276.5 766,-276.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-261.3" font-family="arial" font-size="14.00">z26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-253.5 766,-253.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-238.3" font-family="arial" font-size="14.00">b26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-230.5 766,-230.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-215.3" font-family="arial" font-size="14.00">d26</text>
|
||||
<polyline fill="none" stroke="black" points="614,-207.5 766,-207.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-192.3" font-family="arial" font-size="14.00">z28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-184.5 766,-184.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-169.3" font-family="arial" font-size="14.00">b28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-161.5 766,-161.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-146.3" font-family="arial" font-size="14.00">d28</text>
|
||||
<polyline fill="none" stroke="black" points="614,-138.5 766,-138.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-123.3" font-family="arial" font-size="14.00">z30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-115.5 766,-115.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-100.3" font-family="arial" font-size="14.00">b30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-92.5 766,-92.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-77.3" font-family="arial" font-size="14.00">d30</text>
|
||||
<polyline fill="none" stroke="black" points="614,-69.5 766,-69.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-54.3" font-family="arial" font-size="14.00">z32</text>
|
||||
<polyline fill="none" stroke="black" points="614,-46.5 766,-46.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-31.3" font-family="arial" font-size="14.00">b32</text>
|
||||
<polyline fill="none" stroke="black" points="614,-23.5 766,-23.5 "/>
|
||||
<text text-anchor="middle" x="690" y="-8.3" font-family="arial" font-size="14.00">d32</text>
|
||||
<polygon fill="white" stroke="transparent" points="718,-1150 590,-1150 590,0 718,0 718,-1150"/>
|
||||
<polygon fill="none" stroke="black" points="590,-1127 590,-1150 718,-1150 718,-1127 590,-1127"/>
|
||||
<text text-anchor="start" x="645.5" y="-1134.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1104 590,-1127 622,-1127 622,-1104 590,-1104"/>
|
||||
<text text-anchor="start" x="594" y="-1111.8" font-family="arial" font-size="14.00">F48</text>
|
||||
<polygon fill="none" stroke="black" points="622,-1104 622,-1127 672,-1127 672,-1104 622,-1104"/>
|
||||
<text text-anchor="start" x="626" y="-1111.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="672,-1104 672,-1127 718,-1127 718,-1104 672,-1104"/>
|
||||
<text text-anchor="start" x="676" y="-1111.8" font-family="arial" font-size="14.00">48-pin</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1081 590,-1104 718,-1104 718,-1081 590,-1081"/>
|
||||
<text text-anchor="start" x="646.5" y="-1088.8" font-family="arial" font-size="14.00">z2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1058 590,-1081 718,-1081 718,-1058 590,-1058"/>
|
||||
<text text-anchor="start" x="646" y="-1065.8" font-family="arial" font-size="14.00">b2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1035 590,-1058 718,-1058 718,-1035 590,-1035"/>
|
||||
<text text-anchor="start" x="646" y="-1042.8" font-family="arial" font-size="14.00">d2</text>
|
||||
<polygon fill="none" stroke="black" points="590,-1012 590,-1035 718,-1035 718,-1012 590,-1012"/>
|
||||
<text text-anchor="start" x="646.5" y="-1019.8" font-family="arial" font-size="14.00">z4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-989 590,-1012 718,-1012 718,-989 590,-989"/>
|
||||
<text text-anchor="start" x="646" y="-996.8" font-family="arial" font-size="14.00">b4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-966 590,-989 718,-989 718,-966 590,-966"/>
|
||||
<text text-anchor="start" x="646" y="-973.8" font-family="arial" font-size="14.00">d4</text>
|
||||
<polygon fill="none" stroke="black" points="590,-943 590,-966 718,-966 718,-943 590,-943"/>
|
||||
<text text-anchor="start" x="646.5" y="-950.8" font-family="arial" font-size="14.00">z6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-920 590,-943 718,-943 718,-920 590,-920"/>
|
||||
<text text-anchor="start" x="646" y="-927.8" font-family="arial" font-size="14.00">b6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-897 590,-920 718,-920 718,-897 590,-897"/>
|
||||
<text text-anchor="start" x="646" y="-904.8" font-family="arial" font-size="14.00">d6</text>
|
||||
<polygon fill="none" stroke="black" points="590,-874 590,-897 718,-897 718,-874 590,-874"/>
|
||||
<text text-anchor="start" x="646.5" y="-881.8" font-family="arial" font-size="14.00">z8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-851 590,-874 718,-874 718,-851 590,-851"/>
|
||||
<text text-anchor="start" x="646" y="-858.8" font-family="arial" font-size="14.00">b8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-828 590,-851 718,-851 718,-828 590,-828"/>
|
||||
<text text-anchor="start" x="646" y="-835.8" font-family="arial" font-size="14.00">d8</text>
|
||||
<polygon fill="none" stroke="black" points="590,-805 590,-828 718,-828 718,-805 590,-805"/>
|
||||
<text text-anchor="start" x="643" y="-812.8" font-family="arial" font-size="14.00">z10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-782 590,-805 718,-805 718,-782 590,-782"/>
|
||||
<text text-anchor="start" x="642.5" y="-789.8" font-family="arial" font-size="14.00">b10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-759 590,-782 718,-782 718,-759 590,-759"/>
|
||||
<text text-anchor="start" x="642.5" y="-766.8" font-family="arial" font-size="14.00">d10</text>
|
||||
<polygon fill="none" stroke="black" points="590,-736 590,-759 718,-759 718,-736 590,-736"/>
|
||||
<text text-anchor="start" x="643" y="-743.8" font-family="arial" font-size="14.00">z12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-713 590,-736 718,-736 718,-713 590,-713"/>
|
||||
<text text-anchor="start" x="642.5" y="-720.8" font-family="arial" font-size="14.00">b12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-690 590,-713 718,-713 718,-690 590,-690"/>
|
||||
<text text-anchor="start" x="642.5" y="-697.8" font-family="arial" font-size="14.00">d12</text>
|
||||
<polygon fill="none" stroke="black" points="590,-667 590,-690 718,-690 718,-667 590,-667"/>
|
||||
<text text-anchor="start" x="643" y="-674.8" font-family="arial" font-size="14.00">z14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-644 590,-667 718,-667 718,-644 590,-644"/>
|
||||
<text text-anchor="start" x="642.5" y="-651.8" font-family="arial" font-size="14.00">b14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-621 590,-644 718,-644 718,-621 590,-621"/>
|
||||
<text text-anchor="start" x="642.5" y="-628.8" font-family="arial" font-size="14.00">d14</text>
|
||||
<polygon fill="none" stroke="black" points="590,-598 590,-621 718,-621 718,-598 590,-598"/>
|
||||
<text text-anchor="start" x="643" y="-605.8" font-family="arial" font-size="14.00">z16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-575 590,-598 718,-598 718,-575 590,-575"/>
|
||||
<text text-anchor="start" x="642.5" y="-582.8" font-family="arial" font-size="14.00">b16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-552 590,-575 718,-575 718,-552 590,-552"/>
|
||||
<text text-anchor="start" x="642.5" y="-559.8" font-family="arial" font-size="14.00">d16</text>
|
||||
<polygon fill="none" stroke="black" points="590,-529 590,-552 718,-552 718,-529 590,-529"/>
|
||||
<text text-anchor="start" x="643" y="-536.8" font-family="arial" font-size="14.00">z18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-506 590,-529 718,-529 718,-506 590,-506"/>
|
||||
<text text-anchor="start" x="642.5" y="-513.8" font-family="arial" font-size="14.00">b18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-483 590,-506 718,-506 718,-483 590,-483"/>
|
||||
<text text-anchor="start" x="642.5" y="-490.8" font-family="arial" font-size="14.00">d18</text>
|
||||
<polygon fill="none" stroke="black" points="590,-460 590,-483 718,-483 718,-460 590,-460"/>
|
||||
<text text-anchor="start" x="643" y="-467.8" font-family="arial" font-size="14.00">z20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-437 590,-460 718,-460 718,-437 590,-437"/>
|
||||
<text text-anchor="start" x="642.5" y="-444.8" font-family="arial" font-size="14.00">b20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-414 590,-437 718,-437 718,-414 590,-414"/>
|
||||
<text text-anchor="start" x="642.5" y="-421.8" font-family="arial" font-size="14.00">d20</text>
|
||||
<polygon fill="none" stroke="black" points="590,-391 590,-414 718,-414 718,-391 590,-391"/>
|
||||
<text text-anchor="start" x="643" y="-398.8" font-family="arial" font-size="14.00">z22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-368 590,-391 718,-391 718,-368 590,-368"/>
|
||||
<text text-anchor="start" x="642.5" y="-375.8" font-family="arial" font-size="14.00">b22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-345 590,-368 718,-368 718,-345 590,-345"/>
|
||||
<text text-anchor="start" x="642.5" y="-352.8" font-family="arial" font-size="14.00">d22</text>
|
||||
<polygon fill="none" stroke="black" points="590,-322 590,-345 718,-345 718,-322 590,-322"/>
|
||||
<text text-anchor="start" x="643" y="-329.8" font-family="arial" font-size="14.00">z24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-299 590,-322 718,-322 718,-299 590,-299"/>
|
||||
<text text-anchor="start" x="642.5" y="-306.8" font-family="arial" font-size="14.00">b24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-276 590,-299 718,-299 718,-276 590,-276"/>
|
||||
<text text-anchor="start" x="642.5" y="-283.8" font-family="arial" font-size="14.00">d24</text>
|
||||
<polygon fill="none" stroke="black" points="590,-253 590,-276 718,-276 718,-253 590,-253"/>
|
||||
<text text-anchor="start" x="643" y="-260.8" font-family="arial" font-size="14.00">z26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-230 590,-253 718,-253 718,-230 590,-230"/>
|
||||
<text text-anchor="start" x="642.5" y="-237.8" font-family="arial" font-size="14.00">b26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-207 590,-230 718,-230 718,-207 590,-207"/>
|
||||
<text text-anchor="start" x="642.5" y="-214.8" font-family="arial" font-size="14.00">d26</text>
|
||||
<polygon fill="none" stroke="black" points="590,-184 590,-207 718,-207 718,-184 590,-184"/>
|
||||
<text text-anchor="start" x="643" y="-191.8" font-family="arial" font-size="14.00">z28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-161 590,-184 718,-184 718,-161 590,-161"/>
|
||||
<text text-anchor="start" x="642.5" y="-168.8" font-family="arial" font-size="14.00">b28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-138 590,-161 718,-161 718,-138 590,-138"/>
|
||||
<text text-anchor="start" x="642.5" y="-145.8" font-family="arial" font-size="14.00">d28</text>
|
||||
<polygon fill="none" stroke="black" points="590,-115 590,-138 718,-138 718,-115 590,-115"/>
|
||||
<text text-anchor="start" x="643" y="-122.8" font-family="arial" font-size="14.00">z30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-92 590,-115 718,-115 718,-92 590,-92"/>
|
||||
<text text-anchor="start" x="642.5" y="-99.8" font-family="arial" font-size="14.00">b30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-69 590,-92 718,-92 718,-69 590,-69"/>
|
||||
<text text-anchor="start" x="642.5" y="-76.8" font-family="arial" font-size="14.00">d30</text>
|
||||
<polygon fill="none" stroke="black" points="590,-46 590,-69 718,-69 718,-46 590,-46"/>
|
||||
<text text-anchor="start" x="643" y="-53.8" font-family="arial" font-size="14.00">z32</text>
|
||||
<polygon fill="none" stroke="black" points="590,-23 590,-46 718,-46 718,-23 590,-23"/>
|
||||
<text text-anchor="start" x="642.5" y="-30.8" font-family="arial" font-size="14.00">b32</text>
|
||||
<polygon fill="none" stroke="black" points="590,0 590,-23 718,-23 718,0 590,0"/>
|
||||
<text text-anchor="start" x="642.5" y="-7.8" font-family="arial" font-size="14.00">d32</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-662.5C625.31,-665.42 462.24,-979.42 614,-976.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M470,-664.5C623.53,-664.5 460.47,-978.5 614,-978.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-666.5C621.76,-663.58 458.69,-977.58 614,-980.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-678C595.87,-683.79 447.28,-979.79 590,-974"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-680C594.08,-682.9 445.49,-978.9 590,-976"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-682C592.3,-682 443.7,-978 590,-978"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M446,-684C590.51,-681.1 441.92,-977.1 590,-980"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-686C588.72,-680.21 440.13,-976.21 590,-982"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-687.5C662.35,-690.51 425.1,-1094.51 614,-1091.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M470,-689.5C660.62,-689.5 423.38,-1093.5 614,-1093.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-691.5C658.9,-688.49 421.65,-1092.49 614,-1095.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-707C630.91,-712.99 412.03,-1094.99 590,-1089"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-709C629.18,-711.99 410.3,-1093.99 590,-1091"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-711C627.44,-711 408.56,-1093 590,-1093"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M446,-713C625.7,-710.01 406.82,-1092.01 590,-1095"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-715C623.97,-709.01 405.09,-1091.01 590,-1097"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-612.5C566.6,-615.06 521.24,-772.06 614,-769.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M470,-614.5C564.68,-614.5 519.32,-771.5 614,-771.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-616.5C562.76,-613.94 517.4,-770.94 614,-773.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-620C541.32,-625.02 502.41,-772.02 590,-767"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-622C539.39,-624.51 500.48,-771.51 590,-769"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-624C537.46,-624 498.54,-771 590,-771"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M446,-626C535.52,-623.49 496.61,-770.49 590,-773"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-628C533.59,-622.98 494.68,-769.98 590,-775"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-637.5C598.9,-640.31 488.76,-887.31 614,-884.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M470,-639.5C597.07,-639.5 486.93,-886.5 614,-886.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-641.5C595.24,-638.69 485.1,-885.69 614,-888.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-649C571.42,-654.57 471.94,-887.57 590,-882"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-651C569.58,-653.79 470.1,-886.79 590,-884"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-653C567.74,-653 468.26,-886 590,-886"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M446,-655C565.9,-652.21 466.42,-885.21 590,-888"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-657C564.06,-651.43 464.58,-884.43 590,-890"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-562.5C533.88,-562.5 549.87,-561.5 614,-561.5"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M470,-564.5C534,-564.5 550,-563.5 614,-563.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-566.5C534.13,-566.5 550.12,-565.5 614,-565.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-562C509.28,-562.07 525.25,-559.07 590,-559"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-564C509.64,-564.03 525.62,-561.03 590,-561"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-566C510.01,-566 525.99,-563 590,-563"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-568C510.38,-567.97 526.36,-564.97 590,-565"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-570C510.75,-569.93 526.72,-566.93 590,-567"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-587.5C547.47,-589.65 540.52,-679.65 614,-677.5"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M470,-589.5C545.47,-589.5 538.53,-679.5 614,-679.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-591.5C543.48,-589.35 536.53,-679.35 614,-681.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-591C524.09,-595.2 519.9,-679.2 590,-675"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-593C522.09,-595.1 517.9,-679.1 590,-677"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-595C520.09,-595 515.91,-679 590,-679"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-597C518.1,-594.9 513.91,-678.9 590,-681"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-599C516.1,-594.8 511.91,-678.8 590,-683"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-512.5C543.24,-514.65 536.77,-425.65 614,-423.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M470,-514.5C545.24,-514.5 538.76,-425.5 614,-425.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-516.5C547.23,-514.35 540.76,-425.35 614,-427.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-504C515.87,-508.18 512.13,-425.18 590,-421"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-506C517.87,-508.09 514.13,-425.09 590,-423"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-508C519.87,-508 516.13,-425 590,-425"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-510C521.87,-507.91 518.13,-424.91 590,-427"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-512C523.87,-507.82 520.13,-424.82 590,-429"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-537.5C534.13,-537.5 550.12,-538.5 614,-538.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M470,-539.5C534,-539.5 550,-540.5 614,-540.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-541.5C533.88,-541.5 549.87,-542.5 614,-542.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-533C510.75,-533.07 526.72,-536.07 590,-536"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-535C510.38,-535.03 526.36,-538.03 590,-538"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-537C510.01,-537 525.99,-540 590,-540"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-539C509.64,-538.97 525.62,-541.97 590,-542"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-541C509.28,-540.93 525.25,-543.93 590,-544"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-462.5C594.86,-465.31 485.48,-219.31 614,-216.5"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M470,-464.5C596.69,-464.5 487.31,-218.5 614,-218.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-466.5C598.52,-463.69 489.14,-217.69 614,-220.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-446C563.68,-451.57 464.96,-219.57 590,-214"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-448C565.52,-450.78 466.8,-218.78 590,-216"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-450C567.36,-450 468.64,-218 590,-218"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M446,-452C569.2,-449.22 470.48,-217.22 590,-220"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-454C571.04,-448.43 472.32,-216.43 590,-222"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-487.5C562.43,-490.05 517.72,-334.05 614,-331.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-489.5C564.36,-489.5 519.64,-333.5 614,-333.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-491.5C566.28,-488.95 521.57,-332.95 614,-335.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-475C533.27,-480.01 494.99,-334.01 590,-329"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-477C535.21,-479.51 496.93,-333.51 590,-331"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-479C537.14,-479 498.86,-333 590,-333"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-481C539.07,-478.49 500.79,-332.49 590,-335"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-483C541.01,-477.99 502.73,-331.99 590,-337"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-412.5C658.48,-415.51 422.07,-12.51 614,-9.5"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M470,-414.5C660.2,-414.5 423.8,-11.5 614,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-416.5C661.93,-413.49 425.52,-10.49 614,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-388C623.55,-393.99 405.5,-12.99 590,-7"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-390C625.29,-392.99 407.24,-11.99 590,-9"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M446,-392C627.02,-392 408.98,-11 590,-11"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M446,-394C628.76,-391.01 410.71,-10.01 590,-13"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-396C630.5,-390.01 412.45,-9.01 590,-15"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-437.5C621.35,-440.42 459.1,-127.42 614,-124.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M470,-439.5C623.13,-439.5 460.87,-126.5 614,-126.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M470,-441.5C624.9,-438.58 462.65,-125.58 614,-128.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-417C588.32,-422.79 440.53,-127.79 590,-122"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-419C590.11,-421.9 442.31,-126.9 590,-124"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M446,-421C591.9,-421 444.1,-126 590,-126"/>
|
||||
<path fill="none" stroke="#999999" stroke-width="2" d="M446,-423C593.69,-420.1 445.89,-125.1 590,-128"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M446,-425C595.47,-419.21 447.68,-124.21 590,-130"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 42 KiB |
@ -5,13 +5,13 @@ connectors:
|
||||
type: D-Sub
|
||||
subtype: male
|
||||
pincount: 25
|
||||
pinnumbers: [1,14,3,16,5,18,7,20,9,22,11,24,13]
|
||||
pinout: [ SENSE_P_1, SENSE_N_1, SENSE_P_2, SENSE_N_2, SENSE_P_3, SENSE_N_3, SENSE_P_4,SENSE_N_4, SENSE_P_5, SENSE_N_5, SENSE_P_6, SENSE_N_6, GND ]
|
||||
pins: [1,14,3,16,5,18,7,20,9,22,11,24,13]
|
||||
pinlabels: [ SENSE_P_1, SENSE_N_1, SENSE_P_2, SENSE_N_2, SENSE_P_3, SENSE_N_3, SENSE_P_4,SENSE_N_4, SENSE_P_5, SENSE_N_5, SENSE_P_6, SENSE_N_6, GND ]
|
||||
X2:
|
||||
type: F48
|
||||
subtype: female
|
||||
pincount: 48
|
||||
pinnumbers: [ z2,b2,d2,z4,b4,d4,z6,b6,d6,z8,b8,d8,z10,b10,d10,z12,b12,d12,z14,b14,d14,z16,b16,d16,z18,b18,d18,z20,b20,d20,z22,b22,d22,z24,b24,d24,z26,b26,d26,z28,b28,d28,z30,b30,d30,z32,b32,d32 ]
|
||||
pins: [ z2,b2,d2,z4,b4,d4,z6,b6,d6,z8,b8,d8,z10,b10,d10,z12,b12,d12,z14,b14,d14,z16,b16,d16,z18,b18,d18,z20,b20,d20,z22,b22,d22,z24,b24,d24,z26,b26,d26,z28,b28,d28,z30,b30,d30,z32,b32,d32 ]
|
||||
|
||||
cables:
|
||||
W1:
|
||||
|
||||
3
examples/ex10.bom.tsv
Normal file
@ -0,0 +1,3 @@
|
||||
Item Qty Unit Designators
|
||||
Connector, Stewart Connector SS-37000-002, male, 8 pins 2 X1, X2
|
||||
Cable, CAT5e, 8 x 24 AWG 1 m W1
|
||||
|
34
examples/ex10.gv
Normal file
327
examples/ex10.html
Normal file
@ -0,0 +1,327 @@
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1039pt" height="320pt"
|
||||
viewBox="0.00 0.00 1039.00 320.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 316)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-316 1035,-316 1035,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="transparent" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
|
||||
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
|
||||
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
|
||||
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
|
||||
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
|
||||
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
|
||||
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
|
||||
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
|
||||
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
|
||||
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
|
||||
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
|
||||
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
|
||||
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
|
||||
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
|
||||
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
|
||||
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
|
||||
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
|
||||
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
|
||||
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
|
||||
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="598,-312 433,-312 433,0 598,0 598,-312"/>
|
||||
<polygon fill="none" stroke="black" points="433.5,-289 433.5,-312 598.5,-312 598.5,-289 433.5,-289"/>
|
||||
<text text-anchor="start" x="505" y="-296.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-266 433.5,-289 483.5,-289 483.5,-266 433.5,-266"/>
|
||||
<text text-anchor="start" x="437.5" y="-273.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-266 483.5,-289 506.5,-289 506.5,-266 483.5,-266"/>
|
||||
<text text-anchor="start" x="487.5" y="-273.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="506.5,-266 506.5,-289 566.5,-289 566.5,-266 506.5,-266"/>
|
||||
<text text-anchor="start" x="510.5" y="-273.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="566.5,-266 566.5,-289 598.5,-289 598.5,-266 566.5,-266"/>
|
||||
<text text-anchor="start" x="570.5" y="-273.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="514" y="-254.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="444" y="-237.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="493.5" y="-237.8" font-family="arial" font-size="14.00">WHGN</text>
|
||||
<text text-anchor="start" x="560" y="-237.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-230 433.5,-232 598.5,-232 598.5,-230 433.5,-230"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-228 433.5,-230 598.5,-230 598.5,-228 433.5,-228"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-226 433.5,-228 598.5,-228 598.5,-226 433.5,-226"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-224 433.5,-226 598.5,-226 598.5,-224 433.5,-224"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-222 433.5,-224 598.5,-224 598.5,-222 433.5,-222"/>
|
||||
<text text-anchor="start" x="444" y="-208.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="505" y="-208.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="560" y="-208.8" font-family="arial" font-size="14.00">X2:6</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-201 433.5,-203 598.5,-203 598.5,-201 433.5,-201"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-199 433.5,-201 598.5,-201 598.5,-199 433.5,-199"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-197 433.5,-199 598.5,-199 598.5,-197 433.5,-197"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-195 433.5,-197 598.5,-197 598.5,-195 433.5,-195"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-193 433.5,-195 598.5,-195 598.5,-193 433.5,-193"/>
|
||||
<text text-anchor="start" x="444" y="-179.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="493" y="-179.8" font-family="arial" font-size="14.00">WHOG</text>
|
||||
<text text-anchor="start" x="560" y="-179.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-172 433.5,-174 598.5,-174 598.5,-172 433.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-170 433.5,-172 598.5,-172 598.5,-170 433.5,-170"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-168 433.5,-170 598.5,-170 598.5,-168 433.5,-168"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-166 433.5,-168 598.5,-168 598.5,-166 433.5,-166"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-164 433.5,-166 598.5,-166 598.5,-164 433.5,-164"/>
|
||||
<text text-anchor="start" x="444" y="-150.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="506.5" y="-150.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="560" y="-150.8" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-143 433.5,-145 598.5,-145 598.5,-143 433.5,-143"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-141 433.5,-143 598.5,-143 598.5,-141 433.5,-141"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-139 433.5,-141 598.5,-141 598.5,-139 433.5,-139"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-137 433.5,-139 598.5,-139 598.5,-137 433.5,-137"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-135 433.5,-137 598.5,-137 598.5,-135 433.5,-135"/>
|
||||
<text text-anchor="start" x="444" y="-121.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="494.5" y="-121.8" font-family="arial" font-size="14.00">WHBU</text>
|
||||
<text text-anchor="start" x="560" y="-121.8" font-family="arial" font-size="14.00">X2:8</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-114 433.5,-116 598.5,-116 598.5,-114 433.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-112 433.5,-114 598.5,-114 598.5,-112 433.5,-112"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-110 433.5,-112 598.5,-112 598.5,-110 433.5,-110"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-108 433.5,-110 598.5,-110 598.5,-108 433.5,-108"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-106 433.5,-108 598.5,-108 598.5,-106 433.5,-106"/>
|
||||
<text text-anchor="start" x="444" y="-92.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="504.5" y="-92.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="560" y="-92.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-85 433.5,-87 598.5,-87 598.5,-85 433.5,-85"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-83 433.5,-85 598.5,-85 598.5,-83 433.5,-83"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-81 433.5,-83 598.5,-83 598.5,-81 433.5,-81"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-79 433.5,-81 598.5,-81 598.5,-79 433.5,-79"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-77 433.5,-79 598.5,-79 598.5,-77 433.5,-77"/>
|
||||
<text text-anchor="start" x="444" y="-63.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="494.5" y="-63.8" font-family="arial" font-size="14.00">WHBN</text>
|
||||
<text text-anchor="start" x="560" y="-63.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-56 433.5,-58 598.5,-58 598.5,-56 433.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-54 433.5,-56 598.5,-56 598.5,-54 433.5,-54"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-52 433.5,-54 598.5,-54 598.5,-52 433.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-50 433.5,-52 598.5,-52 598.5,-50 433.5,-50"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-48 433.5,-50 598.5,-50 598.5,-48 433.5,-48"/>
|
||||
<text text-anchor="start" x="444" y="-34.8" font-family="arial" font-size="14.00">X1:8</text>
|
||||
<text text-anchor="start" x="506.5" y="-34.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="560" y="-34.8" font-family="arial" font-size="14.00">X2:5</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-27 433.5,-29 598.5,-29 598.5,-27 433.5,-27"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-25 433.5,-27 598.5,-27 598.5,-25 433.5,-25"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-23 433.5,-25 598.5,-25 598.5,-23 433.5,-23"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-21 433.5,-23 598.5,-23 598.5,-21 433.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-19 433.5,-21 598.5,-21 598.5,-19 433.5,-19"/>
|
||||
<text text-anchor="start" x="456" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="transparent" points="1031,-278 742,-278 742,-48 1031,-48 1031,-278"/>
|
||||
<polygon fill="none" stroke="black" points="742.5,-255 742.5,-278 1031.5,-278 1031.5,-255 742.5,-255"/>
|
||||
<text text-anchor="start" x="878.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-232 742.5,-255 953.5,-255 953.5,-232 742.5,-232"/>
|
||||
<text text-anchor="start" x="746.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="953.5,-232 953.5,-255 992.5,-255 992.5,-232 953.5,-232"/>
|
||||
<text text-anchor="start" x="957.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="992.5,-232 992.5,-255 1031.5,-255 1031.5,-232 992.5,-232"/>
|
||||
<text text-anchor="start" x="996.5" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-209 742.5,-232 877.5,-232 877.5,-209 742.5,-209"/>
|
||||
<text text-anchor="start" x="806" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-209 877.5,-232 1031.5,-232 1031.5,-209 877.5,-209"/>
|
||||
<text text-anchor="start" x="940.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-186 742.5,-209 877.5,-209 877.5,-186 742.5,-186"/>
|
||||
<text text-anchor="start" x="806" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-186 877.5,-209 1031.5,-209 1031.5,-186 877.5,-186"/>
|
||||
<text text-anchor="start" x="942.5" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-163 742.5,-186 877.5,-186 877.5,-163 742.5,-163"/>
|
||||
<text text-anchor="start" x="806" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-163 877.5,-186 1031.5,-186 1031.5,-163 877.5,-163"/>
|
||||
<text text-anchor="start" x="940.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-140 742.5,-163 877.5,-163 877.5,-140 742.5,-140"/>
|
||||
<text text-anchor="start" x="806" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-140 877.5,-163 1031.5,-163 1031.5,-140 877.5,-140"/>
|
||||
<text text-anchor="start" x="940.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-117 742.5,-140 877.5,-140 877.5,-117 742.5,-117"/>
|
||||
<text text-anchor="start" x="806" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-117 877.5,-140 1031.5,-140 1031.5,-117 877.5,-117"/>
|
||||
<text text-anchor="start" x="942" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-94 742.5,-117 877.5,-117 877.5,-94 742.5,-94"/>
|
||||
<text text-anchor="start" x="806" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-94 877.5,-117 1031.5,-117 1031.5,-94 877.5,-94"/>
|
||||
<text text-anchor="start" x="942.5" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-71 742.5,-94 877.5,-94 877.5,-71 742.5,-71"/>
|
||||
<text text-anchor="start" x="806" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-71 877.5,-94 1031.5,-94 1031.5,-71 877.5,-71"/>
|
||||
<text text-anchor="start" x="940.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-48 742.5,-71 877.5,-71 877.5,-48 742.5,-48"/>
|
||||
<text text-anchor="start" x="806" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-48 877.5,-71 1031.5,-71 1031.5,-48 877.5,-48"/>
|
||||
<text text-anchor="start" x="942" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-223C662.09,-226.4 670,-174.4 742,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-225C664.07,-226.7 671.98,-174.7 742,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-227C666.05,-227 673.95,-175 742,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-229C668.02,-227.3 675.93,-175.3 742,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-231C670,-227.6 677.91,-175.6 742,-179"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-194C670.2,-198.36 661.83,-105.36 742,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-196C672.19,-198.18 663.82,-105.18 742,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-198C674.19,-198 665.81,-105 742,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-200C676.18,-197.82 667.81,-104.82 742,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-202C678.17,-197.64 669.8,-104.64 742,-109"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-165C670,-168.4 677.91,-220.4 742,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-167C668.02,-168.7 675.93,-220.7 742,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-169C666.05,-169 673.95,-221 742,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-171C664.07,-169.3 671.98,-221.3 742,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-173C662.09,-169.6 670,-221.6 742,-225"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-136C663.02,-139.59 669.02,-81.59 742,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-138C665.01,-139.79 671.01,-81.79 742,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-140C667,-140 673,-82 742,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-142C668.99,-140.21 674.99,-82.21 742,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-144C670.98,-140.41 676.98,-82.41 742,-86"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-107C662.09,-110.4 670,-58.4 742,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-109C664.07,-110.7 671.98,-58.7 742,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-111C666.05,-111 673.95,-59 742,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-113C668.02,-111.3 675.93,-59.3 742,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-115C670,-111.6 677.91,-59.6 742,-63"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-78C684.12,-82.69 663.76,-198.69 742,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-80C682.15,-82.35 661.79,-198.35 742,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-82C680.18,-82 659.82,-198 742,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-84C678.21,-81.65 657.85,-197.65 742,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-86C676.24,-81.31 655.88,-197.31 742,-202"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-49C679.39,-53.44 668.56,-151.44 742,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-51C677.4,-53.22 666.57,-151.22 742,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-53C675.42,-53 664.58,-151 742,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-55C673.43,-52.78 662.6,-150.78 742,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-57C671.44,-52.56 660.61,-150.56 742,-155"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-20C680.91,-24.53 667.02,-128.53 742,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-22C678.93,-24.26 665.04,-128.26 742,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-24C676.95,-24 663.05,-128 742,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-26C674.96,-23.74 661.07,-127.74 742,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-28C672.98,-23.47 659.09,-127.47 742,-132"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Stewart Connector SS-37000-002, male, 8 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, CAT5e, 8 x 24 AWG</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
BIN
examples/ex10.png
Normal file
|
After Width: | Height: | Size: 138 KiB |
327
examples/ex10.svg
Normal file
@ -0,0 +1,327 @@
|
||||
<?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 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1039pt" height="320pt"
|
||||
viewBox="0.00 0.00 1039.00 320.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 316)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-316 1035,-316 1035,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="transparent" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
|
||||
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
|
||||
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
|
||||
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
|
||||
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
|
||||
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
|
||||
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
|
||||
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
|
||||
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
|
||||
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
|
||||
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
|
||||
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
|
||||
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
|
||||
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
|
||||
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
|
||||
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
|
||||
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
|
||||
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
|
||||
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
|
||||
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="598,-312 433,-312 433,0 598,0 598,-312"/>
|
||||
<polygon fill="none" stroke="black" points="433.5,-289 433.5,-312 598.5,-312 598.5,-289 433.5,-289"/>
|
||||
<text text-anchor="start" x="505" y="-296.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-266 433.5,-289 483.5,-289 483.5,-266 433.5,-266"/>
|
||||
<text text-anchor="start" x="437.5" y="-273.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-266 483.5,-289 506.5,-289 506.5,-266 483.5,-266"/>
|
||||
<text text-anchor="start" x="487.5" y="-273.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="506.5,-266 506.5,-289 566.5,-289 566.5,-266 506.5,-266"/>
|
||||
<text text-anchor="start" x="510.5" y="-273.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="566.5,-266 566.5,-289 598.5,-289 598.5,-266 566.5,-266"/>
|
||||
<text text-anchor="start" x="570.5" y="-273.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="514" y="-254.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="444" y="-237.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="493.5" y="-237.8" font-family="arial" font-size="14.00">WHGN</text>
|
||||
<text text-anchor="start" x="560" y="-237.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-230 433.5,-232 598.5,-232 598.5,-230 433.5,-230"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-228 433.5,-230 598.5,-230 598.5,-228 433.5,-228"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-226 433.5,-228 598.5,-228 598.5,-226 433.5,-226"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-224 433.5,-226 598.5,-226 598.5,-224 433.5,-224"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-222 433.5,-224 598.5,-224 598.5,-222 433.5,-222"/>
|
||||
<text text-anchor="start" x="444" y="-208.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="505" y="-208.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="560" y="-208.8" font-family="arial" font-size="14.00">X2:6</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-201 433.5,-203 598.5,-203 598.5,-201 433.5,-201"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-199 433.5,-201 598.5,-201 598.5,-199 433.5,-199"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-197 433.5,-199 598.5,-199 598.5,-197 433.5,-197"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="433.5,-195 433.5,-197 598.5,-197 598.5,-195 433.5,-195"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-193 433.5,-195 598.5,-195 598.5,-193 433.5,-193"/>
|
||||
<text text-anchor="start" x="444" y="-179.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="493" y="-179.8" font-family="arial" font-size="14.00">WHOG</text>
|
||||
<text text-anchor="start" x="560" y="-179.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-172 433.5,-174 598.5,-174 598.5,-172 433.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-170 433.5,-172 598.5,-172 598.5,-170 433.5,-170"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-168 433.5,-170 598.5,-170 598.5,-168 433.5,-168"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-166 433.5,-168 598.5,-168 598.5,-166 433.5,-166"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-164 433.5,-166 598.5,-166 598.5,-164 433.5,-164"/>
|
||||
<text text-anchor="start" x="444" y="-150.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="506.5" y="-150.8" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="560" y="-150.8" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-143 433.5,-145 598.5,-145 598.5,-143 433.5,-143"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-141 433.5,-143 598.5,-143 598.5,-141 433.5,-141"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-139 433.5,-141 598.5,-141 598.5,-139 433.5,-139"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-137 433.5,-139 598.5,-139 598.5,-137 433.5,-137"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-135 433.5,-137 598.5,-137 598.5,-135 433.5,-135"/>
|
||||
<text text-anchor="start" x="444" y="-121.8" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="494.5" y="-121.8" font-family="arial" font-size="14.00">WHBU</text>
|
||||
<text text-anchor="start" x="560" y="-121.8" font-family="arial" font-size="14.00">X2:8</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-114 433.5,-116 598.5,-116 598.5,-114 433.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-112 433.5,-114 598.5,-114 598.5,-112 433.5,-112"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="433.5,-110 433.5,-112 598.5,-112 598.5,-110 433.5,-110"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-108 433.5,-110 598.5,-110 598.5,-108 433.5,-108"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-106 433.5,-108 598.5,-108 598.5,-106 433.5,-106"/>
|
||||
<text text-anchor="start" x="444" y="-92.8" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="504.5" y="-92.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="560" y="-92.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-85 433.5,-87 598.5,-87 598.5,-85 433.5,-85"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-83 433.5,-85 598.5,-85 598.5,-83 433.5,-83"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-81 433.5,-83 598.5,-83 598.5,-81 433.5,-81"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="433.5,-79 433.5,-81 598.5,-81 598.5,-79 433.5,-79"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-77 433.5,-79 598.5,-79 598.5,-77 433.5,-77"/>
|
||||
<text text-anchor="start" x="444" y="-63.8" font-family="arial" font-size="14.00">X1:7</text>
|
||||
<text text-anchor="start" x="494.5" y="-63.8" font-family="arial" font-size="14.00">WHBN</text>
|
||||
<text text-anchor="start" x="560" y="-63.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-56 433.5,-58 598.5,-58 598.5,-56 433.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-54 433.5,-56 598.5,-56 598.5,-54 433.5,-54"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-52 433.5,-54 598.5,-54 598.5,-52 433.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="433.5,-50 433.5,-52 598.5,-52 598.5,-50 433.5,-50"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-48 433.5,-50 598.5,-50 598.5,-48 433.5,-48"/>
|
||||
<text text-anchor="start" x="444" y="-34.8" font-family="arial" font-size="14.00">X1:8</text>
|
||||
<text text-anchor="start" x="506.5" y="-34.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="560" y="-34.8" font-family="arial" font-size="14.00">X2:5</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-27 433.5,-29 598.5,-29 598.5,-27 433.5,-27"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-25 433.5,-27 598.5,-27 598.5,-25 433.5,-25"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-23 433.5,-25 598.5,-25 598.5,-23 433.5,-23"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="433.5,-21 433.5,-23 598.5,-23 598.5,-21 433.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="433.5,-19 433.5,-21 598.5,-21 598.5,-19 433.5,-19"/>
|
||||
<text text-anchor="start" x="456" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="transparent" points="1031,-278 742,-278 742,-48 1031,-48 1031,-278"/>
|
||||
<polygon fill="none" stroke="black" points="742.5,-255 742.5,-278 1031.5,-278 1031.5,-255 742.5,-255"/>
|
||||
<text text-anchor="start" x="878.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-232 742.5,-255 953.5,-255 953.5,-232 742.5,-232"/>
|
||||
<text text-anchor="start" x="746.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="953.5,-232 953.5,-255 992.5,-255 992.5,-232 953.5,-232"/>
|
||||
<text text-anchor="start" x="957.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="992.5,-232 992.5,-255 1031.5,-255 1031.5,-232 992.5,-232"/>
|
||||
<text text-anchor="start" x="996.5" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-209 742.5,-232 877.5,-232 877.5,-209 742.5,-209"/>
|
||||
<text text-anchor="start" x="806" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-209 877.5,-232 1031.5,-232 1031.5,-209 877.5,-209"/>
|
||||
<text text-anchor="start" x="940.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-186 742.5,-209 877.5,-209 877.5,-186 742.5,-186"/>
|
||||
<text text-anchor="start" x="806" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-186 877.5,-209 1031.5,-209 1031.5,-186 877.5,-186"/>
|
||||
<text text-anchor="start" x="942.5" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-163 742.5,-186 877.5,-186 877.5,-163 742.5,-163"/>
|
||||
<text text-anchor="start" x="806" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-163 877.5,-186 1031.5,-186 1031.5,-163 877.5,-163"/>
|
||||
<text text-anchor="start" x="940.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-140 742.5,-163 877.5,-163 877.5,-140 742.5,-140"/>
|
||||
<text text-anchor="start" x="806" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-140 877.5,-163 1031.5,-163 1031.5,-140 877.5,-140"/>
|
||||
<text text-anchor="start" x="940.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-117 742.5,-140 877.5,-140 877.5,-117 742.5,-117"/>
|
||||
<text text-anchor="start" x="806" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-117 877.5,-140 1031.5,-140 1031.5,-117 877.5,-117"/>
|
||||
<text text-anchor="start" x="942" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-94 742.5,-117 877.5,-117 877.5,-94 742.5,-94"/>
|
||||
<text text-anchor="start" x="806" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-94 877.5,-117 1031.5,-117 1031.5,-94 877.5,-94"/>
|
||||
<text text-anchor="start" x="942.5" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-71 742.5,-94 877.5,-94 877.5,-71 742.5,-71"/>
|
||||
<text text-anchor="start" x="806" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-71 877.5,-94 1031.5,-94 1031.5,-71 877.5,-71"/>
|
||||
<text text-anchor="start" x="940.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="742.5,-48 742.5,-71 877.5,-71 877.5,-48 742.5,-48"/>
|
||||
<text text-anchor="start" x="806" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="877.5,-48 877.5,-71 1031.5,-71 1031.5,-48 877.5,-48"/>
|
||||
<text text-anchor="start" x="942" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-223C662.09,-226.4 670,-174.4 742,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-225C664.07,-226.7 671.98,-174.7 742,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-227C666.05,-227 673.95,-175 742,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-229C668.02,-227.3 675.93,-175.3 742,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-231C670,-227.6 677.91,-175.6 742,-179"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-194C670.2,-198.36 661.83,-105.36 742,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-196C672.19,-198.18 663.82,-105.18 742,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-198C674.19,-198 665.81,-105 742,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M598,-200C676.18,-197.82 667.81,-104.82 742,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-202C678.17,-197.64 669.8,-104.64 742,-109"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-165C670,-168.4 677.91,-220.4 742,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-167C668.02,-168.7 675.93,-220.7 742,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-169C666.05,-169 673.95,-221 742,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-171C664.07,-169.3 671.98,-221.3 742,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-173C662.09,-169.6 670,-221.6 742,-225"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-136C663.02,-139.59 669.02,-81.59 742,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-138C665.01,-139.79 671.01,-81.79 742,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-140C667,-140 673,-82 742,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-142C668.99,-140.21 674.99,-82.21 742,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-144C670.98,-140.41 676.98,-82.41 742,-86"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-107C662.09,-110.4 670,-58.4 742,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-109C664.07,-110.7 671.98,-58.7 742,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M598,-111C666.05,-111 673.95,-59 742,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-113C668.02,-111.3 675.93,-59.3 742,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-115C670,-111.6 677.91,-59.6 742,-63"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-78C684.12,-82.69 663.76,-198.69 742,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-80C682.15,-82.35 661.79,-198.35 742,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-82C680.18,-82 659.82,-198 742,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M598,-84C678.21,-81.65 657.85,-197.65 742,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-86C676.24,-81.31 655.88,-197.31 742,-202"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-49C679.39,-53.44 668.56,-151.44 742,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-51C677.4,-53.22 666.57,-151.22 742,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-53C675.42,-53 664.58,-151 742,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M598,-55C673.43,-52.78 662.6,-150.78 742,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-57C671.44,-52.56 660.61,-150.56 742,-155"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-20C680.91,-24.53 667.02,-128.53 742,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-22C678.93,-24.26 665.04,-128.26 742,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-24C676.95,-24 663.05,-128 742,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M598,-26C674.96,-23.74 661.07,-127.74 742,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M598,-28C672.98,-23.47 659.09,-127.47 742,-132"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |
24
examples/ex10.yml
Normal file
@ -0,0 +1,24 @@
|
||||
# Example 7: Crossover Cable
|
||||
connectors:
|
||||
X1:
|
||||
type: Stewart Connector SS-37000-002
|
||||
subtype: male
|
||||
pinlabels: [DA+,DA-,DB+,DC+,DC-,DB-,DD+,DD-] # pincount is implicit in pinout
|
||||
X2:
|
||||
type: Stewart Connector SS-37000-002
|
||||
subtype: male
|
||||
pinlabels: [DB+,DB-,DA+,DD+,DD-,DA-,DC+,DC-]
|
||||
|
||||
cables:
|
||||
W1:
|
||||
color_code: T568A # auto-color wires based on a standard
|
||||
wirecount: 8 # need to specify number of wires explicitly when using a color code
|
||||
gauge: 24 AWG # also accepts AWG as unit
|
||||
length: 1 # length in m
|
||||
shield: false
|
||||
type: CAT5e
|
||||
|
||||
connections:
|
||||
- - X1: [1-8]
|
||||
- W1: [1-8]
|
||||
- X2: [3,6,1,7,8,2,4,5] # crossover
|
||||
@ -1,4 +1,5 @@
|
||||
# Example gallery
|
||||
# Example Gallery
|
||||
|
||||
## Example 01
|
||||

|
||||
|
||||
@ -53,3 +54,9 @@
|
||||
[Source](ex09.yml) - [Bill of Materials](ex09.bom.tsv)
|
||||
|
||||
|
||||
## Example 10
|
||||

|
||||
|
||||
[Source](ex10.yml) - [Bill of Materials](ex10.bom.tsv)
|
||||
|
||||
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
.
|
||||
graphviz
|
||||
pyyaml
|
||||
setuptools
|
||||
1
setup.py
@ -1,4 +1,5 @@
|
||||
#!/usr/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
@ -13,16 +13,17 @@ class Connector:
|
||||
manufacturer: Optional[str] = None
|
||||
manufacturer_part_number: Optional[str] = None
|
||||
internal_part_number: Optional[str] = None
|
||||
style: Optional[str] = None
|
||||
category: Optional[str] = None
|
||||
type: Optional[str] = None
|
||||
subtype: Optional[str] = None
|
||||
pincount: Optional[int] = None
|
||||
notes: Optional[str] = None
|
||||
pinout: List[Any] = field(default_factory=list)
|
||||
pinnumbers: List[Any] = field(default_factory=list)
|
||||
pinlabels: List[Any] = field(default_factory=list)
|
||||
pins: List[Any] = field(default_factory=list)
|
||||
color: Optional[str] = None
|
||||
show_name: bool = True
|
||||
show_pincount: bool = True
|
||||
show_name: bool = None
|
||||
show_pincount: bool = None
|
||||
hide_disconnected_pins: bool = False
|
||||
autogenerate: bool = False
|
||||
loops: List[Any] = field(default_factory=list)
|
||||
@ -32,28 +33,37 @@ class Connector:
|
||||
self.ports_right = False
|
||||
self.visible_pins = {}
|
||||
|
||||
if self.style == 'simple':
|
||||
if self.pincount and self.pincount > 1:
|
||||
raise Exception('Connectors with style set to simple may only have one pin')
|
||||
self.pincount = 1
|
||||
|
||||
if self.pincount is None:
|
||||
if self.pinout:
|
||||
self.pincount = len(self.pinout)
|
||||
elif self.pinnumbers:
|
||||
self.pincount = len(self.pinnumbers)
|
||||
elif self.category == 'ferrule':
|
||||
self.pincount = 1
|
||||
if self.pinlabels:
|
||||
self.pincount = len(self.pinlabels)
|
||||
elif self.pins:
|
||||
self.pincount = len(self.pins)
|
||||
else:
|
||||
raise Exception('You need to specify at least one, pincount, pinout or pinnumbers')
|
||||
raise Exception('You need to specify at least one, pincount, pins or pinlabels')
|
||||
|
||||
if self.pinout and self.pinnumbers:
|
||||
if len(self.pinout) != len(self.pinnumbers):
|
||||
raise Exception('Given pinout and pinnumbers size mismatch')
|
||||
if self.pinlabels and self.pins:
|
||||
if len(self.pinlabels) != len(self.pins):
|
||||
raise Exception('Given pins and pinlabels size mismatch')
|
||||
|
||||
# create default lists for pinnumbers (sequential) and pinouts (blank) if not specified
|
||||
if not self.pinnumbers:
|
||||
self.pinnumbers = list(range(1, self.pincount + 1))
|
||||
if not self.pinout:
|
||||
self.pinout = [''] * self.pincount
|
||||
# create default lists for pins (sequential) and pinlabels (blank) if not specified
|
||||
if not self.pins:
|
||||
self.pins = list(range(1, self.pincount + 1))
|
||||
if not self.pinlabels:
|
||||
self.pinlabels = [''] * self.pincount
|
||||
|
||||
if len(self.pinnumbers) != len(set(self.pinnumbers)):
|
||||
raise Exception('Pin numbers are not unique')
|
||||
if len(self.pins) != len(set(self.pins)):
|
||||
raise Exception('Pins are not unique')
|
||||
|
||||
if self.show_name is None:
|
||||
self.show_name = not self.autogenerate # hide auto-generated designators by default
|
||||
|
||||
if self.show_pincount is None:
|
||||
self.show_pincount = self.style != 'simple' # hide pincount for simple (1 pin) connectors by default
|
||||
|
||||
for loop in self.loops:
|
||||
# TODO: check that pins to connect actually exist
|
||||
|
||||
@ -3,13 +3,15 @@
|
||||
|
||||
from wireviz.DataClasses import Connector, Cable
|
||||
from graphviz import Graph
|
||||
from wireviz import wv_colors
|
||||
from wireviz import wv_colors, wv_helper
|
||||
from wireviz.wv_colors import get_color_hex
|
||||
from wireviz.wv_helper import awg_equiv, mm2_equiv, tuplelist2tsv, \
|
||||
nested_html_table, flatten2d, index_if_list, html_line_breaks, \
|
||||
graphviz_line_breaks, remove_line_breaks
|
||||
graphviz_line_breaks, remove_line_breaks, open_file_read, open_file_write
|
||||
from collections import Counter
|
||||
from typing import List
|
||||
from pathlib import Path
|
||||
import re
|
||||
|
||||
|
||||
class Harness:
|
||||
@ -33,23 +35,23 @@ class Harness:
|
||||
for (name, pin) in zip([from_name, to_name], [from_pin, to_pin]): # check from and to connectors
|
||||
if name is not None and name in self.connectors:
|
||||
connector = self.connectors[name]
|
||||
if pin in connector.pinnumbers and pin in connector.pinout:
|
||||
if connector.pinnumbers.index(pin) == connector.pinout.index(pin):
|
||||
if pin in connector.pins and pin in connector.pinlabels:
|
||||
if connector.pins.index(pin) == connector.pinlabels.index(pin):
|
||||
# TODO: Maybe issue a warning? It's not worthy of an exception if it's unambiguous, but maybe risky?
|
||||
pass
|
||||
else:
|
||||
raise Exception(f'{name}:{pin} is defined both in pinout and pinnumbers, for different pins.')
|
||||
if pin in connector.pinout:
|
||||
if connector.pinout.count(pin) > 1:
|
||||
raise Exception(f'{name}:{pin} is defined both in pinlabels and pins, for different pins.')
|
||||
if pin in connector.pinlabels:
|
||||
if connector.pinlabels.count(pin) > 1:
|
||||
raise Exception(f'{name}:{pin} is defined more than once.')
|
||||
else:
|
||||
index = connector.pinout.index(pin)
|
||||
pin = connector.pinnumbers[index] # map pin name to pin number
|
||||
index = connector.pinlabels.index(pin)
|
||||
pin = connector.pins[index] # map pin name to pin number
|
||||
if name == from_name:
|
||||
from_pin = pin
|
||||
if name == to_name:
|
||||
to_pin = pin
|
||||
if not pin in connector.pinnumbers:
|
||||
if not pin in connector.pins:
|
||||
raise Exception(f'{name}:{pin} not found.')
|
||||
|
||||
self.cables[via_name].connect(from_name, from_pin, via_pin, to_name, to_pin)
|
||||
@ -77,51 +79,41 @@ class Harness:
|
||||
|
||||
# prepare ports on connectors depending on which side they will connect
|
||||
for _, cable in self.cables.items():
|
||||
for connection in cable.connections:
|
||||
if connection.from_port is not None: # connect to left
|
||||
self.connectors[connection.from_name].ports_right = True
|
||||
if connection.to_port is not None: # connect to right
|
||||
self.connectors[connection.to_name].ports_left = True
|
||||
for connection_color in cable.connections:
|
||||
if connection_color.from_port is not None: # connect to left
|
||||
self.connectors[connection_color.from_name].ports_right = True
|
||||
if connection_color.to_port is not None: # connect to right
|
||||
self.connectors[connection_color.to_name].ports_left = True
|
||||
|
||||
for key, connector in self.connectors.items():
|
||||
if connector.category == 'ferrule':
|
||||
|
||||
rows = [[connector.manufacturer,
|
||||
f'MPN: {connector.manufacturer_part_number}' if connector.manufacturer_part_number else None,
|
||||
f'IPN: {connector.internal_part_number}' if connector.internal_part_number else None],
|
||||
[html_line_breaks(connector.type), html_line_breaks(connector.subtype), connector.color, '<!-- colorbar -->' if connector.color else None],
|
||||
[html_line_breaks(connector.notes)]]
|
||||
html = nested_html_table(rows)
|
||||
rows = [[connector.name if connector.show_name else None],
|
||||
[connector.manufacturer,
|
||||
f'MPN: {connector.manufacturer_part_number}' if connector.manufacturer_part_number else None,
|
||||
f'IPN: {connector.internal_part_number}' if connector.internal_part_number else None],
|
||||
[html_line_breaks(connector.type),
|
||||
html_line_breaks(connector.subtype),
|
||||
f'{connector.pincount}-pin' if connector.show_pincount else None,
|
||||
connector.color, '<!-- colorbar -->' if connector.color else None],
|
||||
'<!-- connector table -->' if connector.style != 'simple' else None,
|
||||
[html_line_breaks(connector.notes)]]
|
||||
html = nested_html_table(rows)
|
||||
|
||||
if connector.color: # add color bar next to color info, if present
|
||||
colorbar = f' bgcolor="{wv_colors.translate_color(connector.color, "HEX")}" width="4"></td>' # leave out '<td' from string to preserve any existing attributes of the <td> tag
|
||||
html = html.replace('><!-- colorbar --></td>', colorbar)
|
||||
if connector.color: # add color bar next to color info, if present
|
||||
colorbar = f' bgcolor="{wv_colors.translate_color(connector.color, "HEX")}" width="4"></td>' # leave out '<td' from string to preserve any existing attributes of the <td> tag
|
||||
html = html.replace('><!-- colorbar --></td>', colorbar)
|
||||
|
||||
dot.node(key, label=f'<{html}>', shape='none', margin='0', style='filled', fillcolor='white')
|
||||
|
||||
else: # not a ferrule
|
||||
|
||||
rows = [[connector.name if connector.show_name else None],
|
||||
[connector.manufacturer,
|
||||
f'MPN: {connector.manufacturer_part_number}' if connector.manufacturer_part_number else None,
|
||||
f'IPN: {connector.internal_part_number}' if connector.internal_part_number else None],
|
||||
[html_line_breaks(connector.type),
|
||||
html_line_breaks(connector.subtype),
|
||||
f'{connector.pincount}-pin' if connector.show_pincount else None],
|
||||
'<!-- connector table -->',
|
||||
[html_line_breaks(connector.notes)]]
|
||||
html = nested_html_table(rows)
|
||||
|
||||
pinouts = []
|
||||
for pinnumber, pinname in zip(connector.pinnumbers, connector.pinout):
|
||||
if connector.hide_disconnected_pins and not connector.visible_pins.get(pinnumber, False):
|
||||
if connector.style != 'simple':
|
||||
pinlist = []
|
||||
for pin, pinlabel in zip(connector.pins, connector.pinlabels):
|
||||
if connector.hide_disconnected_pins and not connector.visible_pins.get(pin, False):
|
||||
continue
|
||||
pinouts.append([f'<td port="p{pinnumber}l">{pinnumber}</td>' if connector.ports_left else None,
|
||||
f'<td>{pinname}</td>' if pinname else '',
|
||||
f'<td port="p{pinnumber}r">{pinnumber}</td>' if connector.ports_right else None])
|
||||
pinlist.append([f'<td port="p{pin}l">{pin}</td>' if connector.ports_left else None,
|
||||
f'<td>{pinlabel}</td>' if pinlabel else '',
|
||||
f'<td port="p{pin}r">{pin}</td>' if connector.ports_right else None])
|
||||
|
||||
pinhtml = '<table border="0" cellspacing="0" cellpadding="3" cellborder="1">'
|
||||
for i, pin in enumerate(pinouts):
|
||||
for i, pin in enumerate(pinlist):
|
||||
pinhtml = f'{pinhtml}<tr>'
|
||||
for column in pin:
|
||||
if column is not None:
|
||||
@ -130,21 +122,22 @@ class Harness:
|
||||
pinhtml = f'{pinhtml}</table>'
|
||||
html = html.replace('<!-- connector table -->', pinhtml)
|
||||
|
||||
dot.node(key, label=f'<{html}>', shape='none', margin='0', style='filled', fillcolor='white')
|
||||
|
||||
if len(connector.loops) > 0:
|
||||
dot.attr('edge', color='#000000:#ffffff:#000000')
|
||||
if connector.ports_left:
|
||||
loop_side = 'l'
|
||||
loop_dir = 'w'
|
||||
elif connector.ports_right:
|
||||
loop_side = 'r'
|
||||
loop_dir = 'e'
|
||||
else:
|
||||
raise Exception('No side for loops')
|
||||
for loop in connector.loops:
|
||||
dot.edge(f'{connector.name}:p{loop[0]}{loop_side}:{loop_dir}',
|
||||
f'{connector.name}:p{loop[1]}{loop_side}:{loop_dir}')
|
||||
dot.node(key, label=f'<{html}>', shape='none', margin='0', style='filled', fillcolor='white')
|
||||
|
||||
if len(connector.loops) > 0:
|
||||
dot.attr('edge', color='#000000:#ffffff:#000000')
|
||||
if connector.ports_left:
|
||||
loop_side = 'l'
|
||||
loop_dir = 'w'
|
||||
elif connector.ports_right:
|
||||
loop_side = 'r'
|
||||
loop_dir = 'e'
|
||||
else:
|
||||
raise Exception('No side for loops')
|
||||
for loop in connector.loops:
|
||||
dot.edge(f'{connector.name}:p{loop[0]}{loop_side}:{loop_dir}',
|
||||
f'{connector.name}:p{loop[1]}{loop_side}:{loop_dir}')
|
||||
|
||||
for _, cable in self.cables.items():
|
||||
|
||||
@ -170,40 +163,50 @@ class Harness:
|
||||
f'{cable.length} m' if cable.length > 0 else '']
|
||||
attributes = list(filter(None, attributes))
|
||||
|
||||
html = '<table border="0" cellspacing="0" cellpadding="0"><tr><td>' # main table
|
||||
html = '<table border="0" cellspacing="0" cellpadding="0">' # main table
|
||||
|
||||
html = f'{html}<table border="0" cellspacing="0" cellpadding="3" cellborder="1">' # name+attributes table
|
||||
if cable.show_name:
|
||||
html = f'{html}<tr><td colspan="{len(attributes)}">{cable.name}</td></tr>'
|
||||
if(len(identification) > 0): # print an identification row if values specified
|
||||
html = f'{html}<tr><td colspan="{len(attributes)}" cellpadding="0"><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>'
|
||||
for attrib in identification[0:-1]:
|
||||
html = f'{html}<td sides="R">{attrib}</td>' # all columns except last have a border on the right (sides="R")
|
||||
if len(identification) > 0:
|
||||
html = f'{html}<td border="0">{identification[-1]}</td>' # last column has no border on the right because the enclosing table borders it
|
||||
html = f'{html}</tr></table></td></tr>' # end identification row
|
||||
html = f'{html}<tr>' # attribute row
|
||||
for attrib in attributes:
|
||||
html = f'{html}<td balign="left">{attrib}</td>'
|
||||
html = f'{html}</tr>' # attribute row
|
||||
html = f'{html}</table></td></tr>' # name+attributes table
|
||||
if cable.show_name or len(attributes) > 0:
|
||||
html = f'{html}<tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1">' # name+attributes table
|
||||
if cable.show_name:
|
||||
html = f'{html}<tr><td colspan="{max(len(attributes), 1)}">{cable.name}</td></tr>'
|
||||
if(len(identification) > 0): # print an identification row if values specified
|
||||
html = f'{html}<tr><td colspan="{len(attributes)}" cellpadding="0"><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>'
|
||||
for attrib in identification[0:-1]:
|
||||
html = f'{html}<td sides="R">{attrib}</td>' # all columns except last have a border on the right (sides="R")
|
||||
if len(identification) > 0:
|
||||
html = f'{html}<td border="0">{identification[-1]}</td>' # last column has no border on the right because the enclosing table borders it
|
||||
html = f'{html}</tr></table></td></tr>' # end identification row
|
||||
if(len(attributes) > 0):
|
||||
html = f'{html}<tr>' # attribute row
|
||||
for attrib in attributes:
|
||||
html = f'{html}<td balign="left">{attrib}</td>'
|
||||
html = f'{html}</tr>' # attribute row
|
||||
html = f'{html}</table></td></tr>' # name+attributes table
|
||||
|
||||
html = f'{html}<tr><td> </td></tr>' # spacer between attributes and wires
|
||||
|
||||
html = f'{html}<tr><td><table border="0" cellspacing="0" cellborder="0">' # conductor table
|
||||
|
||||
for i, connection in enumerate(cable.colors, 1):
|
||||
# determine if there are double- or triple-colored wires;
|
||||
# if so, pad single-color wires to make all wires of equal thickness
|
||||
colorlengths = list(map(len, cable.colors))
|
||||
pad = 4 in colorlengths or 6 in colorlengths
|
||||
|
||||
for i, connection_color in enumerate(cable.colors, 1):
|
||||
p = []
|
||||
p.append(f'<!-- {i}_in -->')
|
||||
p.append(wv_colors.translate_color(connection, self.color_mode))
|
||||
p.append(wv_colors.translate_color(connection_color, self.color_mode))
|
||||
p.append(f'<!-- {i}_out -->')
|
||||
html = f'{html}<tr>'
|
||||
for bla in p:
|
||||
html = f'{html}<td>{bla}</td>'
|
||||
html = f'{html}</tr>'
|
||||
bgcolor = wv_colors.translate_color(connection, 'hex')
|
||||
bgcolor = bgcolor if bgcolor != '' else '#ffffff'
|
||||
html = f'{html}<tr><td colspan="{len(p)}" cellpadding="0" height="6" bgcolor="{bgcolor}" border="2" sides="tb" port="w{i}"></td></tr>'
|
||||
|
||||
bgcolors = ['#000000'] + get_color_hex(connection_color, pad=pad) + ['#000000']
|
||||
html = f'{html}<tr><td colspan="{len(p)}" border="0" cellspacing="0" cellpadding="0" port="w{i}" height="{(2 * len(bgcolors))}"><table cellspacing="0" cellborder="0" border = "0">'
|
||||
for j, bgcolor in enumerate(bgcolors[::-1]): # Reverse to match the curved wires when more than 2 colors
|
||||
html = f'{html}<tr><td colspan="{len(p)}" cellpadding="0" height="2" bgcolor="{bgcolor if bgcolor != "" else wv_colors.default_color}" border="0"></td></tr>'
|
||||
html = html + '</table></td></tr>'
|
||||
if(cable.category == 'bundle'): # for bundles individual wires can have part information
|
||||
# create a list of wire parameters
|
||||
wireidentification = []
|
||||
@ -241,32 +244,26 @@ class Harness:
|
||||
html = f'{html}</table>' # main table
|
||||
|
||||
# connections
|
||||
for connection in cable.connections:
|
||||
if isinstance(connection.via_port, int): # check if it's an actual wire and not a shield
|
||||
search_color = cable.colors[connection.via_port - 1]
|
||||
if search_color in wv_colors.color_hex:
|
||||
dot.attr('edge', color=f'#000000:{wv_colors.color_hex[search_color]}:#000000')
|
||||
else: # color name not found
|
||||
dot.attr('edge', color='#000000:#ffffff:#000000')
|
||||
for connection_color in cable.connections:
|
||||
if isinstance(connection_color.via_port, int): # check if it's an actual wire and not a shield
|
||||
dot.attr('edge', color=':'.join(['#000000'] + wv_colors.get_color_hex(cable.colors[connection_color.via_port - 1], pad=pad) + ['#000000']))
|
||||
else: # it's a shield connection
|
||||
dot.attr('edge', color='#000000')
|
||||
|
||||
if connection.from_port is not None: # connect to left
|
||||
from_ferrule = self.connectors[connection.from_name].category == 'ferrule'
|
||||
port = f':p{connection.from_port}r' if not from_ferrule else ''
|
||||
code_left_1 = f'{connection.from_name}{port}:e'
|
||||
code_left_2 = f'{cable.name}:w{connection.via_port}:w'
|
||||
# shield is shown as a thin tinned wire
|
||||
dot.attr('edge', color=':'.join(['#000000', wv_colors.get_color_hex('SN', pad=False)[0], '#000000']))
|
||||
if connection_color.from_port is not None: # connect to left
|
||||
from_port = f':p{connection_color.from_port}r' if self.connectors[connection_color.from_name].style != 'simple' else ''
|
||||
code_left_1 = f'{connection_color.from_name}{from_port}:e'
|
||||
code_left_2 = f'{cable.name}:w{connection_color.via_port}:w'
|
||||
dot.edge(code_left_1, code_left_2)
|
||||
from_string = f'{connection.from_name}:{connection.from_port}' if not from_ferrule else ''
|
||||
html = html.replace(f'<!-- {connection.via_port}_in -->', from_string)
|
||||
if connection.to_port is not None: # connect to right
|
||||
to_ferrule = self.connectors[connection.to_name].category == 'ferrule'
|
||||
code_right_1 = f'{cable.name}:w{connection.via_port}:e'
|
||||
to_port = f':p{connection.to_port}l' if not to_ferrule else ''
|
||||
code_right_2 = f'{connection.to_name}{to_port}:w'
|
||||
from_string = f'{connection_color.from_name}:{connection_color.from_port}' if self.connectors[connection_color.from_name].show_name else ''
|
||||
html = html.replace(f'<!-- {connection_color.via_port}_in -->', from_string)
|
||||
if connection_color.to_port is not None: # connect to right
|
||||
code_right_1 = f'{cable.name}:w{connection_color.via_port}:e'
|
||||
to_port = f':p{connection_color.to_port}l' if self.connectors[connection_color.to_name].style != 'simple' else ''
|
||||
code_right_2 = f'{connection_color.to_name}{to_port}:w'
|
||||
dot.edge(code_right_1, code_right_2)
|
||||
to_string = f'{connection.to_name}:{connection.to_port}' if not to_ferrule else ''
|
||||
html = html.replace(f'<!-- {connection.via_port}_out -->', to_string)
|
||||
to_string = f'{connection_color.to_name}:{connection_color.to_port}' if self.connectors[connection_color.to_name].show_name else ''
|
||||
html = html.replace(f'<!-- {connection_color.via_port}_out -->', to_string)
|
||||
|
||||
dot.node(cable.name, label=f'<{html}>', shape='box',
|
||||
style='filled,dashed' if cable.category == 'bundle' else '', margin='0', fillcolor='white')
|
||||
@ -300,14 +297,19 @@ class Harness:
|
||||
graph.save(filename=f'{filename}.gv')
|
||||
# bom output
|
||||
bom_list = self.bom_list()
|
||||
with open(f'{filename}.bom.tsv', 'w') as file:
|
||||
with open_file_write(f'{filename}.bom.tsv') as file:
|
||||
file.write(tuplelist2tsv(bom_list))
|
||||
# HTML output
|
||||
with open(f'{filename}.html', 'w') as file:
|
||||
file.write('<html><body style="font-family:Arial">')
|
||||
with open_file_write(f'{filename}.html') as file:
|
||||
file.write('<!DOCTYPE html>\n')
|
||||
file.write('<html><head><meta charset="UTF-8"></head><body style="font-family:Arial">')
|
||||
|
||||
file.write('<h1>Diagram</h1>')
|
||||
with open(f'{filename}.svg') as svg:
|
||||
with open_file_read(f'{filename}.svg') as svg:
|
||||
file.write(re.sub(
|
||||
'^<[?]xml [^?>]*[?]>[^<]*<!DOCTYPE [^>]*>',
|
||||
'<!-- XML and DOCTYPE declarations from SVG file removed -->',
|
||||
svg.read(1024), 1))
|
||||
for svgdata in svg:
|
||||
file.write(svgdata)
|
||||
|
||||
@ -343,10 +345,10 @@ class Harness:
|
||||
designators.sort()
|
||||
conn_type = f', {remove_line_breaks(shared.type)}' if shared.type else ''
|
||||
conn_subtype = f', {remove_line_breaks(shared.subtype)}' if shared.subtype else ''
|
||||
conn_pincount = f', {shared.pincount} pins' if shared.category != 'ferrule' else ''
|
||||
conn_pincount = f', {shared.pincount} pins' if shared.style != 'simple' else ''
|
||||
conn_color = f', {shared.color}' if shared.color else ''
|
||||
name = f'Connector{conn_type}{conn_subtype}{conn_pincount}{conn_color}'
|
||||
item = {'item': name, 'qty': len(designators), 'unit': '', 'designators': designators if shared.category != 'ferrule' else '',
|
||||
item = {'item': name, 'qty': len(designators), 'unit': '', 'designators': designators if shared.show_name else '',
|
||||
'manufacturer': shared.manufacturer, 'manufacturer part number': shared.manufacturer_part_number, 'internal part number': shared.internal_part_number}
|
||||
bom_connectors.append(item)
|
||||
bom_connectors = sorted(bom_connectors, key=lambda k: k['item']) # https://stackoverflow.com/a/73050
|
||||
|
||||
@ -1,57 +1,113 @@
|
||||
#!/usr/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
from fnmatch import fnmatch
|
||||
|
||||
# noinspection PyUnresolvedReferences
|
||||
from wv_helper import open_file_write, open_file_read
|
||||
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
|
||||
|
||||
from wireviz import wireviz
|
||||
|
||||
demos = 2 # 2
|
||||
examples = 9 # 9
|
||||
tutorials = 8 # 7
|
||||
examples_path = os.path.join('..','..','examples')
|
||||
tutorials_path = os.path.join('..','..','tutorial')
|
||||
demos_path = examples_path
|
||||
|
||||
if demos:
|
||||
for i in range(1,demos+1):
|
||||
fn = '../../examples/demo{:02d}.yml'.format(i)
|
||||
print(fn)
|
||||
wireviz.parse_file(fn)
|
||||
readme = 'readme.md'
|
||||
|
||||
if examples:
|
||||
with open(os.path.abspath('../../examples/readme.md'), 'w') as file:
|
||||
|
||||
def build_demos():
|
||||
for fn in sorted(os.listdir(demos_path)):
|
||||
if fnmatch(fn, "demo*.yml"):
|
||||
abspath = os.path.join(demos_path, fn)
|
||||
|
||||
print(abspath)
|
||||
wireviz.parse_file(abspath)
|
||||
|
||||
def build_examples():
|
||||
with open_file_write(os.path.join(examples_path, readme)) as file:
|
||||
file.write('# Example gallery\n')
|
||||
for i in range(1,examples+1):
|
||||
fn = '../../examples/ex{:02d}.yml'.format(i)
|
||||
print(fn)
|
||||
wireviz.parse_file(fn)
|
||||
for fn in sorted(os.listdir(examples_path)):
|
||||
if fnmatch(fn, "ex*.yml"):
|
||||
i = ''.join(filter(str.isdigit, fn))
|
||||
|
||||
file.write('## Example {:02d}\n'.format(i))
|
||||
file.write('\n\n'.format(i))
|
||||
file.write('[Source](ex{:02d}.yml) - [Bill of Materials](ex{:02d}.bom.tsv)\n\n\n'.format(i,i))
|
||||
abspath = os.path.join(examples_path, fn)
|
||||
outfile_name = abspath.split(".yml")[0]
|
||||
|
||||
if tutorials:
|
||||
with open(os.path.abspath('../../tutorial/readme.md'), 'w') as file:
|
||||
|
||||
print(abspath)
|
||||
wireviz.parse_file(abspath)
|
||||
|
||||
file.write(f'## Example {i}\n')
|
||||
file.write(f'\n\n')
|
||||
file.write(f'[Source]({fn}) - [Bill of Materials]({outfile_name}.bom.tsv)\n\n\n')
|
||||
|
||||
def build_tutorials():
|
||||
with open_file_write(os.path.join(tutorials_path, readme)) as file:
|
||||
file.write('# WireViz Tutorial\n')
|
||||
for i in range(1,tutorials+1):
|
||||
fn = '../../tutorial/tutorial{:02d}.yml'.format(i)
|
||||
print(fn)
|
||||
wireviz.parse_file(fn)
|
||||
for fn in sorted(os.listdir(tutorials_path)):
|
||||
if fnmatch(fn, "tutorial*.yml"):
|
||||
i = ''.join(filter(str.isdigit, fn))
|
||||
abspath = os.path.join(tutorials_path, fn)
|
||||
print(abspath)
|
||||
|
||||
with open(os.path.abspath('../../tutorial/tutorial{:02d}.md'.format(i)), 'r') as info:
|
||||
for line in info:
|
||||
file.write(line.replace('## ', '## {} - '.format(i)))
|
||||
file.write('\n[Source](tutorial{:02d}.yml):\n\n'.format(i))
|
||||
wireviz.parse_file(abspath)
|
||||
|
||||
with open(os.path.abspath('../../tutorial/tutorial{:02d}.yml'.format(i)), 'r') as src:
|
||||
file.write('```yaml\n')
|
||||
for line in src:
|
||||
file.write(line)
|
||||
file.write('```\n')
|
||||
file.write('\n')
|
||||
outfile_name = abspath.split(".yml")[0]
|
||||
|
||||
file.write('\nOutput:\n\n'.format(i))
|
||||
with open_file_read(outfile_name + '.md') as info:
|
||||
for line in info:
|
||||
file.write(line.replace('## ', '## {} - '.format(i)))
|
||||
file.write(f'\n[Source]({fn}):\n\n')
|
||||
|
||||
file.write('\n\n'.format(i))
|
||||
with open_file_read(abspath) as src:
|
||||
file.write('```yaml\n')
|
||||
for line in src:
|
||||
file.write(line)
|
||||
file.write('```\n')
|
||||
file.write('\n')
|
||||
|
||||
file.write('[Bill of Materials](tutorial{:02d}.bom.tsv)\n\n\n'.format(i))
|
||||
file.write('\nOutput:\n\n'.format(i))
|
||||
|
||||
file.write(f'\n\n')
|
||||
|
||||
file.write(f'[Bill of Materials](tutorial{outfile_name}.bom.tsv)\n\n\n')
|
||||
|
||||
def clean_examples():
|
||||
generated_extensions = ['.gv', '.png', '.svg', '.html', '.bom.tsv']
|
||||
|
||||
for filepath in [examples_path, demos_path, tutorials_path]:
|
||||
print(filepath)
|
||||
for file in sorted(os.listdir(filepath)):
|
||||
if os.path.exists(os.path.join(filepath, file)):
|
||||
if list(filter(file.endswith, generated_extensions)) or file == 'readme.md':
|
||||
print('rm ' + os.path.join(filepath, file))
|
||||
os.remove(os.path.join(filepath, file))
|
||||
|
||||
|
||||
def parse_args():
|
||||
parser = argparse.ArgumentParser(
|
||||
description='Wireviz Example Manager',
|
||||
)
|
||||
parser.add_argument('action', nargs='?', action='store', default='build')
|
||||
parser.add_argument('-generate', nargs='*', choices=['examples', 'demos', 'tutorials'], default=['examples', 'demos', 'tutorials'])
|
||||
return parser.parse_args()
|
||||
def main():
|
||||
args = parse_args()
|
||||
if args.action == 'build':
|
||||
generate_types = {
|
||||
'examples': build_examples,
|
||||
'demos': build_demos,
|
||||
'tutorials': build_tutorials
|
||||
}
|
||||
for gentype in args.generate:
|
||||
if gentype in generate_types:
|
||||
generate_types.get(gentype) ()
|
||||
elif args.action == 'clean':
|
||||
clean_examples()
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
||||
@ -14,7 +14,7 @@ if __name__ == '__main__':
|
||||
|
||||
|
||||
from wireviz.Harness import Harness
|
||||
from wireviz.wv_helper import expand
|
||||
from wireviz.wv_helper import expand, open_file_read
|
||||
|
||||
|
||||
def parse(yaml_input: str, file_out: (str, Path) = None, return_types: (None, str, Tuple[str]) = None) -> Any:
|
||||
@ -37,8 +37,8 @@ def parse(yaml_input: str, file_out: (str, Path) = None, return_types: (None, st
|
||||
harness = Harness()
|
||||
|
||||
# add items
|
||||
sections = ['connectors', 'cables', 'ferrules', 'connections']
|
||||
types = [dict, dict, dict, list]
|
||||
sections = ['connectors', 'cables', 'connections']
|
||||
types = [dict, dict, list]
|
||||
for sec, ty in zip(sections, types):
|
||||
if sec in yaml_data and type(yaml_data[sec]) == ty:
|
||||
if len(yaml_data[sec]) > 0:
|
||||
@ -49,8 +49,6 @@ def parse(yaml_input: str, file_out: (str, Path) = None, return_types: (None, st
|
||||
harness.add_connector(name=key, **attribs)
|
||||
elif sec == 'cables':
|
||||
harness.add_cable(name=key, **attribs)
|
||||
elif sec == 'ferrules':
|
||||
pass
|
||||
else:
|
||||
pass # section exists but is empty
|
||||
else: # section does not exist, create empty section
|
||||
@ -198,7 +196,7 @@ def parse(yaml_input: str, file_out: (str, Path) = None, return_types: (None, st
|
||||
|
||||
|
||||
def parse_file(yaml_file: str, file_out: (str, Path) = None) -> None:
|
||||
with open(yaml_file, 'r') as file:
|
||||
with open_file_read(yaml_file) as file:
|
||||
yaml_input = file.read()
|
||||
|
||||
if not file_out:
|
||||
@ -228,14 +226,14 @@ def main():
|
||||
print(f'Error: input file {args.input_file} inaccessible or does not exist, check path')
|
||||
sys.exit(1)
|
||||
|
||||
with open(args.input_file) as fh:
|
||||
with open_file_read(args.input_file) as fh:
|
||||
yaml_input = fh.read()
|
||||
|
||||
if args.prepend_file:
|
||||
if not os.path.exists(args.prepend_file):
|
||||
print(f'Error: prepend input file {args.prepend_file} inaccessible or does not exist, check path')
|
||||
sys.exit(1)
|
||||
with open(args.prepend_file) as fh:
|
||||
with open_file_read(args.prepend_file) as fh:
|
||||
prepend = fh.read()
|
||||
yaml_input = prepend + yaml_input
|
||||
|
||||
|
||||
@ -1,13 +1,31 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import sys
|
||||
|
||||
COLOR_CODES = {
|
||||
'DIN': ['WH', 'BN', 'GN', 'YE', 'GY', 'PK', 'BU', 'RD', 'BK', 'VT'], # ,'GYPK','RDBU','WHGN','BNGN','WHYE','YEBN','WHGY','GYBN','WHPK','PKBN'],
|
||||
'DIN': ['WH', 'BN', 'GN', 'YE', 'GY', 'PK', 'BU', 'RD', 'BK', 'VT', 'GYPK', 'RDBU', 'WHGN', 'BNGN', 'WHYE', 'YEBN',
|
||||
'WHGY', 'GYBN', 'WHPK', 'PKBN', 'WHBU', 'BNBU', 'WHRD', 'BNRD', 'WHBK', 'BNBK', 'GYGN', 'YEGY', 'PKGN',
|
||||
'YEPK', 'GNBU', 'YEBU', 'GNRD', 'YERD', 'GNBK', 'YEBK', 'GYBU', 'PKBU', 'GYRD', 'PKRD', 'GYBK', 'PKBK',
|
||||
'BUBK', 'RDBK', 'WHBNBK', 'YEGNBK', 'GYPKBK', 'RDBUBK', 'WHGNBK', 'BNGNBK', 'WHYEBK', 'YEBNBK', 'WHGYBK',
|
||||
'GYBNBK', 'WHPKBK', 'PKBNBK', 'WHBUBK', 'BNBUBK', 'WHRDBK', 'BNRDBK'],
|
||||
'IEC': ['BN', 'RD', 'OG', 'YE', 'GN', 'BU', 'VT', 'GY', 'WH', 'BK'],
|
||||
'BW': ['BK', 'WH'],
|
||||
'TEL': ['BUWH', 'WHBU', 'OGWH', 'WHOG', 'GNWH', 'WHGN', 'BNWH', 'WHBN', 'SLWH', 'WHSL', 'BURD', 'RDBU', 'OGRD',
|
||||
'RDOG', 'GNRD', 'RDGN', 'BNRD', 'RDBN', 'SLRD', 'RDSL', 'BUBK', 'BKBU', 'OGBK', 'BKOG', 'GNBK', 'BKGN',
|
||||
'BNBK', 'BKBN', 'SLBK', 'BKSL', 'BUYW', 'YWBU', 'OGYW', 'YWOG', 'GNYW', 'YWGN', 'BNYW', 'YWBN', 'SLYW',
|
||||
'YWSL', 'BUVT', 'VTBU', 'OGVT', 'VTOG', 'GNVT', 'VTGN', 'BNVT', 'VTBN', 'SLVT', 'VTSL'],
|
||||
'TELALT': ['WHBU', 'BU', 'WHOG', 'OG', 'WHGN', 'GN', 'WHBN', 'BN', 'WHSL', 'SL', 'RDBU', 'BURD', 'RDOG', 'OGRD',
|
||||
'RDGN', 'GNRD', 'RDBN', 'BNRD', 'RDSL', 'SLRD', 'BKBU', 'BUBK', 'BKOG', 'OGBK', 'BKGN', 'GNBK', 'BKBN',
|
||||
'BNBK', 'BKSL', 'SLBK', 'YWBU', 'BUYW', 'YWOG', 'OGYW', 'YWGN', 'GNYW', 'YWBN', 'BNYW', 'YWSL', 'SLYW',
|
||||
'VTBU', 'BUVT', 'VTOG', 'OGVT', 'VTGN', 'GNVT', 'VTBN', 'BNVT', 'VTSL', 'SLVT'],
|
||||
'T568A': ['WHGN', 'GN', 'WHOG', 'BU', 'WHBU', 'OG', 'WHBN', 'BN'],
|
||||
'T568B': ['WHOG', 'OG', 'WHGN', 'BU', 'WHBU', 'GN', 'WHBN', 'BN'],
|
||||
}
|
||||
|
||||
color_hex = {
|
||||
# Convention: Color names should be 2 letters long, to allow for multicolored wires
|
||||
|
||||
_color_hex = {
|
||||
'BK': '#000000',
|
||||
'WH': '#ffffff',
|
||||
'GY': '#999999',
|
||||
@ -15,14 +33,23 @@ color_hex = {
|
||||
'RD': '#ff0000',
|
||||
'OG': '#ff8000',
|
||||
'YE': '#ffff00',
|
||||
'OL': '#708000', # olive green
|
||||
'GN': '#00ff00',
|
||||
'TQ': '#00ffff',
|
||||
'LB': '#a0dfff', # light blue
|
||||
'BU': '#0066ff',
|
||||
'VT': '#8000ff',
|
||||
'BN': '#666600',
|
||||
'BN': '#895956',
|
||||
'BG': '#ceb673', # beige
|
||||
'IV': '#f5f0d0', # ivory
|
||||
'SL': '#708090',
|
||||
'CU': '#d6775e', # Faux-copper look, for bare CU wire
|
||||
'SN': '#aaaaaa', # Silvery look for tinned bare wire
|
||||
'SR': '#84878c', # Darker silver for silvered wire
|
||||
'GD': '#ffcf80', # Golden color for gold
|
||||
}
|
||||
|
||||
color_full = {
|
||||
_color_full = {
|
||||
'BK': 'black',
|
||||
'WH': 'white',
|
||||
'GY': 'grey',
|
||||
@ -30,14 +57,23 @@ color_full = {
|
||||
'RD': 'red',
|
||||
'OG': 'orange',
|
||||
'YE': 'yellow',
|
||||
'OL': 'olive green',
|
||||
'GN': 'green',
|
||||
'TQ': 'turquoise',
|
||||
'LB': 'light blue',
|
||||
'BU': 'blue',
|
||||
'VT': 'violet',
|
||||
'BN': 'brown',
|
||||
'BG': 'beige',
|
||||
'IV': 'ivory',
|
||||
'SL': 'slate',
|
||||
'CU': 'copper',
|
||||
'SN': 'tin',
|
||||
'SR': 'silver',
|
||||
'GD': 'gold',
|
||||
}
|
||||
|
||||
color_ger = {
|
||||
_color_ger = {
|
||||
'BK': 'sw',
|
||||
'WH': 'ws',
|
||||
'GY': 'gr',
|
||||
@ -45,34 +81,61 @@ color_ger = {
|
||||
'RD': 'rt',
|
||||
'OG': 'or',
|
||||
'YE': 'ge',
|
||||
'OL': 'ol', # olivgrün
|
||||
'GN': 'gn',
|
||||
'TQ': 'tk',
|
||||
'LB': 'hb', # hellblau
|
||||
'BU': 'bl',
|
||||
'VT': 'vi',
|
||||
'BN': 'br',
|
||||
'BG': 'bg', # beige
|
||||
'IV': 'eb', # elfenbeinfarben
|
||||
'SL': 'si', # Schiefer
|
||||
'CU': 'ku', # Kupfer
|
||||
'SN': 'vz', # verzinkt
|
||||
'SR': 'ag', # Silber
|
||||
'GD': 'au', # Gold
|
||||
}
|
||||
|
||||
|
||||
def translate_color(inp, color_mode):
|
||||
if inp == '':
|
||||
output = ''
|
||||
else:
|
||||
if color_mode == 'full':
|
||||
output = color_full[inp].lower()
|
||||
elif color_mode == 'FULL':
|
||||
output = color_full[inp].upper()
|
||||
elif color_mode == 'hex':
|
||||
output = color_hex[inp].lower()
|
||||
elif color_mode == 'HEX':
|
||||
output = color_hex[inp].upper()
|
||||
elif color_mode == 'ger':
|
||||
output = color_ger[inp].lower()
|
||||
elif color_mode == 'GER':
|
||||
output = color_ger[inp].upper()
|
||||
elif color_mode == 'short':
|
||||
output = inp.lower()
|
||||
elif color_mode == 'SHORT':
|
||||
output = inp.upper()
|
||||
else:
|
||||
raise Exception('Unknown color mode')
|
||||
color_default = '#ffffff'
|
||||
|
||||
|
||||
def get_color_hex(input, pad=False):
|
||||
if input is None or input == '':
|
||||
return [color_default]
|
||||
if len(input) == 4: # give wires with EXACTLY 2 colors that striped/banded look
|
||||
input = input + input[:2]
|
||||
# hacky style fix: give single color wires a triple-up so that wires are the same size
|
||||
if pad and len(input) == 2:
|
||||
input = input + input + input
|
||||
try:
|
||||
output = [_color_hex[input[i:i + 2]] for i in range(0, len(input), 2)]
|
||||
except KeyError:
|
||||
print("Unknown color specified")
|
||||
output = [color_default]
|
||||
return output
|
||||
|
||||
|
||||
def translate_color(input, color_mode):
|
||||
if input == '' or input is None:
|
||||
return ''
|
||||
upper = color_mode.isupper()
|
||||
if not (color_mode.isupper() or color_mode.islower()):
|
||||
raise Exception('Unknown color mode capitalization')
|
||||
|
||||
color_mode = color_mode.lower()
|
||||
if color_mode == 'full':
|
||||
output = "/".join([_color_full[input[i:i+2]] for i in range(0,len(input),2)])
|
||||
elif color_mode == 'hex':
|
||||
output = ':'.join(get_color_hex(input, pad=False))
|
||||
elif color_mode == 'ger':
|
||||
output = "".join([_color_ger[input[i:i+2]] for i in range(0,len(input),2)])
|
||||
elif color_mode == 'short':
|
||||
output = input
|
||||
else:
|
||||
raise Exception('Unknown color mode')
|
||||
if upper:
|
||||
return output.upper()
|
||||
else:
|
||||
return output.lower()
|
||||
|
||||
@ -111,3 +111,10 @@ def graphviz_line_breaks(inp):
|
||||
|
||||
def remove_line_breaks(inp):
|
||||
return inp.replace('\n', ' ').rstrip() if isinstance(inp, str) else inp
|
||||
|
||||
def open_file_read(filename):
|
||||
# TODO: Intelligently determine encoding
|
||||
return open(filename, 'r', encoding='UTF-8')
|
||||
|
||||
def open_file_write(filename):
|
||||
return open(filename, 'w', encoding='UTF-8')
|
||||
@ -1,10 +1,10 @@
|
||||
# WireViz Tutorial
|
||||
## 1 - Bare-bones example
|
||||
|
||||
## 01 - Bare-bones example
|
||||
|
||||
* Minimum working example
|
||||
* Only 1-to-1 sequential wiring
|
||||
|
||||
[Source](tutorial01.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
@ -25,21 +25,17 @@ connections:
|
||||
- X2: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial01.bom.tsv)
|
||||
[Source](tutorial01.yml) - [Bill of Materials](tutorial01.bom.tsv)
|
||||
|
||||
|
||||
## 2 - Adding parameters and colors
|
||||
## 02 - Adding parameters and colors
|
||||
|
||||
* Parameters for connectors and cables
|
||||
* Auto-calculate equivalent AWG from mm2
|
||||
* Non-sequential wiring
|
||||
|
||||
[Source](tutorial02.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
@ -70,15 +66,12 @@ connections:
|
||||
- X2: [1,2,4,3]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial02.bom.tsv)
|
||||
[Source](tutorial02.yml) - [Bill of Materials](tutorial02.bom.tsv)
|
||||
|
||||
|
||||
## 3 - Pinouts, shielding, templates (I)
|
||||
## 03 - Pinouts, shielding, templates (I)
|
||||
|
||||
* Connector pinouts
|
||||
* Pincount implicit in pinout
|
||||
@ -86,12 +79,11 @@ Output:
|
||||
* Cable shielding, shield wiring
|
||||
* Templates
|
||||
|
||||
[Source](tutorial03.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
X1: &template1 # define a template for later use
|
||||
pinout: [GND, VCC, RX, TX] # pincount implicit in pinout
|
||||
pinlabels: [GND, VCC, RX, TX] # pincount implicit in pinout
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
X2:
|
||||
@ -116,15 +108,12 @@ connections:
|
||||
- W1: s
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial03.bom.tsv)
|
||||
[Source](tutorial03.yml) - [Bill of Materials](tutorial03.bom.tsv)
|
||||
|
||||
|
||||
## 4 - Templates (II), notes, American standards, daisy chaining (I)
|
||||
## 04 - Templates (II), notes, American standards, daisy chaining (I)
|
||||
|
||||
* Overriding template parameters
|
||||
* Add nodes to connectors and cables
|
||||
@ -132,12 +121,11 @@ Output:
|
||||
* Linear daisy-chain
|
||||
* Convenient for shorter chains
|
||||
|
||||
[Source](tutorial04.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
X1: &template_con
|
||||
pinout: [GND, VCC, SCL, SDA]
|
||||
pinlabels: [GND, VCC, SCL, SDA]
|
||||
type: Molex KK 254
|
||||
subtype: male
|
||||
notes: to microcontroller # add notes
|
||||
@ -173,15 +161,12 @@ connections:
|
||||
- X3: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial04.bom.tsv)
|
||||
[Source](tutorial04.yml) - [Bill of Materials](tutorial04.bom.tsv)
|
||||
|
||||
|
||||
## 5 - Ferrules, wire bundles, custom wire colors
|
||||
## 05 - Ferrules, wire bundles, custom wire colors
|
||||
|
||||
* Ferrules
|
||||
* Simpler than connectors
|
||||
@ -195,18 +180,17 @@ Output:
|
||||
* Custom wire colors
|
||||
* Wirecount can be implicit in color list
|
||||
|
||||
[Source](tutorial05.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
X1:
|
||||
pinout: [+12V, GND, GND, +5V]
|
||||
pinlabels: [+12V, GND, GND, +5V]
|
||||
type: Molex 8981
|
||||
subtype: female
|
||||
F1:
|
||||
category: ferrule
|
||||
style: simple
|
||||
autogenerate: true
|
||||
type: Ferrule, crimp
|
||||
type: Crimp ferrule
|
||||
subtype: 0.5 mm²
|
||||
color: OG # optional color
|
||||
|
||||
@ -218,47 +202,42 @@ cables:
|
||||
colors: [YE, BK, BK, RD] # custom colors, wirecount is implicit
|
||||
|
||||
connections:
|
||||
- # attach ferrules
|
||||
- F1 # no need for list of connections; one ferrule per wire is auto-generated and attached
|
||||
- W1: [1-4] # a new ferrule is auto-generated for each wire
|
||||
- # attach connectors (separately from ferrules)
|
||||
-
|
||||
- F1 # a new ferrule is auto-generated for each of the four wires
|
||||
- W1: [1-4]
|
||||
- X1: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial05.bom.tsv)
|
||||
[Source](tutorial05.yml) - [Bill of Materials](tutorial05.bom.tsv)
|
||||
|
||||
|
||||
## 6 - Custom ferrules
|
||||
## 06 - Custom ferrules
|
||||
|
||||
* Custom ferrules
|
||||
* Allows attaching more than one wire to a ferrule
|
||||
* Requires defining them as regular connectors with unique designators, adding `category: ferrule` parameter
|
||||
|
||||
[Source](tutorial06.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
X1:
|
||||
pinout: [+12V, GND, GND, +5V]
|
||||
pinlabels: [+12V, GND, GND, +5V]
|
||||
type: Molex 8981
|
||||
subtype: female
|
||||
F_10_1: # manually define a ferrule (with unique designator)
|
||||
category: ferrule
|
||||
type: Ferrule, crimp
|
||||
F_10: # this is a unique ferrule
|
||||
style: simple
|
||||
show_name: false # non-autogenerated connectors show their name by default; override
|
||||
type: Crimp ferrule
|
||||
subtype: 1.0 mm²
|
||||
color: YE
|
||||
F_05:
|
||||
category: ferrule
|
||||
color: YE # optional color
|
||||
F_05: # this is a ferrule that will be auto-generated on demand
|
||||
style: simple
|
||||
autogenerate: true
|
||||
type: Ferrule, crimp
|
||||
type: Crimp ferrule
|
||||
subtype: 0.5 mm²
|
||||
color: OG # optional color
|
||||
color: OG
|
||||
|
||||
cables:
|
||||
W1:
|
||||
@ -268,42 +247,29 @@ cables:
|
||||
colors: [YE, BK, BK, RD] # custom colors, wirecount is implicit
|
||||
|
||||
connections:
|
||||
- # attach ferrules
|
||||
- F_05
|
||||
- W1: [1,4] # a new ferrule is auto-generated for each wire
|
||||
- # attach connectors (separately from ferrules)
|
||||
- W1: [1-4]
|
||||
- X1: [1-4]
|
||||
-
|
||||
- F_10_1: 1 # manually defined ferrules are treated like regular connectors,
|
||||
# thus requiring a pin number
|
||||
- W1: 2
|
||||
-
|
||||
- F_10_1: 1
|
||||
- W1: 3
|
||||
-
|
||||
- [F_05, F_10, F_10, F_05]
|
||||
- W1: [1-4]
|
||||
- X1: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial06.bom.tsv)
|
||||
[Source](tutorial06.yml) - [Bill of Materials](tutorial06.bom.tsv)
|
||||
|
||||
|
||||
## 7 - Daisy chaining (II)
|
||||
## 07 - Daisy chaining (II)
|
||||
|
||||
* Zig-zag daisy chain
|
||||
* Convenient for longer chains
|
||||
|
||||
[Source](tutorial07.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
X1: &template_con
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
pinout: [GND, VCC, SCL, SDA]
|
||||
pinlabels: [GND, VCC, SCL, SDA]
|
||||
X2:
|
||||
<<: *template_con
|
||||
X3:
|
||||
@ -353,21 +319,17 @@ connections:
|
||||
- X6: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial07.bom.tsv)
|
||||
[Source](tutorial07.yml) - [Bill of Materials](tutorial07.bom.tsv)
|
||||
|
||||
|
||||
## 8 - Part numbers
|
||||
## 08 - Part numbers
|
||||
|
||||
* Part number information can be added to parts
|
||||
* Only provided fields will be added to the diagram and bom
|
||||
* Bundles can have part information specified by wire
|
||||
|
||||
[Source](tutorial08.yml):
|
||||
|
||||
```yaml
|
||||
connectors:
|
||||
@ -413,11 +375,8 @@ connections:
|
||||
- X3: [1-4]
|
||||
```
|
||||
|
||||
|
||||
Output:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](tutorial08.bom.tsv)
|
||||
[Source](tutorial08.yml) - [Bill of Materials](tutorial08.bom.tsv)
|
||||
|
||||
|
||||
|
||||
@ -4,8 +4,8 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{4-pin}|{{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}}"]
|
||||
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">4-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p1r">1</td></tr><tr><td port="p2r">2</td></tr><tr><td port="p3r">3</td></tr><tr><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">4-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p1l">1</td></tr><tr><td port="p2l">2</td></tr><tr><td port="p3l">3</td></tr><tr><td port="p4l">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
@ -18,5 +18,5 @@ graph {
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="2">W1</td></tr><tr><td>4x</td><td>1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td></td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td></td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td></td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td></td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="2">W1</td></tr><tr><td balign="left">4x</td><td balign="left">1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td></td><td>X2:1</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="#ffffff" 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</td><td></td><td>X2:2</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="#ffffff" 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</td><td></td><td>X2:3</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="#ffffff" 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</td><td></td><td>X2:4</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="#ffffff" 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=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
@ -11,18 +10,19 @@
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 54,-152 54,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="27" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 54,-129 "/>
|
||||
<text text-anchor="middle" x="27" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 54,-106 "/>
|
||||
<text text-anchor="middle" x="27" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 54,-83 "/>
|
||||
<text text-anchor="middle" x="27" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 54,-60 "/>
|
||||
<text text-anchor="middle" x="27" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 54,-37 "/>
|
||||
<text text-anchor="middle" x="27" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="54,-152 0,-152 0,-14 54,-14 54,-152"/>
|
||||
<polygon fill="none" stroke="black" points="8,-129 8,-152 47,-152 47,-129 8,-129"/>
|
||||
<text text-anchor="start" x="19" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="8,-106 8,-129 47,-129 47,-106 8,-106"/>
|
||||
<text text-anchor="start" x="12" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="8,-83 8,-106 47,-106 47,-83 8,-83"/>
|
||||
<text text-anchor="start" x="23.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="8,-60 8,-83 47,-83 47,-60 8,-60"/>
|
||||
<text text-anchor="start" x="23.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="8,-37 8,-60 47,-60 47,-37 8,-37"/>
|
||||
<text text-anchor="start" x="23.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="8,-14 8,-37 47,-37 47,-14 8,-14"/>
|
||||
<text text-anchor="start" x="23.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
@ -37,97 +37,98 @@
|
||||
<text text-anchor="start" x="230" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="200" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="236" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-94 198,-100 266,-100 266,-94 198,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-95 265,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-99 199,-99 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-98 198,-100 266,-100 266,-98 198,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-96 198,-98 266,-98 266,-96 198,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-94 198,-96 266,-96 266,-94 198,-94"/>
|
||||
<text text-anchor="start" x="200" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="236" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-69 198,-75 266,-75 266,-69 198,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-70 265,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-74 199,-74 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-73 198,-75 266,-75 266,-73 198,-73"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-71 198,-73 266,-73 266,-71 198,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-69 198,-71 266,-71 266,-69 198,-69"/>
|
||||
<text text-anchor="start" x="200" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="236" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-44 198,-50 266,-50 266,-44 198,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-45 265,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-49 199,-49 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-48 198,-50 266,-50 266,-48 198,-48"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-46 198,-48 266,-48 266,-46 198,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-44 198,-46 266,-46 266,-44 198,-44"/>
|
||||
<text text-anchor="start" x="200" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="236" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-19 198,-25 266,-25 266,-19 198,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-20 265,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-24 199,-24 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-23 198,-25 266,-25 266,-23 198,-23"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-21 198,-23 266,-23 266,-21 198,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-19 198,-21 266,-21 266,-19 198,-19"/>
|
||||
<text text-anchor="start" x="212" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-93C118.25,-93.02 134.24,-95.02 198,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-95C118.01,-95 133.99,-97 198,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-97C117.76,-96.98 133.75,-98.98 198,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-93C114.91,-93.01 131.57,-95.01 198,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-95C114.67,-95 131.33,-97 198,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-97C114.43,-96.99 131.09,-98.99 198,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-69C118.13,-69 134.12,-70 198,-70"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-71C118,-71 134,-72 198,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-73C117.88,-73 133.87,-74 198,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-69C114.79,-69 131.45,-70 198,-70"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-71C114.67,-71 131.33,-72 198,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-73C114.55,-73 131.21,-74 198,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-46C117.88,-46 133.87,-45 198,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-48C118,-48 134,-47 198,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-50C118.13,-50 134.12,-49 198,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-46C114.55,-46 131.21,-45 198,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-48C114.67,-48 131.33,-47 198,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-50C114.79,-50 131.45,-49 198,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-23C117.64,-23.03 133.62,-20.03 198,-20"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-25C118.01,-25 133.99,-22 198,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-27C118.38,-26.97 134.36,-23.97 198,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-23C114.33,-23.03 130.97,-20.03 198,-20"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-25C114.68,-25 131.32,-22 198,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-27C115.03,-26.97 131.67,-23.97 198,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="410,-14 410,-152 464,-152 464,-14 410,-14"/>
|
||||
<text text-anchor="middle" x="437" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="410,-129 464,-129 "/>
|
||||
<text text-anchor="middle" x="437" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="410,-106 464,-106 "/>
|
||||
<text text-anchor="middle" x="437" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="410,-83 464,-83 "/>
|
||||
<text text-anchor="middle" x="437" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="410,-60 464,-60 "/>
|
||||
<text text-anchor="middle" x="437" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="410,-37 464,-37 "/>
|
||||
<text text-anchor="middle" x="437" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="464,-152 410,-152 410,-14 464,-14 464,-152"/>
|
||||
<polygon fill="none" stroke="black" points="418,-129 418,-152 457,-152 457,-129 418,-129"/>
|
||||
<text text-anchor="start" x="429" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="418,-106 418,-129 457,-129 457,-106 418,-106"/>
|
||||
<text text-anchor="start" x="422" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="418,-83 418,-106 457,-106 457,-83 418,-83"/>
|
||||
<text text-anchor="start" x="433.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="418,-60 418,-83 457,-83 457,-60 418,-60"/>
|
||||
<text text-anchor="start" x="433.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="418,-37 418,-60 457,-60 457,-37 418,-37"/>
|
||||
<text text-anchor="start" x="433.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="418,-14 418,-37 457,-37 457,-14 418,-14"/>
|
||||
<text text-anchor="start" x="433.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-95C329.76,-95.02 345.75,-93.02 410,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-97C330.01,-97 345.99,-95 410,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-99C330.25,-98.98 346.24,-96.98 410,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-95C332.88,-95.01 349.65,-93.01 417,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-97C333.12,-97 349.88,-95 417,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-99C333.35,-98.99 350.12,-96.99 417,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-70C329.88,-70 345.87,-69 410,-69"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-72C330,-72 346,-71 410,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-74C330.13,-74 346.12,-73 410,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-70C332.99,-70 349.77,-69 417,-69"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-72C333.11,-72 349.89,-71 417,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-74C333.23,-74 350.01,-73 417,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-45C330.13,-45 346.12,-46 410,-46"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-47C330,-47 346,-48 410,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-49C329.88,-49 345.87,-50 410,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-45C333.23,-45 350.01,-46 417,-46"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-47C333.11,-47 349.89,-48 417,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-49C332.99,-49 349.77,-50 417,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-20C330.38,-20.03 346.36,-23.03 410,-23"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-22C330.01,-22 345.99,-25 410,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-24C329.64,-23.97 345.62,-26.97 410,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-20C333.48,-20.03 350.23,-23.03 417,-23"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-22C333.12,-22 349.88,-25 417,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-24C332.77,-23.97 349.52,-26.97 417,-27"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@ -11,18 +11,19 @@
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 54,-152 54,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="27" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 54,-129 "/>
|
||||
<text text-anchor="middle" x="27" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 54,-106 "/>
|
||||
<text text-anchor="middle" x="27" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 54,-83 "/>
|
||||
<text text-anchor="middle" x="27" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 54,-60 "/>
|
||||
<text text-anchor="middle" x="27" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 54,-37 "/>
|
||||
<text text-anchor="middle" x="27" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="54,-152 0,-152 0,-14 54,-14 54,-152"/>
|
||||
<polygon fill="none" stroke="black" points="8,-129 8,-152 47,-152 47,-129 8,-129"/>
|
||||
<text text-anchor="start" x="19" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="8,-106 8,-129 47,-129 47,-106 8,-106"/>
|
||||
<text text-anchor="start" x="12" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="8,-83 8,-106 47,-106 47,-83 8,-83"/>
|
||||
<text text-anchor="start" x="23.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="8,-60 8,-83 47,-83 47,-60 8,-60"/>
|
||||
<text text-anchor="start" x="23.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="8,-37 8,-60 47,-60 47,-37 8,-37"/>
|
||||
<text text-anchor="start" x="23.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="8,-14 8,-37 47,-37 47,-14 8,-14"/>
|
||||
<text text-anchor="start" x="23.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
@ -37,97 +38,98 @@
|
||||
<text text-anchor="start" x="230" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="200" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="236" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-94 198,-100 266,-100 266,-94 198,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-95 265,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-99 199,-99 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-98 198,-100 266,-100 266,-98 198,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-96 198,-98 266,-98 266,-96 198,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-94 198,-96 266,-96 266,-94 198,-94"/>
|
||||
<text text-anchor="start" x="200" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="236" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-69 198,-75 266,-75 266,-69 198,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-70 265,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-74 199,-74 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-73 198,-75 266,-75 266,-73 198,-73"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-71 198,-73 266,-73 266,-71 198,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-69 198,-71 266,-71 266,-69 198,-69"/>
|
||||
<text text-anchor="start" x="200" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="236" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-44 198,-50 266,-50 266,-44 198,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-45 265,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-49 199,-49 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-48 198,-50 266,-50 266,-48 198,-48"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-46 198,-48 266,-48 266,-46 198,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-44 198,-46 266,-46 266,-44 198,-44"/>
|
||||
<text text-anchor="start" x="200" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="236" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" stroke-width="2" points="198,-19 198,-25 266,-25 266,-19 198,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="199,-20 265,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="265,-24 199,-24 "/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-23 198,-25 266,-25 266,-23 198,-23"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="198,-21 198,-23 266,-23 266,-21 198,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="198,-19 198,-21 266,-21 266,-19 198,-19"/>
|
||||
<text text-anchor="start" x="212" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-93C118.25,-93.02 134.24,-95.02 198,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-95C118.01,-95 133.99,-97 198,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-97C117.76,-96.98 133.75,-98.98 198,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-93C114.91,-93.01 131.57,-95.01 198,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-95C114.67,-95 131.33,-97 198,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-97C114.43,-96.99 131.09,-98.99 198,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-69C118.13,-69 134.12,-70 198,-70"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-71C118,-71 134,-72 198,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-73C117.88,-73 133.87,-74 198,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-69C114.79,-69 131.45,-70 198,-70"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-71C114.67,-71 131.33,-72 198,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-73C114.55,-73 131.21,-74 198,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-46C117.88,-46 133.87,-45 198,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-48C118,-48 134,-47 198,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-50C118.13,-50 134.12,-49 198,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-46C114.55,-46 131.21,-45 198,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-48C114.67,-48 131.33,-47 198,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-50C114.79,-50 131.45,-49 198,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-23C117.64,-23.03 133.62,-20.03 198,-20"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M54,-25C118.01,-25 133.99,-22 198,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M54,-27C118.38,-26.97 134.36,-23.97 198,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-23C114.33,-23.03 130.97,-20.03 198,-20"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M48,-25C114.68,-25 131.32,-22 198,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M48,-27C115.03,-26.97 131.67,-23.97 198,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="410,-14 410,-152 464,-152 464,-14 410,-14"/>
|
||||
<text text-anchor="middle" x="437" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="410,-129 464,-129 "/>
|
||||
<text text-anchor="middle" x="437" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="410,-106 464,-106 "/>
|
||||
<text text-anchor="middle" x="437" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="410,-83 464,-83 "/>
|
||||
<text text-anchor="middle" x="437" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="410,-60 464,-60 "/>
|
||||
<text text-anchor="middle" x="437" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="410,-37 464,-37 "/>
|
||||
<text text-anchor="middle" x="437" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="464,-152 410,-152 410,-14 464,-14 464,-152"/>
|
||||
<polygon fill="none" stroke="black" points="418,-129 418,-152 457,-152 457,-129 418,-129"/>
|
||||
<text text-anchor="start" x="429" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="418,-106 418,-129 457,-129 457,-106 418,-106"/>
|
||||
<text text-anchor="start" x="422" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="418,-83 418,-106 457,-106 457,-83 418,-83"/>
|
||||
<text text-anchor="start" x="433.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="418,-60 418,-83 457,-83 457,-60 418,-60"/>
|
||||
<text text-anchor="start" x="433.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="418,-37 418,-60 457,-60 457,-37 418,-37"/>
|
||||
<text text-anchor="start" x="433.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="418,-14 418,-37 457,-37 457,-14 418,-14"/>
|
||||
<text text-anchor="start" x="433.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-95C329.76,-95.02 345.75,-93.02 410,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-97C330.01,-97 345.99,-95 410,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-99C330.25,-98.98 346.24,-96.98 410,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-95C332.88,-95.01 349.65,-93.01 417,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-97C333.12,-97 349.88,-95 417,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-99C333.35,-98.99 350.12,-96.99 417,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-70C329.88,-70 345.87,-69 410,-69"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-72C330,-72 346,-71 410,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-74C330.13,-74 346.12,-73 410,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-70C332.99,-70 349.77,-69 417,-69"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-72C333.11,-72 349.89,-71 417,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-74C333.23,-74 350.01,-73 417,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-45C330.13,-45 346.12,-46 410,-46"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-47C330,-47 346,-48 410,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-49C329.88,-49 345.87,-50 410,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-45C333.23,-45 350.01,-46 417,-46"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-47C333.11,-47 349.89,-48 417,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-49C332.99,-49 349.77,-50 417,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-20C330.38,-20.03 346.36,-23.03 410,-23"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-22C330.01,-22 345.99,-25 410,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-24C329.64,-23.97 345.62,-26.97 410,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-20C333.48,-20.03 350.23,-23.03 417,-23"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M266,-22C333.12,-22 349.88,-25 417,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M266,-24C332.77,-23.97 349.52,-26.97 417,-27"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.7 KiB |
@ -4,12 +4,12 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|4-pin}|{{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}}"]
|
||||
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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p1r">1</td></tr><tr><td port="p2r">2</td></tr><tr><td port="p3r">3</td></tr><tr><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p1l">1</td></tr><tr><td port="p2l">2</td></tr><tr><td port="p3l">3</td></tr><tr><td port="p4l">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
@ -18,5 +18,5 @@ graph {
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p3l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>4x</td><td>0.25 mm² (24 AWG)</td><td>1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>WH</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>BN</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>GN</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>WH</td><td>X2:1</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="#ffffff" 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</td><td>BN</td><td>X2:2</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="#895956" 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</td><td>GN</td><td>X2:4</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="#00ff00" 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</td><td>YE</td><td>X2:3</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="#ffff00" 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=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,148 +1,149 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="895pt" height="188pt"
|
||||
viewBox="0.00 0.00 895.00 188.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="847pt" height="188pt"
|
||||
viewBox="0.00 0.00 847.00 188.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 184)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 891,-184 891,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 843,-184 843,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 206,-152 206,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="103" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 206,-129 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-106 101,-129 "/>
|
||||
<text text-anchor="middle" x="130" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-106 159,-129 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 206,-106 "/>
|
||||
<text text-anchor="middle" x="103" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 206,-83 "/>
|
||||
<text text-anchor="middle" x="103" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 206,-60 "/>
|
||||
<text text-anchor="middle" x="103" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 206,-37 "/>
|
||||
<text text-anchor="middle" x="103" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 182,-106 182,-83 0,-83"/>
|
||||
<text text-anchor="start" x="87" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 182,-83 182,-60 0,-60"/>
|
||||
<text text-anchor="start" x="87" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 182,-60 182,-37 0,-37"/>
|
||||
<text text-anchor="start" x="87" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 182,-37 182,-14 0,-14"/>
|
||||
<text text-anchor="start" x="87" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="537,-180 350,-180 350,0 537,0 537,-180"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-157 350.5,-180 537.5,-180 537.5,-157 350.5,-157"/>
|
||||
<text text-anchor="start" x="433" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-134 350.5,-157 373.5,-157 373.5,-134 350.5,-134"/>
|
||||
<text text-anchor="start" x="354.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373.5,-134 373.5,-157 505.5,-157 505.5,-134 373.5,-134"/>
|
||||
<text text-anchor="start" x="377.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505.5,-134 505.5,-157 537.5,-157 537.5,-134 505.5,-134"/>
|
||||
<text text-anchor="start" x="509.5" y="-141.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="442" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="432.5" y="-105.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="492" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="350.5,-94 350.5,-100 537.5,-100 537.5,-94 350.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-95 536.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-99 351.5,-99 "/>
|
||||
<text text-anchor="start" x="368.5" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="435" y="-80.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="492" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="350.5,-69 350.5,-75 537.5,-75 537.5,-69 350.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-70 536.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-74 351.5,-74 "/>
|
||||
<text text-anchor="start" x="368.5" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="433.5" y="-55.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="492" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350.5,-44 350.5,-50 537.5,-50 537.5,-44 350.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-45 536.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-49 351.5,-49 "/>
|
||||
<text text-anchor="start" x="368.5" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="435" y="-30.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="492" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-19 350.5,-25 537.5,-25 537.5,-19 350.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 536.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-24 351.5,-24 "/>
|
||||
<text text-anchor="start" x="380.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="513,-180 326,-180 326,0 513,0 513,-180"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-157 326.5,-180 513.5,-180 513.5,-157 326.5,-157"/>
|
||||
<text text-anchor="start" x="409" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-134 326.5,-157 349.5,-157 349.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="330.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-134 349.5,-157 481.5,-157 481.5,-134 349.5,-134"/>
|
||||
<text text-anchor="start" x="353.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="481.5,-134 481.5,-157 513.5,-157 513.5,-134 481.5,-134"/>
|
||||
<text text-anchor="start" x="485.5" y="-141.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="418" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="408.5" y="-105.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="468" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-98 326.5,-100 513.5,-100 513.5,-98 326.5,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="326.5,-96 326.5,-98 513.5,-98 513.5,-96 326.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-94 326.5,-96 513.5,-96 513.5,-94 326.5,-94"/>
|
||||
<text text-anchor="start" x="344.5" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="411" y="-80.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="468" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-73 326.5,-75 513.5,-75 513.5,-73 326.5,-73"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-71 326.5,-73 513.5,-73 513.5,-71 326.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-69 326.5,-71 513.5,-71 513.5,-69 326.5,-69"/>
|
||||
<text text-anchor="start" x="344.5" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="409.5" y="-55.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="468" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-48 326.5,-50 513.5,-50 513.5,-48 326.5,-48"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="326.5,-46 326.5,-48 513.5,-48 513.5,-46 326.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-44 326.5,-46 513.5,-46 513.5,-44 326.5,-44"/>
|
||||
<text text-anchor="start" x="344.5" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="411" y="-30.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="468" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-23 326.5,-25 513.5,-25 513.5,-23 326.5,-23"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-21 326.5,-23 513.5,-23 513.5,-21 326.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-19 326.5,-21 513.5,-21 513.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="356.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270.25,-93.02 286.24,-95.02 350,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M206,-95C270.01,-95 285.99,-97 350,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-97C269.76,-96.98 285.75,-98.98 350,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-69C270.13,-69 286.12,-70 350,-70"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-71C270,-71 286,-72 350,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-73C269.88,-73 285.87,-74 350,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-46C269.88,-46 285.87,-45 350,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-48C270,-48 286,-47 350,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-50C270.13,-50 286.12,-49 350,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-23C269.64,-23.03 285.62,-20.03 350,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-25C270.01,-25 285.99,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-27C270.38,-26.97 286.36,-23.97 350,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="681,-16 681,-154 887,-154 887,-16 681,-16"/>
|
||||
<text text-anchor="middle" x="784" y="-138.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="681,-131 887,-131 "/>
|
||||
<text text-anchor="middle" x="731.5" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="782,-108 782,-131 "/>
|
||||
<text text-anchor="middle" x="811" y="-115.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="840,-108 840,-131 "/>
|
||||
<text text-anchor="middle" x="863.5" y="-115.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="681,-108 887,-108 "/>
|
||||
<text text-anchor="middle" x="784" y="-92.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="681,-85 887,-85 "/>
|
||||
<text text-anchor="middle" x="784" y="-69.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="681,-62 887,-62 "/>
|
||||
<text text-anchor="middle" x="784" y="-46.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="681,-39 887,-39 "/>
|
||||
<text text-anchor="middle" x="784" y="-23.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="839,-154 657,-154 657,-16 839,-16 839,-154"/>
|
||||
<polygon fill="none" stroke="black" points="657,-131 657,-154 839,-154 839,-131 657,-131"/>
|
||||
<text text-anchor="start" x="739.5" y="-138.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="657,-108 657,-131 750,-131 750,-108 657,-108"/>
|
||||
<text text-anchor="start" x="661" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="750,-108 750,-131 800,-131 800,-108 750,-108"/>
|
||||
<text text-anchor="start" x="754" y="-115.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="800,-108 800,-131 839,-131 839,-108 800,-108"/>
|
||||
<text text-anchor="start" x="804" y="-115.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="657,-85 657,-108 839,-108 839,-85 657,-85"/>
|
||||
<text text-anchor="start" x="744" y="-92.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="657,-62 657,-85 839,-85 839,-62 657,-62"/>
|
||||
<text text-anchor="start" x="744" y="-69.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="657,-39 657,-62 839,-62 839,-39 657,-39"/>
|
||||
<text text-anchor="start" x="744" y="-46.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="657,-16 657,-39 839,-39 839,-16 657,-16"/>
|
||||
<text text-anchor="start" x="744" y="-23.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-95C601,-95 617,-95 681,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M537,-97C601,-97 617,-97 681,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-99C601,-99 617,-99 681,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C577,-95 593,-95 657,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M513,-97C577,-97 593,-97 657,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577,-99 593,-99 657,-99"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-70C601.13,-70 617.12,-71 681,-71"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M537,-72C601,-72 617,-73 681,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-74C600.88,-74 616.87,-75 681,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C577.13,-70 593.12,-71 657,-71"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M513,-72C577,-72 593,-73 657,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C576.88,-74 592.87,-75 657,-75"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-45C600.01,-45.81 614.78,-25.81 681,-25"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M537,-47C601.61,-47 616.39,-27 681,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-49C603.22,-48.19 617.99,-28.19 681,-29"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C576.01,-45.81 590.78,-25.81 657,-25"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M513,-47C577.61,-47 592.39,-27 657,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C579.22,-48.19 593.99,-28.19 657,-29"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-20C604,-21.13 617.6,-49.13 681,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M537,-22C602.2,-22 615.8,-50 681,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-24C600.4,-22.87 614,-50.87 681,-52"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C580,-21.13 593.6,-49.13 657,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-22C578.2,-22 591.8,-50 657,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.4,-22.87 590,-50.87 657,-52"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 4 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 4 x 0.25 mm²</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
@ -4,144 +4,146 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="895pt" height="188pt"
|
||||
viewBox="0.00 0.00 895.00 188.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="847pt" height="188pt"
|
||||
viewBox="0.00 0.00 847.00 188.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 184)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 891,-184 891,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-184 843,-184 843,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-14 0,-152 206,-152 206,-14 0,-14"/>
|
||||
<text text-anchor="middle" x="103" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-129 206,-129 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-106 101,-129 "/>
|
||||
<text text-anchor="middle" x="130" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-106 159,-129 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-106 206,-106 "/>
|
||||
<text text-anchor="middle" x="103" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-83 206,-83 "/>
|
||||
<text text-anchor="middle" x="103" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="0,-60 206,-60 "/>
|
||||
<text text-anchor="middle" x="103" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="0,-37 206,-37 "/>
|
||||
<text text-anchor="middle" x="103" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 182,-106 182,-83 0,-83"/>
|
||||
<text text-anchor="start" x="87" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 182,-83 182,-60 0,-60"/>
|
||||
<text text-anchor="start" x="87" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 182,-60 182,-37 0,-37"/>
|
||||
<text text-anchor="start" x="87" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 182,-37 182,-14 0,-14"/>
|
||||
<text text-anchor="start" x="87" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="537,-180 350,-180 350,0 537,0 537,-180"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-157 350.5,-180 537.5,-180 537.5,-157 350.5,-157"/>
|
||||
<text text-anchor="start" x="433" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-134 350.5,-157 373.5,-157 373.5,-134 350.5,-134"/>
|
||||
<text text-anchor="start" x="354.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373.5,-134 373.5,-157 505.5,-157 505.5,-134 373.5,-134"/>
|
||||
<text text-anchor="start" x="377.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505.5,-134 505.5,-157 537.5,-157 537.5,-134 505.5,-134"/>
|
||||
<text text-anchor="start" x="509.5" y="-141.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="442" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="432.5" y="-105.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="492" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="350.5,-94 350.5,-100 537.5,-100 537.5,-94 350.5,-94"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-95 536.5,-95 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-99 351.5,-99 "/>
|
||||
<text text-anchor="start" x="368.5" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="435" y="-80.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="492" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="350.5,-69 350.5,-75 537.5,-75 537.5,-69 350.5,-69"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-70 536.5,-70 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-74 351.5,-74 "/>
|
||||
<text text-anchor="start" x="368.5" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="433.5" y="-55.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="492" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350.5,-44 350.5,-50 537.5,-50 537.5,-44 350.5,-44"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-45 536.5,-45 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-49 351.5,-49 "/>
|
||||
<text text-anchor="start" x="368.5" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="435" y="-30.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="492" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-19 350.5,-25 537.5,-25 537.5,-19 350.5,-19"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 536.5,-20 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="536.5,-24 351.5,-24 "/>
|
||||
<text text-anchor="start" x="380.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="513,-180 326,-180 326,0 513,0 513,-180"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-157 326.5,-180 513.5,-180 513.5,-157 326.5,-157"/>
|
||||
<text text-anchor="start" x="409" y="-164.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-134 326.5,-157 349.5,-157 349.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="330.5" y="-141.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-134 349.5,-157 481.5,-157 481.5,-134 349.5,-134"/>
|
||||
<text text-anchor="start" x="353.5" y="-141.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="481.5,-134 481.5,-157 513.5,-157 513.5,-134 481.5,-134"/>
|
||||
<text text-anchor="start" x="485.5" y="-141.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="418" y="-122.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="408.5" y="-105.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="468" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-98 326.5,-100 513.5,-100 513.5,-98 326.5,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="326.5,-96 326.5,-98 513.5,-98 513.5,-96 326.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-94 326.5,-96 513.5,-96 513.5,-94 326.5,-94"/>
|
||||
<text text-anchor="start" x="344.5" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="411" y="-80.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="468" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-73 326.5,-75 513.5,-75 513.5,-73 326.5,-73"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-71 326.5,-73 513.5,-73 513.5,-71 326.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-69 326.5,-71 513.5,-71 513.5,-69 326.5,-69"/>
|
||||
<text text-anchor="start" x="344.5" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="409.5" y="-55.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="468" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-48 326.5,-50 513.5,-50 513.5,-48 326.5,-48"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="326.5,-46 326.5,-48 513.5,-48 513.5,-46 326.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-44 326.5,-46 513.5,-46 513.5,-44 326.5,-44"/>
|
||||
<text text-anchor="start" x="344.5" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="411" y="-30.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="468" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-23 326.5,-25 513.5,-25 513.5,-23 326.5,-23"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-21 326.5,-23 513.5,-23 513.5,-21 326.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-19 326.5,-21 513.5,-21 513.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="356.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270.25,-93.02 286.24,-95.02 350,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M206,-95C270.01,-95 285.99,-97 350,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-97C269.76,-96.98 285.75,-98.98 350,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-69C270.13,-69 286.12,-70 350,-70"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-71C270,-71 286,-72 350,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-73C269.88,-73 285.87,-74 350,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-46C269.88,-46 285.87,-45 350,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-48C270,-48 286,-47 350,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-50C270.13,-50 286.12,-49 350,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-23C269.64,-23.03 285.62,-20.03 350,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-25C270.01,-25 285.99,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-27C270.38,-26.97 286.36,-23.97 350,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="681,-16 681,-154 887,-154 887,-16 681,-16"/>
|
||||
<text text-anchor="middle" x="784" y="-138.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="681,-131 887,-131 "/>
|
||||
<text text-anchor="middle" x="731.5" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="782,-108 782,-131 "/>
|
||||
<text text-anchor="middle" x="811" y="-115.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="840,-108 840,-131 "/>
|
||||
<text text-anchor="middle" x="863.5" y="-115.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="681,-108 887,-108 "/>
|
||||
<text text-anchor="middle" x="784" y="-92.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="681,-85 887,-85 "/>
|
||||
<text text-anchor="middle" x="784" y="-69.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="681,-62 887,-62 "/>
|
||||
<text text-anchor="middle" x="784" y="-46.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="681,-39 887,-39 "/>
|
||||
<text text-anchor="middle" x="784" y="-23.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="839,-154 657,-154 657,-16 839,-16 839,-154"/>
|
||||
<polygon fill="none" stroke="black" points="657,-131 657,-154 839,-154 839,-131 657,-131"/>
|
||||
<text text-anchor="start" x="739.5" y="-138.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="657,-108 657,-131 750,-131 750,-108 657,-108"/>
|
||||
<text text-anchor="start" x="661" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="750,-108 750,-131 800,-131 800,-108 750,-108"/>
|
||||
<text text-anchor="start" x="754" y="-115.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="800,-108 800,-131 839,-131 839,-108 800,-108"/>
|
||||
<text text-anchor="start" x="804" y="-115.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="657,-85 657,-108 839,-108 839,-85 657,-85"/>
|
||||
<text text-anchor="start" x="744" y="-92.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="657,-62 657,-85 839,-85 839,-62 657,-62"/>
|
||||
<text text-anchor="start" x="744" y="-69.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="657,-39 657,-62 839,-62 839,-39 657,-39"/>
|
||||
<text text-anchor="start" x="744" y="-46.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="657,-16 657,-39 839,-39 839,-16 657,-16"/>
|
||||
<text text-anchor="start" x="744" y="-23.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-95C601,-95 617,-95 681,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M537,-97C601,-97 617,-97 681,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-99C601,-99 617,-99 681,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C577,-95 593,-95 657,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M513,-97C577,-97 593,-97 657,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577,-99 593,-99 657,-99"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-70C601.13,-70 617.12,-71 681,-71"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M537,-72C601,-72 617,-73 681,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-74C600.88,-74 616.87,-75 681,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C577.13,-70 593.12,-71 657,-71"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M513,-72C577,-72 593,-73 657,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C576.88,-74 592.87,-75 657,-75"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-45C600.01,-45.81 614.78,-25.81 681,-25"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M537,-47C601.61,-47 616.39,-27 681,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-49C603.22,-48.19 617.99,-28.19 681,-29"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C576.01,-45.81 590.78,-25.81 657,-25"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M513,-47C577.61,-47 592.39,-27 657,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C579.22,-48.19 593.99,-28.19 657,-29"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-20C604,-21.13 617.6,-49.13 681,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M537,-22C602.2,-22 615.8,-50 681,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M537,-24C600.4,-22.87 614,-50.87 681,-52"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C580,-21.13 593.6,-49.13 657,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-22C578.2,-22 591.8,-50 657,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.4,-22.87 590,-50.87 657,-52"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 10 KiB |
@ -4,12 +4,12 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|female|4-pin}|{{GND|VCC|RX|TX}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|RX|TX}}"]
|
||||
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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>RX</td><td port="p3r">3</td></tr><tr><td>TX</td><td port="p4r">4</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>RX</td></tr><tr><td port="p4l">4</td><td>TX</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
@ -18,7 +18,7 @@ graph {
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p3l:w
|
||||
edge [color="#000000"]
|
||||
edge [color="#000000:#aaaaaa:#000000"]
|
||||
X1:p1r:e -- W1:ws:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td>4x</td><td>0.25 mm² (24 AWG)</td><td>+ S</td><td>1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>WH</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffffff" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>BN</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>GN</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#00ff00" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>YE</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr><tr><td>X1:1</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="4">W1</td></tr><tr><td balign="left">4x</td><td balign="left">0.25 mm² (24 AWG)</td><td balign="left">+ S</td><td balign="left">1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>WH</td><td>X2:1</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="#ffffff" 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</td><td>BN</td><td>X2:2</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="#895956" 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</td><td>GN</td><td>X2:4</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="#00ff00" 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</td><td>YE</td><td>X2:3</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="#ffff00" 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><tr><td>X1:1</td><td>Shield</td><td><!-- s_out --></td></tr><tr><td colspan="3" cellpadding="0" height="6" border="2" sides="b" port="ws"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,175 +1,178 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="925pt" height="232pt"
|
||||
viewBox="0.00 0.00 925.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="877pt" height="232pt"
|
||||
viewBox="0.00 0.00 877.00 232.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 228)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 921,-228 921,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 873,-228 873,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-57 0,-195 206,-195 206,-57 0,-57"/>
|
||||
<text text-anchor="middle" x="103" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-172 206,-172 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-149 101,-172 "/>
|
||||
<text text-anchor="middle" x="130" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-149 159,-172 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-149 206,-149 "/>
|
||||
<text text-anchor="middle" x="57" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-126 114,-126 "/>
|
||||
<text text-anchor="middle" x="57" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-103 114,-103 "/>
|
||||
<text text-anchor="middle" x="57" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-80 114,-80 "/>
|
||||
<text text-anchor="middle" x="57" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="114,-57 114,-149 "/>
|
||||
<text text-anchor="middle" x="160" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-126 206,-126 "/>
|
||||
<text text-anchor="middle" x="160" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-103 206,-103 "/>
|
||||
<text text-anchor="middle" x="160" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-80 206,-80 "/>
|
||||
<text text-anchor="middle" x="160" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-195 0,-195 0,-57 182,-57 182,-195"/>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 182,-195 182,-172 0,-172"/>
|
||||
<text text-anchor="start" x="82.5" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 93,-172 93,-149 0,-149"/>
|
||||
<text text-anchor="start" x="4" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-149 93,-172 143,-172 143,-149 93,-149"/>
|
||||
<text text-anchor="start" x="97" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-149 143,-172 182,-172 182,-149 143,-149"/>
|
||||
<text text-anchor="start" x="147" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 103,-149 103,-126 0,-126"/>
|
||||
<text text-anchor="start" x="36" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-126 103,-149 182,-149 182,-126 103,-126"/>
|
||||
<text text-anchor="start" x="138.5" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 103,-126 103,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-103 103,-126 182,-126 182,-103 103,-103"/>
|
||||
<text text-anchor="start" x="138.5" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 103,-103 103,-80 0,-80"/>
|
||||
<text text-anchor="start" x="42" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-80 103,-103 182,-103 182,-80 103,-80"/>
|
||||
<text text-anchor="start" x="138.5" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 103,-80 103,-57 0,-57"/>
|
||||
<text text-anchor="start" x="42.5" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-57 103,-80 182,-80 182,-57 103,-57"/>
|
||||
<text text-anchor="start" x="138.5" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="567,-224 350,-224 350,0 567,0 567,-224"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-201 350.5,-224 567.5,-224 567.5,-201 350.5,-201"/>
|
||||
<text text-anchor="start" x="448" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-178 350.5,-201 373.5,-201 373.5,-178 350.5,-178"/>
|
||||
<text text-anchor="start" x="354.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373.5,-178 373.5,-201 505.5,-201 505.5,-178 373.5,-178"/>
|
||||
<text text-anchor="start" x="377.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505.5,-178 505.5,-201 535.5,-201 535.5,-178 505.5,-178"/>
|
||||
<text text-anchor="start" x="509.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="535.5,-178 535.5,-201 567.5,-201 567.5,-178 535.5,-178"/>
|
||||
<text text-anchor="start" x="539.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="457" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="371" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="447" y="-149.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="519" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="350.5,-138 350.5,-144 567.5,-144 567.5,-138 350.5,-138"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-139 566.5,-139 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-143 351.5,-143 "/>
|
||||
<text text-anchor="start" x="371" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="449.5" y="-124.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="519" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="350.5,-113 350.5,-119 567.5,-119 567.5,-113 350.5,-113"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-114 566.5,-114 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-118 351.5,-118 "/>
|
||||
<text text-anchor="start" x="371" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="448" y="-99.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="519" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350.5,-88 350.5,-94 567.5,-94 567.5,-88 350.5,-88"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-89 566.5,-89 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-93 351.5,-93 "/>
|
||||
<text text-anchor="start" x="371" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="449.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="519" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-63 350.5,-69 567.5,-69 567.5,-63 350.5,-63"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-64 566.5,-64 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-68 351.5,-68 "/>
|
||||
<text text-anchor="start" x="383" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="371" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="440" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 566.5,-20 "/>
|
||||
<text text-anchor="start" x="383" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="543,-224 326,-224 326,0 543,0 543,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 543.5,-224 543.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="424" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 349.5,-201 349.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-178 349.5,-201 481.5,-201 481.5,-178 349.5,-178"/>
|
||||
<text text-anchor="start" x="353.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="481.5,-178 481.5,-201 511.5,-201 511.5,-178 481.5,-178"/>
|
||||
<text text-anchor="start" x="485.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="511.5,-178 511.5,-201 543.5,-201 543.5,-178 511.5,-178"/>
|
||||
<text text-anchor="start" x="515.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="433" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="347" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="423" y="-149.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="495" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-142 326.5,-144 543.5,-144 543.5,-142 326.5,-142"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="326.5,-140 326.5,-142 543.5,-142 543.5,-140 326.5,-140"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-138 326.5,-140 543.5,-140 543.5,-138 326.5,-138"/>
|
||||
<text text-anchor="start" x="347" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="425.5" y="-124.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="495" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-117 326.5,-119 543.5,-119 543.5,-117 326.5,-117"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-115 326.5,-117 543.5,-117 543.5,-115 326.5,-115"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-113 326.5,-115 543.5,-115 543.5,-113 326.5,-113"/>
|
||||
<text text-anchor="start" x="347" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="424" y="-99.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="495" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-92 326.5,-94 543.5,-94 543.5,-92 326.5,-92"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="326.5,-90 326.5,-92 543.5,-92 543.5,-90 326.5,-90"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-88 326.5,-90 543.5,-90 543.5,-88 326.5,-88"/>
|
||||
<text text-anchor="start" x="347" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="425.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="495" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-67 326.5,-69 543.5,-69 543.5,-67 326.5,-67"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-65 326.5,-67 543.5,-67 543.5,-65 326.5,-65"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-63 326.5,-65 543.5,-65 543.5,-63 326.5,-63"/>
|
||||
<text text-anchor="start" x="359" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="347" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="416" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="327.5,-20 542.5,-20 "/>
|
||||
<text text-anchor="start" x="359" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-136C270.38,-136.03 286.36,-139.03 350,-139"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M206,-138C270.01,-138 285.99,-141 350,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-140C269.64,-139.97 285.62,-142.97 350,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C246.38,-136.03 262.36,-139.03 326,-139"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-138C246.01,-138 261.99,-141 326,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C245.64,-139.97 261.62,-142.97 326,-143"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-112C270.25,-112.02 286.24,-114.02 350,-114"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-114C270.01,-114 285.99,-116 350,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-116C269.76,-115.98 285.75,-117.98 350,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C246.25,-112.02 262.24,-114.02 326,-114"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-114C246.01,-114 261.99,-116 326,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-116C245.76,-115.98 261.75,-117.98 326,-118"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-89C270,-89 286,-89 350,-89"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-91C270,-91 286,-91 350,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270,-93 286,-93 350,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-91C246,-91 262,-91 326,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246,-93 262,-93 326,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-66C269.76,-66.02 285.75,-64.02 350,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-68C270.01,-68 285.99,-66 350,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-70C270.25,-69.98 286.24,-67.98 350,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C245.76,-66.02 261.75,-64.02 326,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-68C246.01,-68 261.99,-66 326,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-70C246.25,-69.98 262.24,-67.98 326,-68"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-138C288.18,-138 267.82,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C262.21,-138.35 241.85,-22.35 326,-20"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M182,-138C264.18,-138 243.82,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C266.15,-137.65 245.79,-21.65 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="711,-59 711,-197 917,-197 917,-59 711,-59"/>
|
||||
<text text-anchor="middle" x="814" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="711,-174 917,-174 "/>
|
||||
<text text-anchor="middle" x="761.5" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="812,-151 812,-174 "/>
|
||||
<text text-anchor="middle" x="841" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="870,-151 870,-174 "/>
|
||||
<text text-anchor="middle" x="893.5" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="711,-151 917,-151 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="711,-128 802,-128 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="711,-105 802,-105 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="711,-82 802,-82 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="802,-59 802,-151 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="802,-128 917,-128 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="802,-105 917,-105 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="802,-82 917,-82 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="869,-197 687,-197 687,-59 869,-59 869,-197"/>
|
||||
<polygon fill="none" stroke="black" points="687,-174 687,-197 869,-197 869,-174 687,-174"/>
|
||||
<text text-anchor="start" x="769.5" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="687,-151 687,-174 780,-174 780,-151 687,-151"/>
|
||||
<text text-anchor="start" x="691" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="780,-151 780,-174 830,-174 830,-151 780,-151"/>
|
||||
<text text-anchor="start" x="784" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="830,-151 830,-174 869,-174 869,-151 830,-151"/>
|
||||
<text text-anchor="start" x="834" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="687,-128 687,-151 767,-151 767,-128 687,-128"/>
|
||||
<text text-anchor="start" x="723" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="767,-128 767,-151 869,-151 869,-128 767,-128"/>
|
||||
<text text-anchor="start" x="802.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="687,-105 687,-128 767,-128 767,-105 687,-105"/>
|
||||
<text text-anchor="start" x="723" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="767,-105 767,-128 869,-128 869,-105 767,-105"/>
|
||||
<text text-anchor="start" x="803.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="687,-82 687,-105 767,-105 767,-82 687,-82"/>
|
||||
<text text-anchor="start" x="723" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="767,-82 767,-105 869,-105 869,-82 767,-82"/>
|
||||
<text text-anchor="start" x="808.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="687,-59 687,-82 767,-82 767,-59 687,-59"/>
|
||||
<text text-anchor="start" x="723" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="767,-59 767,-82 869,-82 869,-59 767,-59"/>
|
||||
<text text-anchor="start" x="809" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-139C630.88,-139 646.87,-138 711,-138"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M567,-141C631,-141 647,-140 711,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-143C631.13,-143 647.12,-142 711,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-139C606.88,-139 622.87,-138 687,-138"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M543,-141C607,-141 623,-140 687,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-143C607.13,-143 623.12,-142 687,-142"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-114C631,-114 647,-114 711,-114"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M567,-116C631,-116 647,-116 711,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-118C631,-118 647,-118 711,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-114C607,-114 623,-114 687,-114"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M543,-116C607,-116 623,-116 687,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-118C607,-118 623,-118 687,-118"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-89C630.04,-89.86 644.68,-68.86 711,-68"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M567,-91C631.68,-91 646.32,-70 711,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-93C633.32,-92.14 647.96,-71.14 711,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-89C606.04,-89.86 620.68,-68.86 687,-68"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M543,-91C607.68,-91 622.32,-70 687,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-93C609.32,-92.14 623.96,-71.14 687,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-64C633.9,-65.09 647.67,-92.09 711,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M567,-66C632.12,-66 645.88,-93 711,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-68C630.33,-66.91 644.1,-93.91 711,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-64C609.9,-65.09 623.67,-92.09 687,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M543,-66C608.12,-66 621.88,-93 687,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-68C606.33,-66.91 620.1,-93.91 687,-95"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 4 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex KK 254, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">2</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1, X2</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Cable, 4 x 0.25 mm² shielded</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 44 KiB |
@ -4,171 +4,175 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="925pt" height="232pt"
|
||||
viewBox="0.00 0.00 925.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="877pt" height="232pt"
|
||||
viewBox="0.00 0.00 877.00 232.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 228)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 921,-228 921,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-228 873,-228 873,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-57 0,-195 206,-195 206,-57 0,-57"/>
|
||||
<text text-anchor="middle" x="103" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-172 206,-172 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-149 101,-172 "/>
|
||||
<text text-anchor="middle" x="130" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="159,-149 159,-172 "/>
|
||||
<text text-anchor="middle" x="182.5" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-149 206,-149 "/>
|
||||
<text text-anchor="middle" x="57" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-126 114,-126 "/>
|
||||
<text text-anchor="middle" x="57" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-103 114,-103 "/>
|
||||
<text text-anchor="middle" x="57" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="0,-80 114,-80 "/>
|
||||
<text text-anchor="middle" x="57" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polyline fill="none" stroke="black" points="114,-57 114,-149 "/>
|
||||
<text text-anchor="middle" x="160" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="114,-126 206,-126 "/>
|
||||
<text text-anchor="middle" x="160" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="114,-103 206,-103 "/>
|
||||
<text text-anchor="middle" x="160" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="114,-80 206,-80 "/>
|
||||
<text text-anchor="middle" x="160" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="white" stroke="transparent" points="182,-195 0,-195 0,-57 182,-57 182,-195"/>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 182,-195 182,-172 0,-172"/>
|
||||
<text text-anchor="start" x="82.5" y="-179.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 93,-172 93,-149 0,-149"/>
|
||||
<text text-anchor="start" x="4" y="-156.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-149 93,-172 143,-172 143,-149 93,-149"/>
|
||||
<text text-anchor="start" x="97" y="-156.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-149 143,-172 182,-172 182,-149 143,-149"/>
|
||||
<text text-anchor="start" x="147" y="-156.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 103,-149 103,-126 0,-126"/>
|
||||
<text text-anchor="start" x="36" y="-133.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-126 103,-149 182,-149 182,-126 103,-126"/>
|
||||
<text text-anchor="start" x="138.5" y="-133.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 103,-126 103,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37" y="-110.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-103 103,-126 182,-126 182,-103 103,-103"/>
|
||||
<text text-anchor="start" x="138.5" y="-110.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 103,-103 103,-80 0,-80"/>
|
||||
<text text-anchor="start" x="42" y="-87.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-80 103,-103 182,-103 182,-80 103,-80"/>
|
||||
<text text-anchor="start" x="138.5" y="-87.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 103,-80 103,-57 0,-57"/>
|
||||
<text text-anchor="start" x="42.5" y="-64.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-57 103,-80 182,-80 182,-57 103,-57"/>
|
||||
<text text-anchor="start" x="138.5" y="-64.8" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="567,-224 350,-224 350,0 567,0 567,-224"/>
|
||||
<polygon fill="none" stroke="black" points="350.5,-201 350.5,-224 567.5,-224 567.5,-201 350.5,-201"/>
|
||||
<text text-anchor="start" x="448" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-178 350.5,-201 373.5,-201 373.5,-178 350.5,-178"/>
|
||||
<text text-anchor="start" x="354.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="373.5,-178 373.5,-201 505.5,-201 505.5,-178 373.5,-178"/>
|
||||
<text text-anchor="start" x="377.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="505.5,-178 505.5,-201 535.5,-201 535.5,-178 505.5,-178"/>
|
||||
<text text-anchor="start" x="509.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="535.5,-178 535.5,-201 567.5,-201 567.5,-178 535.5,-178"/>
|
||||
<text text-anchor="start" x="539.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="457" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="371" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="447" y="-149.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="519" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="350.5,-138 350.5,-144 567.5,-144 567.5,-138 350.5,-138"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-139 566.5,-139 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-143 351.5,-143 "/>
|
||||
<text text-anchor="start" x="371" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="449.5" y="-124.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="519" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#666600" stroke="transparent" stroke-width="2" points="350.5,-113 350.5,-119 567.5,-119 567.5,-113 350.5,-113"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-114 566.5,-114 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-118 351.5,-118 "/>
|
||||
<text text-anchor="start" x="371" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="448" y="-99.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="519" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" stroke-width="2" points="350.5,-88 350.5,-94 567.5,-94 567.5,-88 350.5,-88"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-89 566.5,-89 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-93 351.5,-93 "/>
|
||||
<text text-anchor="start" x="371" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="449.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="519" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="350.5,-63 350.5,-69 567.5,-69 567.5,-63 350.5,-63"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-64 566.5,-64 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="566.5,-68 351.5,-68 "/>
|
||||
<text text-anchor="start" x="383" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="371" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="440" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="351.5,-20 566.5,-20 "/>
|
||||
<text text-anchor="start" x="383" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="543,-224 326,-224 326,0 543,0 543,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 543.5,-224 543.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="424" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 349.5,-201 349.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-178 349.5,-201 481.5,-201 481.5,-178 349.5,-178"/>
|
||||
<text text-anchor="start" x="353.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="481.5,-178 481.5,-201 511.5,-201 511.5,-178 481.5,-178"/>
|
||||
<text text-anchor="start" x="485.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="511.5,-178 511.5,-201 543.5,-201 543.5,-178 511.5,-178"/>
|
||||
<text text-anchor="start" x="515.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="433" y="-166.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="347" y="-149.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="423" y="-149.8" font-family="arial" font-size="14.00">WH</text>
|
||||
<text text-anchor="start" x="495" y="-149.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-142 326.5,-144 543.5,-144 543.5,-142 326.5,-142"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="326.5,-140 326.5,-142 543.5,-142 543.5,-140 326.5,-140"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-138 326.5,-140 543.5,-140 543.5,-138 326.5,-138"/>
|
||||
<text text-anchor="start" x="347" y="-124.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="425.5" y="-124.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="495" y="-124.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-117 326.5,-119 543.5,-119 543.5,-117 326.5,-117"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="326.5,-115 326.5,-117 543.5,-117 543.5,-115 326.5,-115"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-113 326.5,-115 543.5,-115 543.5,-113 326.5,-113"/>
|
||||
<text text-anchor="start" x="347" y="-99.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="424" y="-99.8" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="495" y="-99.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-92 326.5,-94 543.5,-94 543.5,-92 326.5,-92"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="326.5,-90 326.5,-92 543.5,-92 543.5,-90 326.5,-90"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-88 326.5,-90 543.5,-90 543.5,-88 326.5,-88"/>
|
||||
<text text-anchor="start" x="347" y="-74.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="425.5" y="-74.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="495" y="-74.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-67 326.5,-69 543.5,-69 543.5,-67 326.5,-67"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="326.5,-65 326.5,-67 543.5,-67 543.5,-65 326.5,-65"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="326.5,-63 326.5,-65 543.5,-65 543.5,-63 326.5,-63"/>
|
||||
<text text-anchor="start" x="359" y="-49.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="347" y="-30.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="416" y="-30.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="327.5,-20 542.5,-20 "/>
|
||||
<text text-anchor="start" x="359" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-136C270.38,-136.03 286.36,-139.03 350,-139"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M206,-138C270.01,-138 285.99,-141 350,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-140C269.64,-139.97 285.62,-142.97 350,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C246.38,-136.03 262.36,-139.03 326,-139"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-138C246.01,-138 261.99,-141 326,-141"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C245.64,-139.97 261.62,-142.97 326,-143"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-112C270.25,-112.02 286.24,-114.02 350,-114"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M206,-114C270.01,-114 285.99,-116 350,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-116C269.76,-115.98 285.75,-117.98 350,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C246.25,-112.02 262.24,-114.02 326,-114"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-114C246.01,-114 261.99,-116 326,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-116C245.76,-115.98 261.75,-117.98 326,-118"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-89C270,-89 286,-89 350,-89"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M206,-91C270,-91 286,-91 350,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-93C270,-93 286,-93 350,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-91C246,-91 262,-91 326,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246,-93 262,-93 326,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-66C269.76,-66.02 285.75,-64.02 350,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M206,-68C270.01,-68 285.99,-66 350,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-70C270.25,-69.98 286.24,-67.98 350,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C245.76,-66.02 261.75,-64.02 326,-64"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-68C246.01,-68 261.99,-66 326,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-70C246.25,-69.98 262.24,-67.98 326,-68"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M206,-138C288.18,-138 267.82,-22 350,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C262.21,-138.35 241.85,-22.35 326,-20"/>
|
||||
<path fill="none" stroke="#aaaaaa" stroke-width="2" d="M182,-138C264.18,-138 243.82,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-140C266.15,-137.65 245.79,-21.65 326,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="711,-59 711,-197 917,-197 917,-59 711,-59"/>
|
||||
<text text-anchor="middle" x="814" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="711,-174 917,-174 "/>
|
||||
<text text-anchor="middle" x="761.5" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="812,-151 812,-174 "/>
|
||||
<text text-anchor="middle" x="841" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="870,-151 870,-174 "/>
|
||||
<text text-anchor="middle" x="893.5" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="711,-151 917,-151 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="711,-128 802,-128 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="711,-105 802,-105 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="711,-82 802,-82 "/>
|
||||
<text text-anchor="middle" x="756.5" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="802,-59 802,-151 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="802,-128 917,-128 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="802,-105 917,-105 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polyline fill="none" stroke="black" points="802,-82 917,-82 "/>
|
||||
<text text-anchor="middle" x="859.5" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="white" stroke="transparent" points="869,-197 687,-197 687,-59 869,-59 869,-197"/>
|
||||
<polygon fill="none" stroke="black" points="687,-174 687,-197 869,-197 869,-174 687,-174"/>
|
||||
<text text-anchor="start" x="769.5" y="-181.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="687,-151 687,-174 780,-174 780,-151 687,-151"/>
|
||||
<text text-anchor="start" x="691" y="-158.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="780,-151 780,-174 830,-174 830,-151 780,-151"/>
|
||||
<text text-anchor="start" x="784" y="-158.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="830,-151 830,-174 869,-174 869,-151 830,-151"/>
|
||||
<text text-anchor="start" x="834" y="-158.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="687,-128 687,-151 767,-151 767,-128 687,-128"/>
|
||||
<text text-anchor="start" x="723" y="-135.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="767,-128 767,-151 869,-151 869,-128 767,-128"/>
|
||||
<text text-anchor="start" x="802.5" y="-135.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="687,-105 687,-128 767,-128 767,-105 687,-105"/>
|
||||
<text text-anchor="start" x="723" y="-112.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="767,-105 767,-128 869,-128 869,-105 767,-105"/>
|
||||
<text text-anchor="start" x="803.5" y="-112.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="687,-82 687,-105 767,-105 767,-82 687,-82"/>
|
||||
<text text-anchor="start" x="723" y="-89.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="767,-82 767,-105 869,-105 869,-82 767,-82"/>
|
||||
<text text-anchor="start" x="808.5" y="-89.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="687,-59 687,-82 767,-82 767,-59 687,-59"/>
|
||||
<text text-anchor="start" x="723" y="-66.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="767,-59 767,-82 869,-82 869,-59 767,-59"/>
|
||||
<text text-anchor="start" x="809" y="-66.8" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-139C630.88,-139 646.87,-138 711,-138"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M567,-141C631,-141 647,-140 711,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-143C631.13,-143 647.12,-142 711,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-139C606.88,-139 622.87,-138 687,-138"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M543,-141C607,-141 623,-140 687,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-143C607.13,-143 623.12,-142 687,-142"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-114C631,-114 647,-114 711,-114"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M567,-116C631,-116 647,-116 711,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-118C631,-118 647,-118 711,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-114C607,-114 623,-114 687,-114"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M543,-116C607,-116 623,-116 687,-116"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-118C607,-118 623,-118 687,-118"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-89C630.04,-89.86 644.68,-68.86 711,-68"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M567,-91C631.68,-91 646.32,-70 711,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-93C633.32,-92.14 647.96,-71.14 711,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-89C606.04,-89.86 620.68,-68.86 687,-68"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M543,-91C607.68,-91 622.32,-70 687,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-93C609.32,-92.14 623.96,-71.14 687,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-64C633.9,-65.09 647.67,-92.09 711,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M567,-66C632.12,-66 645.88,-93 711,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M567,-68C630.33,-66.91 644.1,-93.91 711,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-64C609.9,-65.09 623.67,-92.09 687,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M543,-66C608.12,-66 621.88,-93 687,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-68C606.33,-66.91 620.1,-93.91 687,-95"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
@ -1,6 +1,6 @@
|
||||
connectors:
|
||||
X1: &template1 # define a template for later use
|
||||
pinout: [GND, VCC, RX, TX] # pincount implicit in pinout
|
||||
pinlabels: [GND, VCC, RX, TX] # pincount implicit in pinout
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
X2:
|
||||
|
||||
@ -4,10 +4,10 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex KK 254|male|4-pin}|{{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}|to microcontroller"]
|
||||
X2 [label="X2|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}|{<p1r>1|<p2r>2|<p3r>3|<p4r>4}}|to accelerometer"]
|
||||
X3 [label="X3|{Molex KK 254|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{GND|VCC|SCL|SDA}}|to temperature sensor"]
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
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">Molex KK 254</td><td balign="left">male</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td>SCL</td><td port="p3r">3</td></tr><tr><td>SDA</td><td port="p4r">4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">to microcontroller</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td><td port="p2r">2</td></tr><tr><td port="p3l">3</td><td>SCL</td><td port="p3r">3</td></tr><tr><td port="p4l">4</td><td>SDA</td><td port="p4r">4</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">to accelerometer</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none 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">Molex KK 254</td><td balign="left">female</td><td balign="left">4-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>VCC</td></tr><tr><td port="p3l">3</td><td>SCL</td></tr><tr><td port="p4l">4</td><td>SDA</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">to temperature sensor</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
@ -19,8 +19,8 @@ graph {
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>4x</td><td>24 AWG</td><td>0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BN</td><td>X2:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w1"></td></tr><tr><td>X1:2</td><td>RD</td><td>X2:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X1:3</td><td>OG</td><td>X2:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff8000" border="2" sides="tb" port="w3"></td></tr><tr><td>X1:4</td><td>YE</td><td>X2:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr><tr><td cellpadding="3">This cable is a bit longer</td></tr><tr><td> </td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
edge [color="#000000:#666600:#000000"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">4x</td><td balign="left">24 AWG</td><td balign="left">0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X1:1</td><td>BN</td><td>X2:1</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="#895956" 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</td><td>RD</td><td>X2:2</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="#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:3</td><td>OG</td><td>X2:3</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="#ff8000" 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</td><td>YE</td><td>X2:4</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="#ffff00" 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 cellpadding="3" balign="left">This cable is a bit longer</td></tr><tr><td> </td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X2:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
@ -32,5 +32,5 @@ graph {
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
X2:p4r:e -- W2:w4:w
|
||||
W2:w4:e -- X3:p4l:w
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td>4x</td><td>24 AWG</td><td>0.1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X2:1</td><td>BN</td><td>X3:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#666600" border="2" sides="tb" port="w1"></td></tr><tr><td>X2:2</td><td>RD</td><td>X3:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w2"></td></tr><tr><td>X2:3</td><td>OG</td><td>X3:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff8000" border="2" sides="tb" port="w3"></td></tr><tr><td>X2:4</td><td>YE</td><td>X3:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr><tr><td cellpadding="3">This cable is a bit shorter</td></tr><tr><td> </td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
W2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W2</td></tr><tr><td balign="left">4x</td><td balign="left">24 AWG</td><td balign="left">0.1 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td>X2:1</td><td>BN</td><td>X3:1</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="#895956" 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</td><td>RD</td><td>X3:2</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="#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:3</td><td>OG</td><td>X3:3</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="#ff8000" 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</td><td>YE</td><td>X3:4</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="#ffff00" 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 cellpadding="3" balign="left">This cable is a bit shorter</td></tr><tr><td> </td></tr></table>> fillcolor=white margin=0 shape=box style=""]
|
||||
}
|
||||
|
||||
@ -1,304 +1,306 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1500pt" height="224pt"
|
||||
viewBox="0.00 0.00 1500.00 224.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="1428pt" height="224pt"
|
||||
viewBox="0.00 0.00 1428.00 224.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 220)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-220 1496,-220 1496,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-220 1424,-220 1424,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-26.5 0,-187.5 195,-187.5 195,-26.5 0,-26.5"/>
|
||||
<text text-anchor="middle" x="97.5" y="-172.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-164.5 195,-164.5 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-141.5 101,-164.5 "/>
|
||||
<text text-anchor="middle" x="124.5" y="-149.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="148,-141.5 148,-164.5 "/>
|
||||
<text text-anchor="middle" x="171.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-141.5 195,-141.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-118.5 109,-118.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-95.5 109,-95.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-72.5 109,-72.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="109,-49.5 109,-141.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="109,-118.5 195,-118.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="109,-95.5 195,-95.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="109,-72.5 195,-72.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-49.5 195,-49.5 "/>
|
||||
<text text-anchor="middle" x="97.5" y="-34.3" font-family="arial" font-size="14.00">to microcontroller</text>
|
||||
<polygon fill="white" stroke="transparent" points="171,-188.5 0,-188.5 0,-27.5 171,-27.5 171,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-165 0.5,-188 171.5,-188 171.5,-165 0.5,-165"/>
|
||||
<text text-anchor="start" x="77.5" y="-172.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-142 0.5,-165 93.5,-165 93.5,-142 0.5,-142"/>
|
||||
<text text-anchor="start" x="4.5" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93.5,-142 93.5,-165 132.5,-165 132.5,-142 93.5,-142"/>
|
||||
<text text-anchor="start" x="97.5" y="-149.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="132.5,-142 132.5,-165 171.5,-165 171.5,-142 132.5,-142"/>
|
||||
<text text-anchor="start" x="136.5" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-119 0.5,-142 97.5,-142 97.5,-119 0.5,-119"/>
|
||||
<text text-anchor="start" x="33.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-119 97.5,-142 171.5,-142 171.5,-119 97.5,-119"/>
|
||||
<text text-anchor="start" x="130.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-96 0.5,-119 97.5,-119 97.5,-96 0.5,-96"/>
|
||||
<text text-anchor="start" x="34.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-96 97.5,-119 171.5,-119 171.5,-96 97.5,-96"/>
|
||||
<text text-anchor="start" x="130.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-73 0.5,-96 97.5,-96 97.5,-73 0.5,-73"/>
|
||||
<text text-anchor="start" x="35.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-73 97.5,-96 171.5,-96 171.5,-73 97.5,-73"/>
|
||||
<text text-anchor="start" x="130.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-50 0.5,-73 97.5,-73 97.5,-50 0.5,-50"/>
|
||||
<text text-anchor="start" x="35" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-50 97.5,-73 171.5,-73 171.5,-50 97.5,-50"/>
|
||||
<text text-anchor="start" x="130.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-27 0.5,-50 171.5,-50 171.5,-27 0.5,-27"/>
|
||||
<text text-anchor="start" x="33.5" y="-34.8" font-family="arial" font-size="14.00">to microcontroller</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="491,-216 339,-216 339,0 491,0 491,-216"/>
|
||||
<polygon fill="none" stroke="black" points="339,-193 339,-216 491,-216 491,-193 339,-193"/>
|
||||
<text text-anchor="start" x="404" y="-200.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="339,-170 339,-193 371,-193 371,-170 339,-170"/>
|
||||
<text text-anchor="start" x="347.5" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-170 371,-193 440,-193 440,-170 371,-170"/>
|
||||
<text text-anchor="start" x="379.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="440,-170 440,-193 491,-193 491,-170 440,-170"/>
|
||||
<text text-anchor="start" x="448" y="-177.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="413" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="351.5" y="-141.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="406" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="451" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="339,-130 339,-136 491,-136 491,-130 339,-130"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-131 490,-131 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-135 340,-135 "/>
|
||||
<text text-anchor="start" x="351.5" y="-116.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="405.5" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="451" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="339,-105 339,-111 491,-111 491,-105 339,-105"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-106 490,-106 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-110 340,-110 "/>
|
||||
<text text-anchor="start" x="351.5" y="-91.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="404" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="451" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="339,-80 339,-86 491,-86 491,-80 339,-80"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-81 490,-81 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-85 340,-85 "/>
|
||||
<text text-anchor="start" x="351.5" y="-66.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="406" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="451" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="339,-55 339,-61 491,-61 491,-55 339,-55"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-56 490,-56 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-60 340,-60 "/>
|
||||
<text text-anchor="start" x="363.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="342" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit longer</text>
|
||||
<text text-anchor="start" x="413" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="467,-216 315,-216 315,0 467,0 467,-216"/>
|
||||
<polygon fill="none" stroke="black" points="315,-193 315,-216 467,-216 467,-193 315,-193"/>
|
||||
<text text-anchor="start" x="380" y="-200.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="315,-170 315,-193 347,-193 347,-170 315,-170"/>
|
||||
<text text-anchor="start" x="323.5" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-170 347,-193 416,-193 416,-170 347,-170"/>
|
||||
<text text-anchor="start" x="355.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="416,-170 416,-193 467,-193 467,-170 416,-170"/>
|
||||
<text text-anchor="start" x="424" y="-177.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="389" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="327.5" y="-141.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="382" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="427" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-134 315,-136 467,-136 467,-134 315,-134"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="315,-132 315,-134 467,-134 467,-132 315,-132"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-130 315,-132 467,-132 467,-130 315,-130"/>
|
||||
<text text-anchor="start" x="327.5" y="-116.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="381.5" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="427" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-109 315,-111 467,-111 467,-109 315,-109"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="315,-107 315,-109 467,-109 467,-107 315,-107"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-105 315,-107 467,-107 467,-105 315,-105"/>
|
||||
<text text-anchor="start" x="327.5" y="-91.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="380" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="427" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-84 315,-86 467,-86 467,-84 315,-84"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="315,-82 315,-84 467,-84 467,-82 315,-82"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-80 315,-82 467,-82 467,-80 315,-80"/>
|
||||
<text text-anchor="start" x="327.5" y="-66.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="382" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="427" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-59 315,-61 467,-61 467,-59 315,-59"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="315,-57 315,-59 467,-59 467,-57 315,-57"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-55 315,-57 467,-57 467,-55 315,-55"/>
|
||||
<text text-anchor="start" x="339.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="318" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit longer</text>
|
||||
<text text-anchor="start" x="389" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-128C259.38,-128.03 275.36,-131.03 339,-131"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M195,-130C259.01,-130 274.99,-133 339,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-132C258.64,-131.97 274.62,-134.97 339,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-129C235.25,-129.02 251.24,-131.02 315,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M171,-131C235.01,-131 250.99,-133 315,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-133C234.76,-132.98 250.75,-134.98 315,-135"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-105C259.13,-105 275.12,-106 339,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M195,-107C259,-107 275,-108 339,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-109C258.88,-109 274.87,-110 339,-110"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-105C235.13,-105 251.12,-106 315,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M171,-107C235,-107 251,-108 315,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-109C234.88,-109 250.87,-110 315,-110"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-82C258.88,-82 274.87,-81 339,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M195,-84C259,-84 275,-83 339,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-86C259.13,-86 275.12,-85 339,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-82C234.88,-82 250.87,-81 315,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M171,-84C235,-84 251,-83 315,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-86C235.13,-86 251.12,-85 315,-85"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-59C258.64,-59.03 274.62,-56.03 339,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M195,-61C259.01,-61 274.99,-58 339,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-63C259.38,-62.97 275.36,-59.97 339,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-59C234.64,-59.03 250.62,-56.03 315,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M171,-61C235.01,-61 250.99,-58 315,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-63C235.38,-62.97 251.36,-59.97 315,-60"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="635,-26.5 635,-187.5 841,-187.5 841,-26.5 635,-26.5"/>
|
||||
<text text-anchor="middle" x="738" y="-172.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="635,-164.5 841,-164.5 "/>
|
||||
<text text-anchor="middle" x="685.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="736,-141.5 736,-164.5 "/>
|
||||
<text text-anchor="middle" x="765" y="-149.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="794,-141.5 794,-164.5 "/>
|
||||
<text text-anchor="middle" x="817.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="635,-141.5 841,-141.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="635,-118.5 696,-118.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="635,-95.5 696,-95.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="635,-72.5 696,-72.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="696,-49.5 696,-141.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="696,-118.5 780,-118.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="696,-95.5 780,-95.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="696,-72.5 780,-72.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="780,-49.5 780,-141.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="780,-118.5 841,-118.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="780,-95.5 841,-95.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="780,-72.5 841,-72.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="635,-49.5 841,-49.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-34.3" font-family="arial" font-size="14.00">to accelerometer</text>
|
||||
<polygon fill="white" stroke="transparent" points="793,-188.5 611,-188.5 611,-27.5 793,-27.5 793,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="611,-165 611,-188 793,-188 793,-165 611,-165"/>
|
||||
<text text-anchor="start" x="693.5" y="-172.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="611,-142 611,-165 704,-165 704,-142 611,-142"/>
|
||||
<text text-anchor="start" x="615" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="704,-142 704,-165 754,-165 754,-142 704,-142"/>
|
||||
<text text-anchor="start" x="708" y="-149.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="754,-142 754,-165 793,-165 793,-142 754,-142"/>
|
||||
<text text-anchor="start" x="758" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="611,-119 611,-142 664,-142 664,-119 611,-119"/>
|
||||
<text text-anchor="start" x="633.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="664,-119 664,-142 740,-142 740,-119 664,-119"/>
|
||||
<text text-anchor="start" x="686.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="740,-119 740,-142 793,-142 793,-119 740,-119"/>
|
||||
<text text-anchor="start" x="762.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="611,-96 611,-119 664,-119 664,-96 611,-96"/>
|
||||
<text text-anchor="start" x="633.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="664,-96 664,-119 740,-119 740,-96 664,-96"/>
|
||||
<text text-anchor="start" x="687.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="740,-96 740,-119 793,-119 793,-96 740,-96"/>
|
||||
<text text-anchor="start" x="762.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="611,-73 611,-96 664,-96 664,-73 611,-73"/>
|
||||
<text text-anchor="start" x="633.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="664,-73 664,-96 740,-96 740,-73 664,-73"/>
|
||||
<text text-anchor="start" x="688.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="740,-73 740,-96 793,-96 793,-73 740,-73"/>
|
||||
<text text-anchor="start" x="762.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="611,-50 611,-73 664,-73 664,-50 611,-50"/>
|
||||
<text text-anchor="start" x="633.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="664,-50 664,-73 740,-73 740,-50 664,-50"/>
|
||||
<text text-anchor="start" x="688" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="740,-50 740,-73 793,-73 793,-50 740,-50"/>
|
||||
<text text-anchor="start" x="762.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="611,-27 611,-50 793,-50 793,-27 611,-27"/>
|
||||
<text text-anchor="start" x="651" y="-34.8" font-family="arial" font-size="14.00">to accelerometer</text>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="none" stroke="black" points="1142,-216 985,-216 985,0 1142,0 1142,-216"/>
|
||||
<polygon fill="none" stroke="black" points="985.5,-193 985.5,-216 1142.5,-216 1142.5,-193 985.5,-193"/>
|
||||
<text text-anchor="start" x="1053" y="-200.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="985.5,-170 985.5,-193 1019.5,-193 1019.5,-170 985.5,-170"/>
|
||||
<text text-anchor="start" x="995" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1019.5,-170 1019.5,-193 1089.5,-193 1089.5,-170 1019.5,-170"/>
|
||||
<text text-anchor="start" x="1028.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="1089.5,-170 1089.5,-193 1142.5,-193 1142.5,-170 1089.5,-170"/>
|
||||
<text text-anchor="start" x="1098.5" y="-177.8" font-family="arial" font-size="14.00">0.1 m</text>
|
||||
<text text-anchor="start" x="1062" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="998.5" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1054.5" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="1101.5" y="-141.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="985.5,-130 985.5,-136 1142.5,-136 1142.5,-130 985.5,-130"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-131 1141.5,-131 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-135 986.5,-135 "/>
|
||||
<text text-anchor="start" x="998.5" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1054" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1101.5" y="-116.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="985.5,-105 985.5,-111 1142.5,-111 1142.5,-105 985.5,-105"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-106 1141.5,-106 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-110 986.5,-110 "/>
|
||||
<text text-anchor="start" x="998.5" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1052.5" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="1101.5" y="-91.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="985.5,-80 985.5,-86 1142.5,-86 1142.5,-80 985.5,-80"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-81 1141.5,-81 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-85 986.5,-85 "/>
|
||||
<text text-anchor="start" x="998.5" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1054.5" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1101.5" y="-66.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="985.5,-55 985.5,-61 1142.5,-61 1142.5,-55 985.5,-55"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-56 1141.5,-56 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-60 986.5,-60 "/>
|
||||
<text text-anchor="start" x="1010.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="988.5" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
|
||||
<text text-anchor="start" x="1062" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="1094,-216 937,-216 937,0 1094,0 1094,-216"/>
|
||||
<polygon fill="none" stroke="black" points="937.5,-193 937.5,-216 1094.5,-216 1094.5,-193 937.5,-193"/>
|
||||
<text text-anchor="start" x="1005" y="-200.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="937.5,-170 937.5,-193 971.5,-193 971.5,-170 937.5,-170"/>
|
||||
<text text-anchor="start" x="947" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="971.5,-170 971.5,-193 1041.5,-193 1041.5,-170 971.5,-170"/>
|
||||
<text text-anchor="start" x="980.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="1041.5,-170 1041.5,-193 1094.5,-193 1094.5,-170 1041.5,-170"/>
|
||||
<text text-anchor="start" x="1050.5" y="-177.8" font-family="arial" font-size="14.00">0.1 m</text>
|
||||
<text text-anchor="start" x="1014" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="950.5" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1006.5" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="1053.5" y="-141.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-134 937.5,-136 1094.5,-136 1094.5,-134 937.5,-134"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="937.5,-132 937.5,-134 1094.5,-134 1094.5,-132 937.5,-132"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-130 937.5,-132 1094.5,-132 1094.5,-130 937.5,-130"/>
|
||||
<text text-anchor="start" x="950.5" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1006" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1053.5" y="-116.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-109 937.5,-111 1094.5,-111 1094.5,-109 937.5,-109"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="937.5,-107 937.5,-109 1094.5,-109 1094.5,-107 937.5,-107"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-105 937.5,-107 1094.5,-107 1094.5,-105 937.5,-105"/>
|
||||
<text text-anchor="start" x="950.5" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1004.5" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="1053.5" y="-91.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-84 937.5,-86 1094.5,-86 1094.5,-84 937.5,-84"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="937.5,-82 937.5,-84 1094.5,-84 1094.5,-82 937.5,-82"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-80 937.5,-82 1094.5,-82 1094.5,-80 937.5,-80"/>
|
||||
<text text-anchor="start" x="950.5" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1006.5" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1053.5" y="-66.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-59 937.5,-61 1094.5,-61 1094.5,-59 937.5,-59"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="937.5,-57 937.5,-59 1094.5,-59 1094.5,-57 937.5,-57"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-55 937.5,-57 1094.5,-57 1094.5,-55 937.5,-55"/>
|
||||
<text text-anchor="start" x="962.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="940.5" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
|
||||
<text text-anchor="start" x="1014" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-128C905.38,-128.03 921.36,-131.03 985,-131"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M841,-130C905.01,-130 920.99,-133 985,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-132C904.64,-131.97 920.62,-134.97 985,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-129C857.25,-129.02 873.24,-131.02 937,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M793,-131C857.01,-131 872.99,-133 937,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-133C856.76,-132.98 872.75,-134.98 937,-135"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-105C905.13,-105 921.12,-106 985,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M841,-107C905,-107 921,-108 985,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-109C904.88,-109 920.87,-110 985,-110"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-105C857.13,-105 873.12,-106 937,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M793,-107C857,-107 873,-108 937,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-109C856.88,-109 872.87,-110 937,-110"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-82C904.88,-82 920.87,-81 985,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M841,-84C905,-84 921,-83 985,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-86C905.13,-86 921.12,-85 985,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-82C856.88,-82 872.87,-81 937,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M793,-84C857,-84 873,-83 937,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-86C857.13,-86 873.12,-85 937,-85"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-59C904.64,-59.03 920.62,-56.03 985,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M841,-61C905.01,-61 920.99,-58 985,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-63C905.38,-62.97 921.36,-59.97 985,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-59C856.64,-59.03 872.62,-56.03 937,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M793,-61C857.01,-61 872.99,-58 937,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-63C857.38,-62.97 873.36,-59.97 937,-60"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="1286,-26.5 1286,-187.5 1492,-187.5 1492,-26.5 1286,-26.5"/>
|
||||
<text text-anchor="middle" x="1389" y="-172.3" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-164.5 1492,-164.5 "/>
|
||||
<text text-anchor="middle" x="1336.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="1387,-141.5 1387,-164.5 "/>
|
||||
<text text-anchor="middle" x="1416" y="-149.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="1445,-141.5 1445,-164.5 "/>
|
||||
<text text-anchor="middle" x="1468.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-141.5 1492,-141.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-118.5 1377,-118.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-95.5 1377,-95.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-72.5 1377,-72.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-49.5 1377,-141.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-118.5 1492,-118.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-95.5 1492,-95.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-72.5 1492,-72.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-49.5 1492,-49.5 "/>
|
||||
<text text-anchor="middle" x="1389" y="-34.3" font-family="arial" font-size="14.00">to temperature sensor</text>
|
||||
<polygon fill="white" stroke="transparent" points="1420,-188.5 1238,-188.5 1238,-27.5 1420,-27.5 1420,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="1238,-165 1238,-188 1420,-188 1420,-165 1238,-165"/>
|
||||
<text text-anchor="start" x="1320.5" y="-172.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-142 1238,-165 1331,-165 1331,-142 1238,-142"/>
|
||||
<text text-anchor="start" x="1242" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1331,-142 1331,-165 1381,-165 1381,-142 1331,-142"/>
|
||||
<text text-anchor="start" x="1335" y="-149.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1381,-142 1381,-165 1420,-165 1420,-142 1381,-142"/>
|
||||
<text text-anchor="start" x="1385" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-119 1238,-142 1318,-142 1318,-119 1238,-119"/>
|
||||
<text text-anchor="start" x="1274" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-119 1318,-142 1420,-142 1420,-119 1318,-119"/>
|
||||
<text text-anchor="start" x="1353.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-96 1238,-119 1318,-119 1318,-96 1238,-96"/>
|
||||
<text text-anchor="start" x="1274" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-96 1318,-119 1420,-119 1420,-96 1318,-96"/>
|
||||
<text text-anchor="start" x="1354.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-73 1238,-96 1318,-96 1318,-73 1238,-73"/>
|
||||
<text text-anchor="start" x="1274" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-73 1318,-96 1420,-96 1420,-73 1318,-73"/>
|
||||
<text text-anchor="start" x="1355.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-50 1238,-73 1318,-73 1318,-50 1238,-50"/>
|
||||
<text text-anchor="start" x="1274" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-50 1318,-73 1420,-73 1420,-50 1318,-50"/>
|
||||
<text text-anchor="start" x="1355" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-27 1238,-50 1420,-50 1420,-27 1238,-27"/>
|
||||
<text text-anchor="start" x="1262.5" y="-34.8" font-family="arial" font-size="14.00">to temperature sensor</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-131C554.64,-131.03 570.62,-128.03 635,-128"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M491,-133C555.01,-133 570.99,-130 635,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-135C555.38,-134.97 571.36,-131.97 635,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-131C530.76,-131.02 546.75,-129.02 611,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M467,-133C531.01,-133 546.99,-131 611,-131"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-135C531.25,-134.98 547.24,-132.98 611,-133"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-106C554.88,-106 570.87,-105 635,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M491,-108C555,-108 571,-107 635,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-110C555.13,-110 571.12,-109 635,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-106C530.88,-106 546.87,-105 611,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M467,-108C531,-108 547,-107 611,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-110C531.13,-110 547.12,-109 611,-109"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-81C555.13,-81 571.12,-82 635,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M491,-83C555,-83 571,-84 635,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-85C554.88,-85 570.87,-86 635,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-81C531.13,-81 547.12,-82 611,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M467,-83C531,-83 547,-84 611,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-85C530.88,-85 546.87,-86 611,-86"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-56C555.38,-56.03 571.36,-59.03 635,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M491,-58C555.01,-58 570.99,-61 635,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-60C554.64,-59.97 570.62,-62.97 635,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-56C531.38,-56.03 547.36,-59.03 611,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M467,-58C531.01,-58 546.99,-61 611,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-60C530.64,-59.97 546.62,-62.97 611,-63"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-131C1205.64,-131.03 1221.62,-128.03 1286,-128"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M1142,-133C1206.01,-133 1221.99,-130 1286,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-135C1206.38,-134.97 1222.36,-131.97 1286,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-131C1157.76,-131.02 1173.75,-129.02 1238,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M1094,-133C1158.01,-133 1173.99,-131 1238,-131"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-135C1158.25,-134.98 1174.24,-132.98 1238,-133"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-106C1205.88,-106 1221.87,-105 1286,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1142,-108C1206,-108 1222,-107 1286,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-110C1206.13,-110 1222.12,-109 1286,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-106C1157.88,-106 1173.87,-105 1238,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1094,-108C1158,-108 1174,-107 1238,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-110C1158.13,-110 1174.12,-109 1238,-109"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-81C1206.13,-81 1222.12,-82 1286,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1142,-83C1206,-83 1222,-84 1286,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-85C1205.88,-85 1221.87,-86 1286,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-81C1158.13,-81 1174.12,-82 1238,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1094,-83C1158,-83 1174,-84 1238,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-85C1157.88,-85 1173.87,-86 1238,-86"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-56C1206.38,-56.03 1222.36,-59.03 1286,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1142,-58C1206.01,-58 1221.99,-61 1286,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-60C1205.64,-59.97 1221.62,-62.97 1286,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-56C1158.38,-56.03 1174.36,-59.03 1238,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1094,-58C1158.01,-58 1173.99,-61 1238,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-60C1157.64,-59.97 1173.62,-62.97 1238,-63"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
@ -4,301 +4,304 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1500pt" height="224pt"
|
||||
viewBox="0.00 0.00 1500.00 224.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="1428pt" height="224pt"
|
||||
viewBox="0.00 0.00 1428.00 224.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 220)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-220 1496,-220 1496,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-220 1424,-220 1424,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="0,-26.5 0,-187.5 195,-187.5 195,-26.5 0,-26.5"/>
|
||||
<text text-anchor="middle" x="97.5" y="-172.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="0,-164.5 195,-164.5 "/>
|
||||
<text text-anchor="middle" x="50.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="101,-141.5 101,-164.5 "/>
|
||||
<text text-anchor="middle" x="124.5" y="-149.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polyline fill="none" stroke="black" points="148,-141.5 148,-164.5 "/>
|
||||
<text text-anchor="middle" x="171.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="0,-141.5 195,-141.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="0,-118.5 109,-118.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="0,-95.5 109,-95.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="0,-72.5 109,-72.5 "/>
|
||||
<text text-anchor="middle" x="54.5" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="109,-49.5 109,-141.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="109,-118.5 195,-118.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="109,-95.5 195,-95.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="109,-72.5 195,-72.5 "/>
|
||||
<text text-anchor="middle" x="152" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="0,-49.5 195,-49.5 "/>
|
||||
<text text-anchor="middle" x="97.5" y="-34.3" font-family="arial" font-size="14.00">to microcontroller</text>
|
||||
<polygon fill="white" stroke="transparent" points="171,-188.5 0,-188.5 0,-27.5 171,-27.5 171,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-165 0.5,-188 171.5,-188 171.5,-165 0.5,-165"/>
|
||||
<text text-anchor="start" x="77.5" y="-172.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-142 0.5,-165 93.5,-165 93.5,-142 0.5,-142"/>
|
||||
<text text-anchor="start" x="4.5" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93.5,-142 93.5,-165 132.5,-165 132.5,-142 93.5,-142"/>
|
||||
<text text-anchor="start" x="97.5" y="-149.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="132.5,-142 132.5,-165 171.5,-165 171.5,-142 132.5,-142"/>
|
||||
<text text-anchor="start" x="136.5" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-119 0.5,-142 97.5,-142 97.5,-119 0.5,-119"/>
|
||||
<text text-anchor="start" x="33.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-119 97.5,-142 171.5,-142 171.5,-119 97.5,-119"/>
|
||||
<text text-anchor="start" x="130.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-96 0.5,-119 97.5,-119 97.5,-96 0.5,-96"/>
|
||||
<text text-anchor="start" x="34.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-96 97.5,-119 171.5,-119 171.5,-96 97.5,-96"/>
|
||||
<text text-anchor="start" x="130.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-73 0.5,-96 97.5,-96 97.5,-73 0.5,-73"/>
|
||||
<text text-anchor="start" x="35.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-73 97.5,-96 171.5,-96 171.5,-73 97.5,-73"/>
|
||||
<text text-anchor="start" x="130.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-50 0.5,-73 97.5,-73 97.5,-50 0.5,-50"/>
|
||||
<text text-anchor="start" x="35" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="97.5,-50 97.5,-73 171.5,-73 171.5,-50 97.5,-50"/>
|
||||
<text text-anchor="start" x="130.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-27 0.5,-50 171.5,-50 171.5,-27 0.5,-27"/>
|
||||
<text text-anchor="start" x="33.5" y="-34.8" font-family="arial" font-size="14.00">to microcontroller</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="none" stroke="black" points="491,-216 339,-216 339,0 491,0 491,-216"/>
|
||||
<polygon fill="none" stroke="black" points="339,-193 339,-216 491,-216 491,-193 339,-193"/>
|
||||
<text text-anchor="start" x="404" y="-200.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="339,-170 339,-193 371,-193 371,-170 339,-170"/>
|
||||
<text text-anchor="start" x="347.5" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="371,-170 371,-193 440,-193 440,-170 371,-170"/>
|
||||
<text text-anchor="start" x="379.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="440,-170 440,-193 491,-193 491,-170 440,-170"/>
|
||||
<text text-anchor="start" x="448" y="-177.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="413" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="351.5" y="-141.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="406" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="451" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="339,-130 339,-136 491,-136 491,-130 339,-130"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-131 490,-131 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-135 340,-135 "/>
|
||||
<text text-anchor="start" x="351.5" y="-116.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="405.5" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="451" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="339,-105 339,-111 491,-111 491,-105 339,-105"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-106 490,-106 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-110 340,-110 "/>
|
||||
<text text-anchor="start" x="351.5" y="-91.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="404" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="451" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="339,-80 339,-86 491,-86 491,-80 339,-80"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-81 490,-81 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-85 340,-85 "/>
|
||||
<text text-anchor="start" x="351.5" y="-66.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="406" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="451" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="339,-55 339,-61 491,-61 491,-55 339,-55"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="340,-56 490,-56 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="490,-60 340,-60 "/>
|
||||
<text text-anchor="start" x="363.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="342" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit longer</text>
|
||||
<text text-anchor="start" x="413" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="467,-216 315,-216 315,0 467,0 467,-216"/>
|
||||
<polygon fill="none" stroke="black" points="315,-193 315,-216 467,-216 467,-193 315,-193"/>
|
||||
<text text-anchor="start" x="380" y="-200.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="315,-170 315,-193 347,-193 347,-170 315,-170"/>
|
||||
<text text-anchor="start" x="323.5" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-170 347,-193 416,-193 416,-170 347,-170"/>
|
||||
<text text-anchor="start" x="355.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="416,-170 416,-193 467,-193 467,-170 416,-170"/>
|
||||
<text text-anchor="start" x="424" y="-177.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="389" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="327.5" y="-141.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<text text-anchor="start" x="382" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="427" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-134 315,-136 467,-136 467,-134 315,-134"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="315,-132 315,-134 467,-134 467,-132 315,-132"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-130 315,-132 467,-132 467,-130 315,-130"/>
|
||||
<text text-anchor="start" x="327.5" y="-116.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<text text-anchor="start" x="381.5" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="427" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-109 315,-111 467,-111 467,-109 315,-109"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="315,-107 315,-109 467,-109 467,-107 315,-107"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-105 315,-107 467,-107 467,-105 315,-105"/>
|
||||
<text text-anchor="start" x="327.5" y="-91.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<text text-anchor="start" x="380" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="427" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-84 315,-86 467,-86 467,-84 315,-84"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="315,-82 315,-84 467,-84 467,-82 315,-82"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-80 315,-82 467,-82 467,-80 315,-80"/>
|
||||
<text text-anchor="start" x="327.5" y="-66.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<text text-anchor="start" x="382" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="427" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-59 315,-61 467,-61 467,-59 315,-59"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="315,-57 315,-59 467,-59 467,-57 315,-57"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="315,-55 315,-57 467,-57 467,-55 315,-55"/>
|
||||
<text text-anchor="start" x="339.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="318" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit longer</text>
|
||||
<text text-anchor="start" x="389" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-128C259.38,-128.03 275.36,-131.03 339,-131"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M195,-130C259.01,-130 274.99,-133 339,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-132C258.64,-131.97 274.62,-134.97 339,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-129C235.25,-129.02 251.24,-131.02 315,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M171,-131C235.01,-131 250.99,-133 315,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-133C234.76,-132.98 250.75,-134.98 315,-135"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-105C259.13,-105 275.12,-106 339,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M195,-107C259,-107 275,-108 339,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-109C258.88,-109 274.87,-110 339,-110"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-105C235.13,-105 251.12,-106 315,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M171,-107C235,-107 251,-108 315,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-109C234.88,-109 250.87,-110 315,-110"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-82C258.88,-82 274.87,-81 339,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M195,-84C259,-84 275,-83 339,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-86C259.13,-86 275.12,-85 339,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-82C234.88,-82 250.87,-81 315,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M171,-84C235,-84 251,-83 315,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-86C235.13,-86 251.12,-85 315,-85"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-59C258.64,-59.03 274.62,-56.03 339,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M195,-61C259.01,-61 274.99,-58 339,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M195,-63C259.38,-62.97 275.36,-59.97 339,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-59C234.64,-59.03 250.62,-56.03 315,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M171,-61C235.01,-61 250.99,-58 315,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-63C235.38,-62.97 251.36,-59.97 315,-60"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="white" stroke="black" points="635,-26.5 635,-187.5 841,-187.5 841,-26.5 635,-26.5"/>
|
||||
<text text-anchor="middle" x="738" y="-172.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polyline fill="none" stroke="black" points="635,-164.5 841,-164.5 "/>
|
||||
<text text-anchor="middle" x="685.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="736,-141.5 736,-164.5 "/>
|
||||
<text text-anchor="middle" x="765" y="-149.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="794,-141.5 794,-164.5 "/>
|
||||
<text text-anchor="middle" x="817.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="635,-141.5 841,-141.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="635,-118.5 696,-118.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="635,-95.5 696,-95.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="635,-72.5 696,-72.5 "/>
|
||||
<text text-anchor="middle" x="665.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="696,-49.5 696,-141.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="696,-118.5 780,-118.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="696,-95.5 780,-95.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="696,-72.5 780,-72.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="780,-49.5 780,-141.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="780,-118.5 841,-118.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="780,-95.5 841,-95.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="780,-72.5 841,-72.5 "/>
|
||||
<text text-anchor="middle" x="810.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="635,-49.5 841,-49.5 "/>
|
||||
<text text-anchor="middle" x="738" y="-34.3" font-family="arial" font-size="14.00">to accelerometer</text>
|
||||
<polygon fill="white" stroke="transparent" points="793,-188.5 611,-188.5 611,-27.5 793,-27.5 793,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="611,-165 611,-188 793,-188 793,-165 611,-165"/>
|
||||
<text text-anchor="start" x="693.5" y="-172.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="611,-142 611,-165 704,-165 704,-142 611,-142"/>
|
||||
<text text-anchor="start" x="615" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="704,-142 704,-165 754,-165 754,-142 704,-142"/>
|
||||
<text text-anchor="start" x="708" y="-149.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="754,-142 754,-165 793,-165 793,-142 754,-142"/>
|
||||
<text text-anchor="start" x="758" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="611,-119 611,-142 664,-142 664,-119 611,-119"/>
|
||||
<text text-anchor="start" x="633.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="664,-119 664,-142 740,-142 740,-119 664,-119"/>
|
||||
<text text-anchor="start" x="686.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="740,-119 740,-142 793,-142 793,-119 740,-119"/>
|
||||
<text text-anchor="start" x="762.5" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="611,-96 611,-119 664,-119 664,-96 611,-96"/>
|
||||
<text text-anchor="start" x="633.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="664,-96 664,-119 740,-119 740,-96 664,-96"/>
|
||||
<text text-anchor="start" x="687.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="740,-96 740,-119 793,-119 793,-96 740,-96"/>
|
||||
<text text-anchor="start" x="762.5" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="611,-73 611,-96 664,-96 664,-73 611,-73"/>
|
||||
<text text-anchor="start" x="633.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="664,-73 664,-96 740,-96 740,-73 664,-73"/>
|
||||
<text text-anchor="start" x="688.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="740,-73 740,-96 793,-96 793,-73 740,-73"/>
|
||||
<text text-anchor="start" x="762.5" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="611,-50 611,-73 664,-73 664,-50 611,-50"/>
|
||||
<text text-anchor="start" x="633.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="664,-50 664,-73 740,-73 740,-50 664,-50"/>
|
||||
<text text-anchor="start" x="688" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="740,-50 740,-73 793,-73 793,-50 740,-50"/>
|
||||
<text text-anchor="start" x="762.5" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="611,-27 611,-50 793,-50 793,-27 611,-27"/>
|
||||
<text text-anchor="start" x="651" y="-34.8" font-family="arial" font-size="14.00">to accelerometer</text>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="none" stroke="black" points="1142,-216 985,-216 985,0 1142,0 1142,-216"/>
|
||||
<polygon fill="none" stroke="black" points="985.5,-193 985.5,-216 1142.5,-216 1142.5,-193 985.5,-193"/>
|
||||
<text text-anchor="start" x="1053" y="-200.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="985.5,-170 985.5,-193 1019.5,-193 1019.5,-170 985.5,-170"/>
|
||||
<text text-anchor="start" x="995" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1019.5,-170 1019.5,-193 1089.5,-193 1089.5,-170 1019.5,-170"/>
|
||||
<text text-anchor="start" x="1028.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="1089.5,-170 1089.5,-193 1142.5,-193 1142.5,-170 1089.5,-170"/>
|
||||
<text text-anchor="start" x="1098.5" y="-177.8" font-family="arial" font-size="14.00">0.1 m</text>
|
||||
<text text-anchor="start" x="1062" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="998.5" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1054.5" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="1101.5" y="-141.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#666600" stroke="transparent" points="985.5,-130 985.5,-136 1142.5,-136 1142.5,-130 985.5,-130"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-131 1141.5,-131 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-135 986.5,-135 "/>
|
||||
<text text-anchor="start" x="998.5" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1054" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1101.5" y="-116.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="985.5,-105 985.5,-111 1142.5,-111 1142.5,-105 985.5,-105"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-106 1141.5,-106 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-110 986.5,-110 "/>
|
||||
<text text-anchor="start" x="998.5" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1052.5" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="1101.5" y="-91.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" stroke-width="2" points="985.5,-80 985.5,-86 1142.5,-86 1142.5,-80 985.5,-80"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-81 1141.5,-81 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-85 986.5,-85 "/>
|
||||
<text text-anchor="start" x="998.5" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1054.5" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1101.5" y="-66.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" stroke-width="2" points="985.5,-55 985.5,-61 1142.5,-61 1142.5,-55 985.5,-55"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="986.5,-56 1141.5,-56 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="1141.5,-60 986.5,-60 "/>
|
||||
<text text-anchor="start" x="1010.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="988.5" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
|
||||
<text text-anchor="start" x="1062" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="none" stroke="black" points="1094,-216 937,-216 937,0 1094,0 1094,-216"/>
|
||||
<polygon fill="none" stroke="black" points="937.5,-193 937.5,-216 1094.5,-216 1094.5,-193 937.5,-193"/>
|
||||
<text text-anchor="start" x="1005" y="-200.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="937.5,-170 937.5,-193 971.5,-193 971.5,-170 937.5,-170"/>
|
||||
<text text-anchor="start" x="947" y="-177.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="971.5,-170 971.5,-193 1041.5,-193 1041.5,-170 971.5,-170"/>
|
||||
<text text-anchor="start" x="980.5" y="-177.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="1041.5,-170 1041.5,-193 1094.5,-193 1094.5,-170 1041.5,-170"/>
|
||||
<text text-anchor="start" x="1050.5" y="-177.8" font-family="arial" font-size="14.00">0.1 m</text>
|
||||
<text text-anchor="start" x="1014" y="-158.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="950.5" y="-141.8" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1006.5" y="-141.8" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="1053.5" y="-141.8" font-family="arial" font-size="14.00">X3:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-134 937.5,-136 1094.5,-136 1094.5,-134 937.5,-134"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="937.5,-132 937.5,-134 1094.5,-134 1094.5,-132 937.5,-132"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-130 937.5,-132 1094.5,-132 1094.5,-130 937.5,-130"/>
|
||||
<text text-anchor="start" x="950.5" y="-116.8" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1006" y="-116.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1053.5" y="-116.8" font-family="arial" font-size="14.00">X3:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-109 937.5,-111 1094.5,-111 1094.5,-109 937.5,-109"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="937.5,-107 937.5,-109 1094.5,-109 1094.5,-107 937.5,-107"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-105 937.5,-107 1094.5,-107 1094.5,-105 937.5,-105"/>
|
||||
<text text-anchor="start" x="950.5" y="-91.8" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1004.5" y="-91.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="1053.5" y="-91.8" font-family="arial" font-size="14.00">X3:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-84 937.5,-86 1094.5,-86 1094.5,-84 937.5,-84"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="937.5,-82 937.5,-84 1094.5,-84 1094.5,-82 937.5,-82"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-80 937.5,-82 1094.5,-82 1094.5,-80 937.5,-80"/>
|
||||
<text text-anchor="start" x="950.5" y="-66.8" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1006.5" y="-66.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1053.5" y="-66.8" font-family="arial" font-size="14.00">X3:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-59 937.5,-61 1094.5,-61 1094.5,-59 937.5,-59"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="937.5,-57 937.5,-59 1094.5,-59 1094.5,-57 937.5,-57"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="937.5,-55 937.5,-57 1094.5,-57 1094.5,-55 937.5,-55"/>
|
||||
<text text-anchor="start" x="962.5" y="-41.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="940.5" y="-21.8" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
|
||||
<text text-anchor="start" x="1014" y="-3.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-128C905.38,-128.03 921.36,-131.03 985,-131"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M841,-130C905.01,-130 920.99,-133 985,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-132C904.64,-131.97 920.62,-134.97 985,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-129C857.25,-129.02 873.24,-131.02 937,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M793,-131C857.01,-131 872.99,-133 937,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-133C856.76,-132.98 872.75,-134.98 937,-135"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-105C905.13,-105 921.12,-106 985,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M841,-107C905,-107 921,-108 985,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-109C904.88,-109 920.87,-110 985,-110"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-105C857.13,-105 873.12,-106 937,-106"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M793,-107C857,-107 873,-108 937,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-109C856.88,-109 872.87,-110 937,-110"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-82C904.88,-82 920.87,-81 985,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M841,-84C905,-84 921,-83 985,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-86C905.13,-86 921.12,-85 985,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-82C856.88,-82 872.87,-81 937,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M793,-84C857,-84 873,-83 937,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-86C857.13,-86 873.12,-85 937,-85"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-59C904.64,-59.03 920.62,-56.03 985,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M841,-61C905.01,-61 920.99,-58 985,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M841,-63C905.38,-62.97 921.36,-59.97 985,-60"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-59C856.64,-59.03 872.62,-56.03 937,-56"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M793,-61C857.01,-61 872.99,-58 937,-58"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M793,-63C857.38,-62.97 873.36,-59.97 937,-60"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="white" stroke="black" points="1286,-26.5 1286,-187.5 1492,-187.5 1492,-26.5 1286,-26.5"/>
|
||||
<text text-anchor="middle" x="1389" y="-172.3" font-family="arial" font-size="14.00">X3</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-164.5 1492,-164.5 "/>
|
||||
<text text-anchor="middle" x="1336.5" y="-149.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polyline fill="none" stroke="black" points="1387,-141.5 1387,-164.5 "/>
|
||||
<text text-anchor="middle" x="1416" y="-149.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="1445,-141.5 1445,-164.5 "/>
|
||||
<text text-anchor="middle" x="1468.5" y="-149.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-141.5 1492,-141.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-126.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-118.5 1377,-118.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-103.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-95.5 1377,-95.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-80.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-72.5 1377,-72.5 "/>
|
||||
<text text-anchor="middle" x="1331.5" y="-57.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-49.5 1377,-141.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-126.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-118.5 1492,-118.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-103.3" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-95.5 1492,-95.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-80.3" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polyline fill="none" stroke="black" points="1377,-72.5 1492,-72.5 "/>
|
||||
<text text-anchor="middle" x="1434.5" y="-57.3" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polyline fill="none" stroke="black" points="1286,-49.5 1492,-49.5 "/>
|
||||
<text text-anchor="middle" x="1389" y="-34.3" font-family="arial" font-size="14.00">to temperature sensor</text>
|
||||
<polygon fill="white" stroke="transparent" points="1420,-188.5 1238,-188.5 1238,-27.5 1420,-27.5 1420,-188.5"/>
|
||||
<polygon fill="none" stroke="black" points="1238,-165 1238,-188 1420,-188 1420,-165 1238,-165"/>
|
||||
<text text-anchor="start" x="1320.5" y="-172.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-142 1238,-165 1331,-165 1331,-142 1238,-142"/>
|
||||
<text text-anchor="start" x="1242" y="-149.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1331,-142 1331,-165 1381,-165 1381,-142 1331,-142"/>
|
||||
<text text-anchor="start" x="1335" y="-149.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1381,-142 1381,-165 1420,-165 1420,-142 1381,-142"/>
|
||||
<text text-anchor="start" x="1385" y="-149.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-119 1238,-142 1318,-142 1318,-119 1238,-119"/>
|
||||
<text text-anchor="start" x="1274" y="-126.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-119 1318,-142 1420,-142 1420,-119 1318,-119"/>
|
||||
<text text-anchor="start" x="1353.5" y="-126.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-96 1238,-119 1318,-119 1318,-96 1238,-96"/>
|
||||
<text text-anchor="start" x="1274" y="-103.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-96 1318,-119 1420,-119 1420,-96 1318,-96"/>
|
||||
<text text-anchor="start" x="1354.5" y="-103.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-73 1238,-96 1318,-96 1318,-73 1238,-73"/>
|
||||
<text text-anchor="start" x="1274" y="-80.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-73 1318,-96 1420,-96 1420,-73 1318,-73"/>
|
||||
<text text-anchor="start" x="1355.5" y="-80.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-50 1238,-73 1318,-73 1318,-50 1238,-50"/>
|
||||
<text text-anchor="start" x="1274" y="-57.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1318,-50 1318,-73 1420,-73 1420,-50 1318,-50"/>
|
||||
<text text-anchor="start" x="1355" y="-57.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="1238,-27 1238,-50 1420,-50 1420,-27 1238,-27"/>
|
||||
<text text-anchor="start" x="1262.5" y="-34.8" font-family="arial" font-size="14.00">to temperature sensor</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-131C554.64,-131.03 570.62,-128.03 635,-128"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M491,-133C555.01,-133 570.99,-130 635,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-135C555.38,-134.97 571.36,-131.97 635,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-131C530.76,-131.02 546.75,-129.02 611,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M467,-133C531.01,-133 546.99,-131 611,-131"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-135C531.25,-134.98 547.24,-132.98 611,-133"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-106C554.88,-106 570.87,-105 635,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M491,-108C555,-108 571,-107 635,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-110C555.13,-110 571.12,-109 635,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-106C530.88,-106 546.87,-105 611,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M467,-108C531,-108 547,-107 611,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-110C531.13,-110 547.12,-109 611,-109"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-81C555.13,-81 571.12,-82 635,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M491,-83C555,-83 571,-84 635,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-85C554.88,-85 570.87,-86 635,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-81C531.13,-81 547.12,-82 611,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M467,-83C531,-83 547,-84 611,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-85C530.88,-85 546.87,-86 611,-86"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-56C555.38,-56.03 571.36,-59.03 635,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M491,-58C555.01,-58 570.99,-61 635,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M491,-60C554.64,-59.97 570.62,-62.97 635,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-56C531.38,-56.03 547.36,-59.03 611,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M467,-58C531.01,-58 546.99,-61 611,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M467,-60C530.64,-59.97 546.62,-62.97 611,-63"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-131C1205.64,-131.03 1221.62,-128.03 1286,-128"/>
|
||||
<path fill="none" stroke="#666600" stroke-width="2" d="M1142,-133C1206.01,-133 1221.99,-130 1286,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-135C1206.38,-134.97 1222.36,-131.97 1286,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-131C1157.76,-131.02 1173.75,-129.02 1238,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M1094,-133C1158.01,-133 1173.99,-131 1238,-131"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-135C1158.25,-134.98 1174.24,-132.98 1238,-133"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-106C1205.88,-106 1221.87,-105 1286,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1142,-108C1206,-108 1222,-107 1286,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-110C1206.13,-110 1222.12,-109 1286,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-106C1157.88,-106 1173.87,-105 1238,-105"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1094,-108C1158,-108 1174,-107 1238,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-110C1158.13,-110 1174.12,-109 1238,-109"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-81C1206.13,-81 1222.12,-82 1286,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1142,-83C1206,-83 1222,-84 1286,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-85C1205.88,-85 1221.87,-86 1286,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-81C1158.13,-81 1174.12,-82 1238,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1094,-83C1158,-83 1174,-84 1238,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-85C1157.88,-85 1173.87,-86 1238,-86"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-56C1206.38,-56.03 1222.36,-59.03 1286,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1142,-58C1206.01,-58 1221.99,-61 1286,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1142,-60C1205.64,-59.97 1221.62,-62.97 1286,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-56C1158.38,-56.03 1174.36,-59.03 1238,-59"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1094,-58C1158.01,-58 1173.99,-61 1238,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1094,-60C1157.64,-59.97 1173.62,-62.97 1238,-63"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 22 KiB |
@ -1,6 +1,6 @@
|
||||
connectors:
|
||||
X1: &template_con
|
||||
pinout: [GND, VCC, SCL, SDA]
|
||||
pinlabels: [GND, VCC, SCL, SDA]
|
||||
type: Molex KK 254
|
||||
subtype: male
|
||||
notes: to microcontroller # add notes
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
Item Qty Unit Designators
|
||||
Connector, Ferrule, crimp, 0.5 mm², OG 4
|
||||
Connector, Crimp ferrule, 0.5 mm², OG 4
|
||||
Connector, Molex 8981, female, 4 pins 1 X1
|
||||
Wire, 0.5 mm², BK 0.6 m W1
|
||||
Wire, 0.5 mm², RD 0.3 m W1
|
||||
|
||||
|
@ -4,62 +4,22 @@ graph {
|
||||
graph [bgcolor=white fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor=white fontname=arial shape=record style=filled]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label="X1|{Molex 8981|female|4-pin}|{{<p1l>1|<p2l>2|<p3l>3|<p4l>4}|{+12V|GND|GND|+5V}}"]
|
||||
_F1 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Ferrule, crimp, 0.5 mm² OG </TD>
|
||||
<TD BGCOLOR="#FF8000" BORDER="1" SIDES="LR" WIDTH="4"></TD>
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F2 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Ferrule, crimp, 0.5 mm² OG </TD>
|
||||
<TD BGCOLOR="#FF8000" BORDER="1" SIDES="LR" WIDTH="4"></TD>
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F3 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Ferrule, crimp, 0.5 mm² OG </TD>
|
||||
<TD BGCOLOR="#FF8000" BORDER="1" SIDES="LR" WIDTH="4"></TD>
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
_F4 [label=<
|
||||
|
||||
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
||||
<TD PORT="p1l"> Ferrule, crimp, 0.5 mm² OG </TD>
|
||||
<TD BGCOLOR="#FF8000" BORDER="1" SIDES="LR" WIDTH="4"></TD>
|
||||
<TD PORT="p1r"> </TD>
|
||||
</TR></TABLE>
|
||||
|
||||
|
||||
> margin=0 orientation=180 shape=none style=filled]
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
_F1:e -- W1:w1:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_F2:e -- W1:w2:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_F3:e -- W1:w3:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
_F4:e -- W1:w4:w
|
||||
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">Molex 8981</td><td balign="left">female</td><td balign="left">4-pin</td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td port="p1l">1</td><td>+12V</td></tr><tr><td port="p2l">2</td><td>GND</td></tr><tr><td port="p3l">3</td><td>GND</td></tr><tr><td port="p4l">4</td><td>+5V</td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_F1_1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.5 mm²</td><td balign="left">OG</td><td balign="left" bgcolor="#FF8000" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_F1_2 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.5 mm²</td><td balign="left">OG</td><td balign="left" bgcolor="#FF8000" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_F1_3 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.5 mm²</td><td balign="left">OG</td><td balign="left" bgcolor="#FF8000" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
_F1_4 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td balign="left">Crimp ferrule</td><td balign="left">0.5 mm²</td><td balign="left">OG</td><td balign="left" bgcolor="#FF8000" width="4"></td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=none style=filled]
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
_F1_1:e -- W1:w1:w
|
||||
W1:w1:e -- X1:p1l:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_F1_2:e -- W1:w2:w
|
||||
W1:w2:e -- X1:p2l:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
_F1_3:e -- W1:w3:w
|
||||
W1:w3:e -- X1:p3l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
_F1_4:e -- W1:w4:w
|
||||
W1:w4:e -- X1:p4l:w
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td>4x</td><td>0.5 mm²</td><td>0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>YE</td><td>X1:1</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ffff00" border="2" sides="tb" port="w1"></td></tr><tr><td></td><td>BK</td><td>X1:2</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w2"></td></tr><tr><td></td><td>BK</td><td>X1:3</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#000000" border="2" sides="tb" port="w3"></td></tr><tr><td></td><td>RD</td><td>X1:4</td></tr><tr><td colspan="3" cellpadding="0" height="6" bgcolor="#ff0000" border="2" sides="tb" port="w4"></td></tr><tr><td> </td></tr></table></td></tr></table>> fillcolor=white margin=0 shape=box style="filled,dashed"]
|
||||
W1 [label=<<table border="0" cellspacing="0" cellpadding="0"><tr><td><table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr><td colspan="3">W1</td></tr><tr><td balign="left">4x</td><td balign="left">0.5 mm²</td><td balign="left">0.3 m</td></tr></table></td></tr><tr><td> </td></tr><tr><td><table border="0" cellspacing="0" cellborder="0"><tr><td></td><td>YE</td><td>X1:1</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="#ffff00" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>BK</td><td>X1:2</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="#000000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>BK</td><td>X1:3</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="#000000" border="0"></td></tr><tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr></table></td></tr><tr><td></td><td>RD</td><td>X1:4</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="#ff0000" 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=white margin=0 shape=box style="filled,dashed"]
|
||||
}
|
||||
|
||||
@ -1,176 +1,184 @@
|
||||
<html><body style="font-family:Arial"><h1>Diagram</h1><?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">
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"></head><body style="font-family:Arial"><h1>Diagram</h1><!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="815pt" height="236pt"
|
||||
viewBox="0.00 0.00 815.00 236.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="776pt" height="236pt"
|
||||
viewBox="0.00 0.00 776.00 236.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 232)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-232 811,-232 811,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-232 772,-232 772,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="615,-62 615,-200 807,-200 807,-62 615,-62"/>
|
||||
<text text-anchor="middle" x="711" y="-184.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="615,-177 807,-177 "/>
|
||||
<text text-anchor="middle" x="658.5" y="-161.8" font-family="arial" font-size="14.00">Molex 8981</text>
|
||||
<polyline fill="none" stroke="black" points="702,-154 702,-177 "/>
|
||||
<text text-anchor="middle" x="731" y="-161.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="760,-154 760,-177 "/>
|
||||
<text text-anchor="middle" x="783.5" y="-161.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="615,-154 807,-154 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-138.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="615,-131 698,-131 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-115.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="615,-108 698,-108 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-92.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="615,-85 698,-85 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-69.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="698,-62 698,-154 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-138.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polyline fill="none" stroke="black" points="698,-131 807,-131 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-115.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="698,-108 807,-108 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-92.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="698,-85 807,-85 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-69.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="white" stroke="transparent" points="768,-200 600,-200 600,-62 768,-62 768,-200"/>
|
||||
<polygon fill="none" stroke="black" points="600,-177 600,-200 768,-200 768,-177 600,-177"/>
|
||||
<text text-anchor="start" x="675.5" y="-184.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="600,-154 600,-177 679,-177 679,-154 600,-154"/>
|
||||
<text text-anchor="start" x="604" y="-161.8" font-family="arial" font-size="14.00">Molex 8981</text>
|
||||
<polygon fill="none" stroke="black" points="679,-154 679,-177 729,-177 729,-154 679,-154"/>
|
||||
<text text-anchor="start" x="683" y="-161.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="729,-154 729,-177 768,-177 768,-154 729,-154"/>
|
||||
<text text-anchor="start" x="733" y="-161.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="600,-131 600,-154 672,-154 672,-131 600,-131"/>
|
||||
<text text-anchor="start" x="632" y="-138.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="672,-131 672,-154 768,-154 768,-131 672,-131"/>
|
||||
<text text-anchor="start" x="703.5" y="-138.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polygon fill="none" stroke="black" points="600,-108 600,-131 672,-131 672,-108 600,-108"/>
|
||||
<text text-anchor="start" x="632" y="-115.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="672,-108 672,-131 768,-131 768,-108 672,-108"/>
|
||||
<text text-anchor="start" x="704.5" y="-115.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="600,-85 600,-108 672,-108 672,-85 600,-85"/>
|
||||
<text text-anchor="start" x="632" y="-92.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="672,-85 672,-108 768,-108 768,-85 672,-85"/>
|
||||
<text text-anchor="start" x="704.5" y="-92.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="600,-62 600,-85 672,-85 672,-62 600,-62"/>
|
||||
<text text-anchor="start" x="632" y="-69.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="672,-62 672,-85 768,-85 768,-62 672,-62"/>
|
||||
<text text-anchor="start" x="707.5" y="-69.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
</g>
|
||||
<!-- _F1 -->
|
||||
<!-- _F1_1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-180 201,-180 201,-216 0,-216 0,-180"/>
|
||||
<text text-anchor="start" x="3.5" y="-193.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-188 182.5,-207 188.5,-207 188.5,-188 182.5,-188"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-207 182.5,-188 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-188 188.5,-207 "/>
|
||||
<text text-anchor="start" x="190.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-187.5 0,-208.5 201,-208.5 201,-187.5 0,-187.5"/>
|
||||
<title>_F1_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-216 0,-216 0,-180 186,-180 186,-216"/>
|
||||
<polygon fill="none" stroke="black" points="0,-186 0,-209 87,-209 87,-186 0,-186"/>
|
||||
<text text-anchor="start" x="4" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-186 87,-209 147,-209 147,-186 87,-186"/>
|
||||
<text text-anchor="start" x="91" y="-193.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-186 147,-209 178,-209 178,-186 147,-186"/>
|
||||
<text text-anchor="start" x="151" y="-193.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-186 178,-209 186,-209 186,-186 178,-186"/>
|
||||
<polygon fill="none" stroke="black" points="178,-186 178,-209 186,-209 186,-186 178,-186"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="471,-228 345,-228 345,-48 471,-48 471,-228"/>
|
||||
<polygon fill="none" stroke="black" points="345,-205 345,-228 471,-228 471,-205 345,-205"/>
|
||||
<text text-anchor="start" x="397" y="-212.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="345,-182 345,-205 368,-205 368,-182 345,-182"/>
|
||||
<text text-anchor="start" x="349" y="-189.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="368,-182 368,-205 428,-205 428,-182 368,-182"/>
|
||||
<text text-anchor="start" x="372" y="-189.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="428,-182 428,-205 471,-205 471,-182 428,-182"/>
|
||||
<text text-anchor="start" x="432" y="-189.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="406" y="-170.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="387" y="-153.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="431" y="-153.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="345,-142 345,-148 471,-148 471,-142 345,-142"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-143 470,-143 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-147 346,-147 "/>
|
||||
<text text-anchor="start" x="387" y="-128.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="431" y="-128.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="345,-117 345,-123 471,-123 471,-117 345,-117"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-118 470,-118 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-122 346,-122 "/>
|
||||
<text text-anchor="start" x="387" y="-103.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="431" y="-103.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="345,-92 345,-98 471,-98 471,-92 345,-92"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-93 470,-93 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-97 346,-97 "/>
|
||||
<text text-anchor="start" x="386.5" y="-78.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="431" y="-78.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="345,-67 345,-73 471,-73 471,-67 345,-67"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-68 470,-68 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-72 346,-72 "/>
|
||||
<text text-anchor="start" x="357.5" y="-53.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="456,-228 330,-228 330,-48 456,-48 456,-228"/>
|
||||
<polygon fill="none" stroke="black" points="330,-205 330,-228 456,-228 456,-205 330,-205"/>
|
||||
<text text-anchor="start" x="382" y="-212.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="330,-182 330,-205 353,-205 353,-182 330,-182"/>
|
||||
<text text-anchor="start" x="334" y="-189.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="353,-182 353,-205 413,-205 413,-182 353,-182"/>
|
||||
<text text-anchor="start" x="357" y="-189.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="413,-182 413,-205 456,-205 456,-182 413,-182"/>
|
||||
<text text-anchor="start" x="417" y="-189.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="391" y="-170.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="372" y="-153.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="416" y="-153.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-146 330,-148 456,-148 456,-146 330,-146"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="330,-144 330,-146 456,-146 456,-144 330,-144"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-142 330,-144 456,-144 456,-142 330,-142"/>
|
||||
<text text-anchor="start" x="372" y="-128.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="416" y="-128.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-121 330,-123 456,-123 456,-121 330,-121"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-119 330,-121 456,-121 456,-119 330,-119"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-117 330,-119 456,-119 456,-117 330,-117"/>
|
||||
<text text-anchor="start" x="372" y="-103.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="416" y="-103.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-96 330,-98 456,-98 456,-96 330,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-94 330,-96 456,-96 456,-94 330,-94"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-92 330,-94 456,-94 456,-92 330,-92"/>
|
||||
<text text-anchor="start" x="371.5" y="-78.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="416" y="-78.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-71 330,-73 456,-73 456,-71 330,-71"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="330,-69 330,-71 456,-71 456,-69 330,-69"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-67 330,-69 456,-69 456,-67 330,-67"/>
|
||||
<text text-anchor="start" x="342.5" y="-53.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W1 -->
|
||||
<!-- _F1_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>_F1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-196C267.22,-197.72 274.82,-144.72 345,-143"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M201,-198C269.2,-198 276.8,-145 345,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-200C271.18,-198.28 278.78,-145.28 345,-147"/>
|
||||
<title>_F1_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-196C252.22,-197.72 259.82,-144.72 330,-143"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-198C254.2,-198 261.8,-145 330,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-200C256.18,-198.28 263.78,-145.28 330,-147"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _F1_2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-120 201,-120 201,-156 0,-156 0,-120"/>
|
||||
<text text-anchor="start" x="3.5" y="-133.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-128 182.5,-147 188.5,-147 188.5,-128 182.5,-128"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-147 182.5,-128 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-128 188.5,-147 "/>
|
||||
<text text-anchor="start" x="190.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-127.5 0,-148.5 201,-148.5 201,-127.5 0,-127.5"/>
|
||||
<title>_F1_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-156 0,-156 0,-120 186,-120 186,-156"/>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 87,-149 87,-126 0,-126"/>
|
||||
<text text-anchor="start" x="4" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-126 87,-149 147,-149 147,-126 87,-126"/>
|
||||
<text text-anchor="start" x="91" y="-133.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-126 147,-149 178,-149 178,-126 147,-126"/>
|
||||
<text text-anchor="start" x="151" y="-133.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-126 178,-149 186,-149 186,-126 178,-126"/>
|
||||
<polygon fill="none" stroke="black" points="178,-126 178,-149 186,-149 186,-126 178,-126"/>
|
||||
</g>
|
||||
<!-- _F2--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>_F2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-136C263.96,-136.72 278.97,-118.72 345,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-138C265.5,-138 280.5,-120 345,-120"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-140C267.03,-139.28 282.04,-121.28 345,-122"/>
|
||||
</g>
|
||||
<!-- _F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F3</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-60 201,-60 201,-96 0,-96 0,-60"/>
|
||||
<text text-anchor="start" x="3.5" y="-73.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-68 182.5,-87 188.5,-87 188.5,-68 182.5,-68"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-87 182.5,-68 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-68 188.5,-87 "/>
|
||||
<text text-anchor="start" x="190.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-67.5 0,-88.5 201,-88.5 201,-67.5 0,-67.5"/>
|
||||
</g>
|
||||
<!-- _F3--W1 -->
|
||||
<!-- _F1_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>_F3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-76C266.94,-76.67 282.05,-93.67 345,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-78C265.44,-78 280.56,-95 345,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-80C263.95,-79.33 279.06,-96.33 345,-97"/>
|
||||
<title>_F1_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-136C248.96,-136.72 263.97,-118.72 330,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-138C250.5,-138 265.5,-120 330,-120"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-140C252.03,-139.28 267.04,-121.28 330,-122"/>
|
||||
</g>
|
||||
<!-- _F4 -->
|
||||
<!-- _F1_3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F1_3</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-96 0,-96 0,-60 186,-60 186,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0,-66 0,-89 87,-89 87,-66 0,-66"/>
|
||||
<text text-anchor="start" x="4" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-66 87,-89 147,-89 147,-66 87,-66"/>
|
||||
<text text-anchor="start" x="91" y="-73.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-66 147,-89 178,-89 178,-66 147,-66"/>
|
||||
<text text-anchor="start" x="151" y="-73.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-66 178,-89 186,-89 186,-66 178,-66"/>
|
||||
<polygon fill="none" stroke="black" points="178,-66 178,-89 186,-89 186,-66 178,-66"/>
|
||||
</g>
|
||||
<!-- _F1_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>_F1_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-76C251.94,-76.67 267.05,-93.67 330,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-78C250.44,-78 265.56,-95 330,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-80C248.95,-79.33 264.06,-96.33 330,-97"/>
|
||||
</g>
|
||||
<!-- _F1_4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F4</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,0 201,0 201,-36 0,-36 0,0"/>
|
||||
<text text-anchor="start" x="3.5" y="-13.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-8 182.5,-27 188.5,-27 188.5,-8 182.5,-8"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-27 182.5,-8 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-8 188.5,-27 "/>
|
||||
<text text-anchor="start" x="190.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-7.5 0,-28.5 201,-28.5 201,-7.5 0,-7.5"/>
|
||||
<title>_F1_4</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-36 0,-36 0,0 186,0 186,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0,-6 0,-29 87,-29 87,-6 0,-6"/>
|
||||
<text text-anchor="start" x="4" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-6 87,-29 147,-29 147,-6 87,-6"/>
|
||||
<text text-anchor="start" x="91" y="-13.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-6 147,-29 178,-29 178,-6 147,-6"/>
|
||||
<text text-anchor="start" x="151" y="-13.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-6 178,-29 186,-29 186,-6 178,-6"/>
|
||||
<polygon fill="none" stroke="black" points="178,-6 178,-29 186,-29 186,-6 178,-6"/>
|
||||
</g>
|
||||
<!-- _F4--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>_F4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-16C271.02,-17.7 278.93,-69.7 345,-68"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M201,-18C269.05,-18 276.95,-70 345,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-20C267.07,-18.3 274.98,-70.3 345,-72"/>
|
||||
<!-- _F1_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>_F1_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-16C256.02,-17.7 263.93,-69.7 330,-68"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-18C254.05,-18 261.95,-70 330,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-20C252.07,-18.3 259.98,-70.3 330,-72"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-143C534.76,-143.02 550.75,-141.02 615,-141"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M471,-145C535.01,-145 550.99,-143 615,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-147C535.25,-146.98 551.24,-144.98 615,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-143C519.76,-143.02 535.75,-141.02 600,-141"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M456,-145C520.01,-145 535.99,-143 600,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-147C520.25,-146.98 536.24,-144.98 600,-145"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-118C519.88,-118 535.87,-117 600,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-120C520,-120 536,-119 600,-119"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-122C520.13,-122 536.12,-121 600,-121"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-118C534.88,-118 550.87,-117 615,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-120C535,-120 551,-119 615,-119"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-122C535.13,-122 551.12,-121 615,-121"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-93C535.13,-93 551.12,-94 615,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-95C535,-95 551,-96 615,-96"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-97C534.88,-97 550.87,-98 615,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-93C520.13,-93 536.12,-94 600,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-95C520,-95 536,-96 600,-96"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-97C519.88,-97 535.87,-98 600,-98"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-68C535.38,-68.03 551.36,-71.03 615,-71"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M471,-70C535.01,-70 550.99,-73 615,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-72C534.64,-71.97 550.62,-74.97 615,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-68C520.38,-68.03 536.36,-71.03 600,-71"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M456,-70C520.01,-70 535.99,-73 600,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-72C519.64,-71.97 535.62,-74.97 600,-75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Ferrule, crimp, 0.5 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">4</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex 8981, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
<h1>Bill of Materials</h1><table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px"><tr><th align="left" style="border:1px solid #000000; padding: 8px">Item</th><th align="left" style="border:1px solid #000000; padding: 8px">Qty</th><th align="left" style="border:1px solid #000000; padding: 8px">Unit</th><th align="left" style="border:1px solid #000000; padding: 8px">Designators</th></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Crimp ferrule, 0.5 mm², OG</td><td align="right" style="border:1px solid #000000; padding: 4px">4</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px"></td></tr><tr><td style="border:1px solid #000000; padding: 4px">Connector, Molex 8981, female, 4 pins</td><td align="right" style="border:1px solid #000000; padding: 4px">1</td><td style="border:1px solid #000000; padding: 4px"></td><td style="border:1px solid #000000; padding: 4px">X1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², BK</td><td align="right" style="border:1px solid #000000; padding: 4px">0.6</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², RD</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr><tr><td style="border:1px solid #000000; padding: 4px">Wire, 0.5 mm², YE</td><td align="right" style="border:1px solid #000000; padding: 4px">0.3</td><td style="border:1px solid #000000; padding: 4px">m</td><td style="border:1px solid #000000; padding: 4px">W1</td></tr></table></body></html>
|
||||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@ -4,172 +4,181 @@
|
||||
<!-- Generated by graphviz version 2.44.0 (20200408.0750)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="815pt" height="236pt"
|
||||
viewBox="0.00 0.00 815.00 236.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<svg width="776pt" height="236pt"
|
||||
viewBox="0.00 0.00 776.00 236.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 232)">
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-232 811,-232 811,4 -4,4"/>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-232 772,-232 772,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="white" stroke="black" points="615,-62 615,-200 807,-200 807,-62 615,-62"/>
|
||||
<text text-anchor="middle" x="711" y="-184.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polyline fill="none" stroke="black" points="615,-177 807,-177 "/>
|
||||
<text text-anchor="middle" x="658.5" y="-161.8" font-family="arial" font-size="14.00">Molex 8981</text>
|
||||
<polyline fill="none" stroke="black" points="702,-154 702,-177 "/>
|
||||
<text text-anchor="middle" x="731" y="-161.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polyline fill="none" stroke="black" points="760,-154 760,-177 "/>
|
||||
<text text-anchor="middle" x="783.5" y="-161.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polyline fill="none" stroke="black" points="615,-154 807,-154 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-138.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polyline fill="none" stroke="black" points="615,-131 698,-131 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-115.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polyline fill="none" stroke="black" points="615,-108 698,-108 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-92.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polyline fill="none" stroke="black" points="615,-85 698,-85 "/>
|
||||
<text text-anchor="middle" x="656.5" y="-69.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polyline fill="none" stroke="black" points="698,-62 698,-154 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-138.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polyline fill="none" stroke="black" points="698,-131 807,-131 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-115.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="698,-108 807,-108 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-92.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polyline fill="none" stroke="black" points="698,-85 807,-85 "/>
|
||||
<text text-anchor="middle" x="752.5" y="-69.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
<polygon fill="white" stroke="transparent" points="768,-200 600,-200 600,-62 768,-62 768,-200"/>
|
||||
<polygon fill="none" stroke="black" points="600,-177 600,-200 768,-200 768,-177 600,-177"/>
|
||||
<text text-anchor="start" x="675.5" y="-184.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="600,-154 600,-177 679,-177 679,-154 600,-154"/>
|
||||
<text text-anchor="start" x="604" y="-161.8" font-family="arial" font-size="14.00">Molex 8981</text>
|
||||
<polygon fill="none" stroke="black" points="679,-154 679,-177 729,-177 729,-154 679,-154"/>
|
||||
<text text-anchor="start" x="683" y="-161.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="729,-154 729,-177 768,-177 768,-154 729,-154"/>
|
||||
<text text-anchor="start" x="733" y="-161.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="600,-131 600,-154 672,-154 672,-131 600,-131"/>
|
||||
<text text-anchor="start" x="632" y="-138.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="672,-131 672,-154 768,-154 768,-131 672,-131"/>
|
||||
<text text-anchor="start" x="703.5" y="-138.8" font-family="arial" font-size="14.00">+12V</text>
|
||||
<polygon fill="none" stroke="black" points="600,-108 600,-131 672,-131 672,-108 600,-108"/>
|
||||
<text text-anchor="start" x="632" y="-115.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="672,-108 672,-131 768,-131 768,-108 672,-108"/>
|
||||
<text text-anchor="start" x="704.5" y="-115.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="600,-85 600,-108 672,-108 672,-85 600,-85"/>
|
||||
<text text-anchor="start" x="632" y="-92.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="672,-85 672,-108 768,-108 768,-85 672,-85"/>
|
||||
<text text-anchor="start" x="704.5" y="-92.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="600,-62 600,-85 672,-85 672,-62 600,-62"/>
|
||||
<text text-anchor="start" x="632" y="-69.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="672,-62 672,-85 768,-85 768,-62 672,-62"/>
|
||||
<text text-anchor="start" x="707.5" y="-69.8" font-family="arial" font-size="14.00">+5V</text>
|
||||
</g>
|
||||
<!-- _F1 -->
|
||||
<!-- _F1_1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>_F1</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-180 201,-180 201,-216 0,-216 0,-180"/>
|
||||
<text text-anchor="start" x="3.5" y="-193.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-188 182.5,-207 188.5,-207 188.5,-188 182.5,-188"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-207 182.5,-188 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-188 188.5,-207 "/>
|
||||
<text text-anchor="start" x="190.5" y="-193.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-187.5 0,-208.5 201,-208.5 201,-187.5 0,-187.5"/>
|
||||
<title>_F1_1</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-216 0,-216 0,-180 186,-180 186,-216"/>
|
||||
<polygon fill="none" stroke="black" points="0,-186 0,-209 87,-209 87,-186 0,-186"/>
|
||||
<text text-anchor="start" x="4" y="-193.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-186 87,-209 147,-209 147,-186 87,-186"/>
|
||||
<text text-anchor="start" x="91" y="-193.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-186 147,-209 178,-209 178,-186 147,-186"/>
|
||||
<text text-anchor="start" x="151" y="-193.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-186 178,-209 186,-209 186,-186 178,-186"/>
|
||||
<polygon fill="none" stroke="black" points="178,-186 178,-209 186,-209 186,-186 178,-186"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="471,-228 345,-228 345,-48 471,-48 471,-228"/>
|
||||
<polygon fill="none" stroke="black" points="345,-205 345,-228 471,-228 471,-205 345,-205"/>
|
||||
<text text-anchor="start" x="397" y="-212.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="345,-182 345,-205 368,-205 368,-182 345,-182"/>
|
||||
<text text-anchor="start" x="349" y="-189.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="368,-182 368,-205 428,-205 428,-182 368,-182"/>
|
||||
<text text-anchor="start" x="372" y="-189.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="428,-182 428,-205 471,-205 471,-182 428,-182"/>
|
||||
<text text-anchor="start" x="432" y="-189.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="406" y="-170.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="387" y="-153.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="431" y="-153.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="345,-142 345,-148 471,-148 471,-142 345,-142"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-143 470,-143 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-147 346,-147 "/>
|
||||
<text text-anchor="start" x="387" y="-128.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="431" y="-128.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="345,-117 345,-123 471,-123 471,-117 345,-117"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-118 470,-118 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-122 346,-122 "/>
|
||||
<text text-anchor="start" x="387" y="-103.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="431" y="-103.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" stroke-width="2" points="345,-92 345,-98 471,-98 471,-92 345,-92"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-93 470,-93 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-97 346,-97 "/>
|
||||
<text text-anchor="start" x="386.5" y="-78.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="431" y="-78.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#ff0000" stroke="transparent" stroke-width="2" points="345,-67 345,-73 471,-73 471,-67 345,-67"/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="346,-68 470,-68 "/>
|
||||
<polyline fill="none" stroke="black" stroke-width="2" points="470,-72 346,-72 "/>
|
||||
<text text-anchor="start" x="357.5" y="-53.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="white" stroke="black" stroke-dasharray="5,2" points="456,-228 330,-228 330,-48 456,-48 456,-228"/>
|
||||
<polygon fill="none" stroke="black" points="330,-205 330,-228 456,-228 456,-205 330,-205"/>
|
||||
<text text-anchor="start" x="382" y="-212.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="330,-182 330,-205 353,-205 353,-182 330,-182"/>
|
||||
<text text-anchor="start" x="334" y="-189.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="353,-182 353,-205 413,-205 413,-182 353,-182"/>
|
||||
<text text-anchor="start" x="357" y="-189.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="413,-182 413,-205 456,-205 456,-182 413,-182"/>
|
||||
<text text-anchor="start" x="417" y="-189.8" font-family="arial" font-size="14.00">0.3 m</text>
|
||||
<text text-anchor="start" x="391" y="-170.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="372" y="-153.8" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="416" y="-153.8" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-146 330,-148 456,-148 456,-146 330,-146"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="330,-144 330,-146 456,-146 456,-144 330,-144"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-142 330,-144 456,-144 456,-142 330,-142"/>
|
||||
<text text-anchor="start" x="372" y="-128.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="416" y="-128.8" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-121 330,-123 456,-123 456,-121 330,-121"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-119 330,-121 456,-121 456,-119 330,-119"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-117 330,-119 456,-119 456,-117 330,-117"/>
|
||||
<text text-anchor="start" x="372" y="-103.8" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="416" y="-103.8" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-96 330,-98 456,-98 456,-96 330,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-94 330,-96 456,-96 456,-94 330,-94"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-92 330,-94 456,-94 456,-92 330,-92"/>
|
||||
<text text-anchor="start" x="371.5" y="-78.8" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="416" y="-78.8" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-71 330,-73 456,-73 456,-71 330,-71"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="330,-69 330,-71 456,-71 456,-69 330,-69"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="330,-67 330,-69 456,-69 456,-67 330,-67"/>
|
||||
<text text-anchor="start" x="342.5" y="-53.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- _F1--W1 -->
|
||||
<!-- _F1_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>_F1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-196C267.22,-197.72 274.82,-144.72 345,-143"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M201,-198C269.2,-198 276.8,-145 345,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-200C271.18,-198.28 278.78,-145.28 345,-147"/>
|
||||
<title>_F1_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-196C252.22,-197.72 259.82,-144.72 330,-143"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-198C254.2,-198 261.8,-145 330,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-200C256.18,-198.28 263.78,-145.28 330,-147"/>
|
||||
</g>
|
||||
<!-- _F2 -->
|
||||
<!-- _F1_2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>_F2</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-120 201,-120 201,-156 0,-156 0,-120"/>
|
||||
<text text-anchor="start" x="3.5" y="-133.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-128 182.5,-147 188.5,-147 188.5,-128 182.5,-128"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-147 182.5,-128 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-128 188.5,-147 "/>
|
||||
<text text-anchor="start" x="190.5" y="-133.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-127.5 0,-148.5 201,-148.5 201,-127.5 0,-127.5"/>
|
||||
<title>_F1_2</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-156 0,-156 0,-120 186,-120 186,-156"/>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 87,-149 87,-126 0,-126"/>
|
||||
<text text-anchor="start" x="4" y="-133.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-126 87,-149 147,-149 147,-126 87,-126"/>
|
||||
<text text-anchor="start" x="91" y="-133.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-126 147,-149 178,-149 178,-126 147,-126"/>
|
||||
<text text-anchor="start" x="151" y="-133.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-126 178,-149 186,-149 186,-126 178,-126"/>
|
||||
<polygon fill="none" stroke="black" points="178,-126 178,-149 186,-149 186,-126 178,-126"/>
|
||||
</g>
|
||||
<!-- _F2--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>_F2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-136C263.96,-136.72 278.97,-118.72 345,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-138C265.5,-138 280.5,-120 345,-120"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-140C267.03,-139.28 282.04,-121.28 345,-122"/>
|
||||
</g>
|
||||
<!-- _F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F3</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,-60 201,-60 201,-96 0,-96 0,-60"/>
|
||||
<text text-anchor="start" x="3.5" y="-73.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-68 182.5,-87 188.5,-87 188.5,-68 182.5,-68"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-87 182.5,-68 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-68 188.5,-87 "/>
|
||||
<text text-anchor="start" x="190.5" y="-73.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-67.5 0,-88.5 201,-88.5 201,-67.5 0,-67.5"/>
|
||||
</g>
|
||||
<!-- _F3--W1 -->
|
||||
<!-- _F1_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>_F3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-76C266.94,-76.67 282.05,-93.67 345,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-78C265.44,-78 280.56,-95 345,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-80C263.95,-79.33 279.06,-96.33 345,-97"/>
|
||||
<title>_F1_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-136C248.96,-136.72 263.97,-118.72 330,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-138C250.5,-138 265.5,-120 330,-120"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-140C252.03,-139.28 267.04,-121.28 330,-122"/>
|
||||
</g>
|
||||
<!-- _F4 -->
|
||||
<!-- _F1_3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>_F1_3</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-96 0,-96 0,-60 186,-60 186,-96"/>
|
||||
<polygon fill="none" stroke="black" points="0,-66 0,-89 87,-89 87,-66 0,-66"/>
|
||||
<text text-anchor="start" x="4" y="-73.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-66 87,-89 147,-89 147,-66 87,-66"/>
|
||||
<text text-anchor="start" x="91" y="-73.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-66 147,-89 178,-89 178,-66 147,-66"/>
|
||||
<text text-anchor="start" x="151" y="-73.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-66 178,-89 186,-89 186,-66 178,-66"/>
|
||||
<polygon fill="none" stroke="black" points="178,-66 178,-89 186,-89 186,-66 178,-66"/>
|
||||
</g>
|
||||
<!-- _F1_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>_F1_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-76C251.94,-76.67 267.05,-93.67 330,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-78C250.44,-78 265.56,-95 330,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-80C248.95,-79.33 264.06,-96.33 330,-97"/>
|
||||
</g>
|
||||
<!-- _F1_4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>_F4</title>
|
||||
<polygon fill="white" stroke="transparent" points="0,0 201,0 201,-36 0,-36 0,0"/>
|
||||
<text text-anchor="start" x="3.5" y="-13.8" font-family="arial" font-size="14.00"> Ferrule, crimp, 0.5 mm² OG </text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="182.5,-8 182.5,-27 188.5,-27 188.5,-8 182.5,-8"/>
|
||||
<polyline fill="none" stroke="black" points="182.5,-27 182.5,-8 "/>
|
||||
<polyline fill="none" stroke="black" points="188.5,-8 188.5,-27 "/>
|
||||
<text text-anchor="start" x="190.5" y="-13.8" font-family="arial" font-size="14.00">  </text>
|
||||
<polygon fill="none" stroke="black" points="0,-7.5 0,-28.5 201,-28.5 201,-7.5 0,-7.5"/>
|
||||
<title>_F1_4</title>
|
||||
<polygon fill="white" stroke="transparent" points="186,-36 0,-36 0,0 186,0 186,-36"/>
|
||||
<polygon fill="none" stroke="black" points="0,-6 0,-29 87,-29 87,-6 0,-6"/>
|
||||
<text text-anchor="start" x="4" y="-13.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="87,-6 87,-29 147,-29 147,-6 87,-6"/>
|
||||
<text text-anchor="start" x="91" y="-13.8" font-family="arial" font-size="14.00">0.5 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="147,-6 147,-29 178,-29 178,-6 147,-6"/>
|
||||
<text text-anchor="start" x="151" y="-13.8" font-family="arial" font-size="14.00">OG</text>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="178,-6 178,-29 186,-29 186,-6 178,-6"/>
|
||||
<polygon fill="none" stroke="black" points="178,-6 178,-29 186,-29 186,-6 178,-6"/>
|
||||
</g>
|
||||
<!-- _F4--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>_F4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-16C271.02,-17.7 278.93,-69.7 345,-68"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M201,-18C269.05,-18 276.95,-70 345,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M201,-20C267.07,-18.3 274.98,-70.3 345,-72"/>
|
||||
<!-- _F1_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>_F1_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-16C256.02,-17.7 263.93,-69.7 330,-68"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-18C254.05,-18 261.95,-70 330,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-20C252.07,-18.3 259.98,-70.3 330,-72"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-143C534.76,-143.02 550.75,-141.02 615,-141"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M471,-145C535.01,-145 550.99,-143 615,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-147C535.25,-146.98 551.24,-144.98 615,-145"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-143C519.76,-143.02 535.75,-141.02 600,-141"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M456,-145C520.01,-145 535.99,-143 600,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-147C520.25,-146.98 536.24,-144.98 600,-145"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-118C519.88,-118 535.87,-117 600,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-120C520,-120 536,-119 600,-119"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-122C520.13,-122 536.12,-121 600,-121"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-118C534.88,-118 550.87,-117 615,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-120C535,-120 551,-119 615,-119"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-122C535.13,-122 551.12,-121 615,-121"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-93C535.13,-93 551.12,-94 615,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-95C535,-95 551,-96 615,-96"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-97C534.88,-97 550.87,-98 615,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-93C520.13,-93 536.12,-94 600,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-95C520,-95 536,-96 600,-96"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-97C519.88,-97 535.87,-98 600,-98"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-68C535.38,-68.03 551.36,-71.03 615,-71"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M471,-70C535.01,-70 550.99,-73 615,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M471,-72C534.64,-71.97 550.62,-74.97 615,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-68C520.38,-68.03 536.36,-71.03 600,-71"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M456,-70C520.01,-70 535.99,-73 600,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M456,-72C519.64,-71.97 535.62,-74.97 600,-75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 12 KiB |
@ -1,12 +1,12 @@
|
||||
connectors:
|
||||
X1:
|
||||
pinout: [+12V, GND, GND, +5V]
|
||||
pinlabels: [+12V, GND, GND, +5V]
|
||||
type: Molex 8981
|
||||
subtype: female
|
||||
F1:
|
||||
category: ferrule
|
||||
style: simple
|
||||
autogenerate: true
|
||||
type: Ferrule, crimp
|
||||
type: Crimp ferrule
|
||||
subtype: 0.5 mm²
|
||||
color: OG # optional color
|
||||
|
||||
@ -18,9 +18,7 @@ cables:
|
||||
colors: [YE, BK, BK, RD] # custom colors, wirecount is implicit
|
||||
|
||||
connections:
|
||||
- # attach ferrules
|
||||
- F1 # no need for list of connections; one ferrule per wire is auto-generated and attached
|
||||
- W1: [1-4] # a new ferrule is auto-generated for each wire
|
||||
- # attach connectors (separately from ferrules)
|
||||
-
|
||||
- F1 # a new ferrule is auto-generated for each of the four wires
|
||||
- W1: [1-4]
|
||||
- X1: [1-4]
|
||||
|
||||