Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
afec1c22b9 | |||
51ee34bff3 | |||
01a09e2403 | |||
c9358c7e4d |
3
.gitignore
vendored
3
.gitignore
vendored
@ -66,7 +66,7 @@ Thumbs.db # Windows Explorer
|
||||
*.zip
|
||||
|
||||
# IDEs
|
||||
.vscode
|
||||
# .vscode
|
||||
|
||||
# LibreOffice
|
||||
.~lock.*
|
||||
@ -88,7 +88,6 @@ Thumbs.db
|
||||
|
||||
# Custom
|
||||
Dokumentation/Work/**
|
||||
#.vscode
|
||||
*Kopie.qet
|
||||
*.log
|
||||
desktop.ini
|
||||
|
80
.vscode/cspell.json
vendored
Normal file
80
.vscode/cspell.json
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
{
|
||||
"version": "0.2",
|
||||
"language": "en,de",
|
||||
"languageSettings": [
|
||||
{
|
||||
"languageId": "*",
|
||||
"enabled": false
|
||||
},
|
||||
{
|
||||
"languageId": "plaintext",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"languageId": "markdown",
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"languageId": "asciidoc",
|
||||
"enabled": true
|
||||
}
|
||||
],
|
||||
"ignorePaths": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"build",
|
||||
"output",
|
||||
".git"
|
||||
],
|
||||
"words": [
|
||||
"abschranken",
|
||||
"adoc",
|
||||
"allpolig",
|
||||
"arraybackslash",
|
||||
"AsciiDoc",
|
||||
"autochapter",
|
||||
"Autorenrechtlich",
|
||||
"Buildchain",
|
||||
"Buildversion",
|
||||
"clonen",
|
||||
"Codesys",
|
||||
"Codesysprogramm",
|
||||
"DGUV",
|
||||
"Effizienzkritischen",
|
||||
"Ethercat",
|
||||
"Funkengefahr",
|
||||
"gitcopy",
|
||||
"kapitel",
|
||||
"Licence",
|
||||
"localfonts",
|
||||
"Logfile",
|
||||
"makefile",
|
||||
"Neutralleiter",
|
||||
"newpage",
|
||||
"okular",
|
||||
"Ölflex",
|
||||
"pandoc",
|
||||
"Pandoc",
|
||||
"PDFTheme",
|
||||
"Pneumatikventile",
|
||||
"PNOZ",
|
||||
"Pressenstempel",
|
||||
"Printversion",
|
||||
"Projektinterne",
|
||||
"Propotionalventile",
|
||||
"raggedright",
|
||||
"realAscot",
|
||||
"Schottky",
|
||||
"Skotarczak",
|
||||
"tabularx",
|
||||
"texlive",
|
||||
"textbf",
|
||||
"textwidth",
|
||||
"tocgen",
|
||||
"versionierten",
|
||||
"winget",
|
||||
"Leckagen",
|
||||
"Mitarbeiter",
|
||||
"Zustimmtaster",
|
||||
]
|
||||
}
|
9
.vscode/extensions.json
vendored
Normal file
9
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"yzane.markdown-pdf",
|
||||
"yzhang.markdown-all-in-one",
|
||||
"ms-ceintl.vscode-language-pack-de",
|
||||
"tomoki1207.pdf"
|
||||
],
|
||||
"unwantedRecommendations": []
|
||||
}
|
50
.vscode/settings.json
vendored
Normal file
50
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
// --- Ausgabe ---
|
||||
"markdown-pdf.type": ["pdf"], // Exportformat(e)
|
||||
"markdown-pdf.outputDirectory": "./build/", // Zielordner relativ zum Projekt
|
||||
"markdown-pdf.outputDirectoryRelativePathFile": true,
|
||||
"markdown-pdf.convertOnSave": true,
|
||||
|
||||
// --- Styles ---
|
||||
"markdown-pdf.styles": [
|
||||
"docs/markdown-pdf.css" // dein projektspezifisches CSS
|
||||
],
|
||||
"markdown-pdf.stylesRelativePathFile": false, // relativer Bezug zum Workspace
|
||||
"markdown-pdf.includeDefaultStyles": true, // VSCode/Ext.-Default-Styles beibehalten
|
||||
|
||||
// --- Syntax-Highlighting ---
|
||||
"markdown-pdf.highlight": true,
|
||||
"markdown-pdf.highlightStyle": "github.css", // Alternativen: monokai.css, atom-one-dark.css, ...
|
||||
|
||||
// --- PDF-Optionen (Puppeteer) ---
|
||||
"markdown-pdf.format": "A4", // oder: A3/A5/Letter …
|
||||
"markdown-pdf.printBackground": true,
|
||||
"markdown-pdf.margin.top": "2.5cm",
|
||||
"markdown-pdf.margin.bottom": "2.5cm",
|
||||
"markdown-pdf.margin.left": "2.5cm",
|
||||
"markdown-pdf.margin.right": "2.5cm",
|
||||
"markdown-pdf.displayHeaderFooter": true,
|
||||
//"markdown-pdf.headerTemplate": "<div style='font-size:9px;margin-left:1cm;'><span class='title'></span></div><div style='font-size:9px;margin-left:auto;margin-right:1cm;'>%%ISO-DATE%%</div>",
|
||||
//"markdown-pdf.footerTemplate": "<div style='font-size:9px;margin:0 auto;'><span class='pageNumber'></span> / <span class='totalPages'></span></div>",
|
||||
|
||||
//Platzhalter:
|
||||
//<span class="date"></span> → aktuelles Datum
|
||||
//<span class="title"></span> → Dokumenttitel (Dateiname)
|
||||
//<span class="url"></span> → Dokumentpfad
|
||||
//<span class="pageNumber"></span> → aktuelle Seite
|
||||
//<span class="totalPages"></span> → Gesamtseiten
|
||||
|
||||
// Kopfzeile anpassen:
|
||||
"markdown-pdf.headerTemplate": "<div style='font-size:8px; width:100%; display:flex; justify-content:space-between; margin:0 1cm; color:rgba(0,0,0,0.5);'><span class='title'><span>Seite <span class='pageNumber'></span> / <span class='totalPages'></span></span></div>",
|
||||
|
||||
// Fußzeile (Beispiel):
|
||||
"markdown-pdf.footerTemplate": "<div style='font-size:8px; margin:0 auto; color:rgba(0,0,0,0.5);'>© 2025 - A. Skotarczak - ionivation.com</div>",
|
||||
|
||||
// --- Optional: Auto-Konvertierung beim Speichern (mit Neustart von VS Code) ---
|
||||
// "markdown-pdf.convertOnSave": true,
|
||||
// "markdown-pdf.convertOnSaveExclude": ["README.md"]
|
||||
|
||||
// --- Optional: eigenes Chrome/Chromium statt gebündeltem Chromium ---
|
||||
// "markdown-pdf.executablePath": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"
|
||||
|
||||
}
|
@ -21,11 +21,10 @@
|
||||
|
||||
## Anleitung
|
||||
|
||||
Hier eine saubere **Vorlage für ein GitHub-Repository**, damit andere deine **KiCad-Symbollibrary** direkt per URL in ihre `sym-lib-table` einbinden können.
|
||||
|
||||
### MyCustomLib – KiCad Symbol Library
|
||||
|
||||
Diese Bibliothek enthält Symbole für Bauteile aus dem Schaltschrankbau.
|
||||
Diese Bibliothek enthält Symbole für Bauteile aus und für den Schaltschrankbau, Konstruktion, Hobby und Handwerk.
|
||||
Teilweise symbolische Darstellung.
|
||||
|
||||
#### Direkteinbindung in KiCad 9
|
||||
|
||||
@ -136,7 +135,7 @@ Diese Bibliothek enthält Symbole für Bauteile aus dem Schaltschrankbau.
|
||||
| X | Bauteil, sonstiges | Allgemeiner Platzhalter |
|
||||
| IC | Integrierter Schaltkreis| Synonym für U, oft verwendet |
|
||||
| OPT | Optokoppler | Optische Kopplungseinheit |
|
||||
| LED | Leuchtdiode | Lichtemittierende Diode |
|
||||
| LED | Leuchtdiode | Lichtmittierende Diode |
|
||||
| SW | Schalter (Switch) | Manuell bedienbarer Schalter |
|
||||
| VR | Variabler Widerstand | Potentiometer oder Trimmer |
|
||||
| SCR | Thyristor | Steuerbare Halbleiterdiode |
|
||||
@ -150,4 +149,4 @@ Diese Bibliothek enthält Symbole für Bauteile aus dem Schaltschrankbau.
|
||||
|
||||
## License
|
||||
|
||||
(c) 2025 - Adam Skotarczak
|
||||
© 2025 - Adam Skotarczak
|
||||
|
@ -1,7 +1,15 @@
|
||||
# Interne Dokumentation
|
||||
|
||||
- [**Betriebsmittelkennzeichnung**](./abkuerzungen_international.mdbetriebsmittelkennzeichnung.md)
|
||||
Die Dokumentation gehört aktuell nicht zuz KiCAD Lib aber diente mir bei der Entwicklung teilweise als Hilfe.
|
||||
Ich lasse sie vorläufig noch drin bevor diese in eine einheitliche Dokumentation übernommen wird.
|
||||
|
||||
- [**Betriebsmittelkennzeichnung**](./abkuerzungen_international.md)
|
||||
- [PDF](./build/Betriebsmittelkennzeichnung.pdf)
|
||||
- [**Abkürzungen** (deutsch/ International)](./abkuerzungen_international.md)
|
||||
- [PDF](./build/abkuerzungen_international.pdf)
|
||||
- [**Ortskennzeichen**](./ortkennzeichen.md)
|
||||
- [Listen](./ortskennzeichen_liste.md)
|
||||
- [PDF](./build/ortkennzeichen.pdf)
|
||||
- [**Listen**](./ortskennzeichen_liste.md)
|
||||
- [PDF](./build/ortskennzeichen_liste.pdf)
|
||||
- [**Farben und Querschnitte**](./farben_querschnitt.md)
|
||||
- [PDF](./build/farben_querschnitt.pdf)
|
||||
|
BIN
docs/build/Betriebsmittelkennzeichnung.pdf
vendored
Normal file
BIN
docs/build/Betriebsmittelkennzeichnung.pdf
vendored
Normal file
Binary file not shown.
BIN
docs/build/abkuerzungen_international.pdf
vendored
Normal file
BIN
docs/build/abkuerzungen_international.pdf
vendored
Normal file
Binary file not shown.
BIN
docs/build/farben_querschnitt.pdf
vendored
Normal file
BIN
docs/build/farben_querschnitt.pdf
vendored
Normal file
Binary file not shown.
BIN
docs/build/ortkennzeichen.pdf
vendored
Normal file
BIN
docs/build/ortkennzeichen.pdf
vendored
Normal file
Binary file not shown.
BIN
docs/build/ortskennzeichen_liste.pdf
vendored
Normal file
BIN
docs/build/ortskennzeichen_liste.pdf
vendored
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
# 📑 Typische Abkürzungen in Schaltplänen
|
||||
# 📑 Abkürzungen in Schaltplänen
|
||||
|
||||
> (basierend auf DIN 47100 / VDE / IEC)
|
||||
|
||||
|
88
docs/markdown-pdf.css
Normal file
88
docs/markdown-pdf.css
Normal file
@ -0,0 +1,88 @@
|
||||
/* -------- Grundschrift & Layout -------- */
|
||||
@page {
|
||||
size: A4;
|
||||
margin: 1.5cm;
|
||||
}
|
||||
:root {
|
||||
--text: #222;
|
||||
--muted: #666;
|
||||
--accent: #0d6efd; /* Bootstrap-typischer Blauton */
|
||||
--code-bg: #f6f8fa;
|
||||
--border: #e5e7eb;
|
||||
}
|
||||
html, body {
|
||||
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
color: var(--text);
|
||||
line-height: 1.5;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
/* -------- Überschriften-Hierarchie -------- */
|
||||
h1, h2, h3, h4, h5, h6 { page-break-after: avoid; font-weight: 700; }
|
||||
h1 { font-size: 22pt; margin: 0 0 0.4cm; border-bottom: 2px solid var(--border); padding-bottom: 0.2cm; }
|
||||
h2 { font-size: 18pt; margin: 0.6cm 0 0.3cm; }
|
||||
h3 { font-size: 14pt; margin: 0.5cm 0 0.25cm; }
|
||||
|
||||
/* -------- Absatz & Listen -------- */
|
||||
p { margin: 0 0 0.35cm; }
|
||||
ul, ol { margin: 0 0 0.35cm 0.6cm; }
|
||||
li { margin: 0.1cm 0; }
|
||||
|
||||
/* -------- Tabellen -------- */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 0.35cm 0;
|
||||
font-size: 10pt;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid var(--border);
|
||||
padding: 6px 8px;
|
||||
vertical-align: top;
|
||||
}
|
||||
th {
|
||||
background: #fafafa;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* -------- Code-Blöcke & Inline-Code -------- */
|
||||
code, pre code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Liberation Mono", Consolas, "Courier New", monospace; }
|
||||
pre {
|
||||
background: var(--code-bg);
|
||||
border: 1px solid var(--border);
|
||||
padding: 10px 12px;
|
||||
border-radius: 6px;
|
||||
overflow: auto;
|
||||
font-size: 10pt;
|
||||
margin: 0.35cm 0;
|
||||
}
|
||||
code {
|
||||
background: var(--code-bg);
|
||||
padding: 0 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* -------- Bilder, Zitate, Links -------- */
|
||||
img { max-width: 100%; page-break-inside: avoid; }
|
||||
blockquote {
|
||||
margin: 0.35cm 0;
|
||||
padding: 0.01cm 0 0.01cm 0.5cm;
|
||||
border-left: 3px solid var(--accent);
|
||||
color: var(--muted);
|
||||
}
|
||||
a { color: var(--accent); text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
/* -------- Seitenumbruch steuern -------- */
|
||||
hr, .page { page-break-after: always; border: 0; height: 0; }
|
||||
|
||||
/* -------- ToC (optional, falls generiert) -------- */
|
||||
.toc ul { list-style: none; margin-left: 0; padding-left: 0; }
|
||||
.toc li { margin: 0.15cm 0; }
|
||||
|
||||
/* -------- Mermaid/PlantUML (falls genutzt) -------- */
|
||||
.mermaid, .plantuml { page-break-inside: avoid; }
|
||||
|
||||
/* -------- Emoji Größe anpassbar -------- */
|
||||
.emoji { height: 1.25em; }
|
||||
|
@ -917,6 +917,409 @@
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "MCR-SLP-1-5-UI-0_(U)"
|
||||
(pin_names
|
||||
(offset 0)
|
||||
(hide yes)
|
||||
)
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board no)
|
||||
(property "Reference" "-U"
|
||||
(at -19.558 9.144 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Value" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Footprint" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" "MCR-SLP-1-5-UI-0"
|
||||
(at 0 -19.812 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "ki_keywords" "Sensor"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(symbol "MCR-SLP-1-5-UI-0_(U)_0_1"
|
||||
(rectangle
|
||||
(start -13.97 8.382)
|
||||
(end 13.9699 -8.2549)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -13.97 -5.08) (xy 13.97 -5.08)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -10.16 8.89) (xy -10.16 8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -10.16 -8.89) (xy -10.16 -8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -3.81 8.89) (xy -3.81 8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -3.81 -8.89) (xy -3.81 -8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 8.89) (xy 3.81 8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 -8.89) (xy 3.81 -8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 10.16 8.89) (xy 10.16 8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 10.16 -8.89) (xy 10.16 -8.382)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "MCR-SLP-1-5-UI-0_(U)_1_1"
|
||||
(text "1A"
|
||||
(at -10.16 6.858 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "I"
|
||||
(at -10.16 -7.112 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "5A"
|
||||
(at -3.81 6.858 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "U"
|
||||
(at -3.81 -7.112 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "MCR-SLP-1-5-UI-0"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.524 1.524)
|
||||
(thickness 0.3048)
|
||||
(bold yes)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "NC"
|
||||
(at 3.81 6.858 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "GND2"
|
||||
(at 3.81 -7.112 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "1A/5A"
|
||||
(at 10.414 6.858 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "GND2"
|
||||
(at 10.414 -7.112 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at -10.16 10.16 270)
|
||||
(length 1.27)
|
||||
(name "1A"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "1"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at -10.16 -10.16 90)
|
||||
(length 1.27)
|
||||
(name "I"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "9"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at -3.81 10.16 270)
|
||||
(length 1.27)
|
||||
(name "5A"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at -3.81 -10.16 90)
|
||||
(length 1.27)
|
||||
(name "U"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "10"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 3.81 10.16 270)
|
||||
(length 1.27)
|
||||
(name "NC"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "3"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 3.81 -10.16 90)
|
||||
(length 1.27)
|
||||
(name "GND2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "11"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 10.16 10.16 270)
|
||||
(length 1.27)
|
||||
(name "1A/5A"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "4"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 10.16 -10.16 90)
|
||||
(length 1.27)
|
||||
(name "GND2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "12"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "Monitor-HMI_(A)"
|
||||
(pin_numbers
|
||||
(hide yes)
|
||||
|
@ -897,11 +897,11 @@
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board no)
|
||||
(property "Reference" "-E"
|
||||
(at -6.35 10.16 0)
|
||||
(property "Reference" "-A"
|
||||
(at -13.208 15.24 0)
|
||||
(effects
|
||||
(font
|
||||
(size 2.032 2.032)
|
||||
(size 1.524 1.524)
|
||||
)
|
||||
)
|
||||
)
|
||||
@ -950,6 +950,15 @@
|
||||
(justify top)
|
||||
)
|
||||
)
|
||||
(property "-E" ""
|
||||
(at -5.08 9.906 0)
|
||||
(show_name)
|
||||
(effects
|
||||
(font
|
||||
(size 2.032 2.032)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "PLC_IN_(E)_0_1"
|
||||
(rectangle
|
||||
(start -8.89 12.7)
|
||||
@ -1032,15 +1041,529 @@
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "PLC_IN_ANALOG_RTD_(E)"
|
||||
(pin_names
|
||||
(hide yes)
|
||||
)
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board no)
|
||||
(property "Reference" "-A"
|
||||
(at -15.494 14.986 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.524 1.524)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Value" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Footprint" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" "RTD"
|
||||
(at 0 -14.478 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Target" "=Gruppe/ Seite.Pfad"
|
||||
(at 0.254 -7.112 0)
|
||||
(do_not_autoplace)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify top)
|
||||
)
|
||||
)
|
||||
(property "-E" ""
|
||||
(at -5.842 -10.16 0)
|
||||
(show_name)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "PLC_IN_ANALOG_RTD_(E)_0_1"
|
||||
(rectangle
|
||||
(start -10.16 12.7)
|
||||
(end 10.16 -11.43)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -10.16 10.16) (xy 10.16 10.16)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -10.16 2.54) (xy 10.16 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -10.16 -6.35) (xy 10.16 -6.35)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -7.62 12.7) (xy -7.62 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -5.08 12.7) (xy -5.08 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -2.54 12.7) (xy -2.54 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 12.7) (xy 0 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0) (xy 0 -5.08) (xy 1.27 -3.81) (xy 0 -5.08) (xy -1.27 -3.81)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.54 12.7) (xy 2.54 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 5.08 12.7) (xy 5.08 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 7.62 12.7) (xy 7.62 2.54)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "PLC_IN_ANALOG_RTD_(E)_1_1"
|
||||
(text "U1+"
|
||||
(at -9.398 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".00"
|
||||
(at -8.89 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "U2+"
|
||||
(at -6.858 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".01"
|
||||
(at -6.35 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "U3+"
|
||||
(at -4.318 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text "AE"
|
||||
(at -4.064 -0.254 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.524 1.524)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text ".02"
|
||||
(at -3.81 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "U4+"
|
||||
(at -1.778 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".03"
|
||||
(at -1.27 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "I1+"
|
||||
(at 0.762 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".04"
|
||||
(at 1.27 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "I2+"
|
||||
(at 3.048 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".05"
|
||||
(at 3.81 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "IN"
|
||||
(at 3.81 -0.254 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.524 1.524)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "I3+"
|
||||
(at 5.842 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".06"
|
||||
(at 6.35 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(text "I4+"
|
||||
(at 8.382 4.826 900)
|
||||
(effects
|
||||
(font
|
||||
(size 1.016 1.016)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(text ".07"
|
||||
(at 8.89 11.176 0)
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at -8.89 15.24 270)
|
||||
(length 2.54)
|
||||
(name "1"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "1"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at -6.35 15.24 270)
|
||||
(length 2.54)
|
||||
(name "2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at -3.81 15.24 270)
|
||||
(length 2.54)
|
||||
(name "3"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "3"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at -1.27 15.24 270)
|
||||
(length 2.54)
|
||||
(name "4"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "4"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at 1.27 15.24 270)
|
||||
(length 2.54)
|
||||
(name "5"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "5"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at 3.81 15.24 270)
|
||||
(length 2.54)
|
||||
(name "6"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "6"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at 6.35 15.24 270)
|
||||
(length 2.54)
|
||||
(name "7"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "7"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin input line
|
||||
(at 8.89 15.24 270)
|
||||
(length 2.54)
|
||||
(name "8"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "8"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "PLC_OUT_(A)"
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board no)
|
||||
(property "Reference" "-A"
|
||||
(at -6.35 10.16 0)
|
||||
(at -12.954 16.002 0)
|
||||
(effects
|
||||
(font
|
||||
(size 2.032 2.032)
|
||||
(size 1.524 1.524)
|
||||
)
|
||||
)
|
||||
)
|
||||
@ -1088,6 +1611,15 @@
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "-A" ""
|
||||
(at -4.826 10.16 0)
|
||||
(show_name)
|
||||
(effects
|
||||
(font
|
||||
(size 2.032 2.032)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "PLC_OUT_(A)_0_1"
|
||||
(rectangle
|
||||
(start -8.89 12.7)
|
||||
@ -1352,7 +1884,7 @@
|
||||
)
|
||||
)
|
||||
(property "XREF" ""
|
||||
(at -6.604 4.064 0)
|
||||
(at 13.208 0 0)
|
||||
(show_name)
|
||||
(effects
|
||||
(font
|
||||
@ -1383,6 +1915,18 @@
|
||||
)
|
||||
)
|
||||
(symbol "Relais_(K)_A1-A2_1_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 6.35 0) (xy 11.43 0)
|
||||
)
|
||||
(stroke
|
||||
(width 0.1016)
|
||||
(type dash)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 0 5.08 270)
|
||||
(length 2.54)
|
||||
@ -1700,6 +2244,338 @@
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "Relais_(K)_NO_Allpolig"
|
||||
(pin_numbers
|
||||
(hide yes)
|
||||
)
|
||||
(pin_names
|
||||
(offset 0)
|
||||
)
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board yes)
|
||||
(property "Reference" "-K"
|
||||
(at -4.318 4.318 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Value" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Footprint" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "XREF" ""
|
||||
(at -5.334 0 0)
|
||||
(show_name)
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Relais_(K)_NO_Allpolig_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 1.27) (xy 0 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 -1.27) (xy -1.27 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 -1.27) (xy 0 -2.032)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 1.27) (xy 3.81 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 -1.27) (xy 2.54 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 -1.27) (xy 3.81 -2.032)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 7.62 1.27) (xy 7.62 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 7.62 -1.27) (xy 6.35 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 7.62 -1.27) (xy 7.62 -2.032)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Relais_(K)_NO_Allpolig_1_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 2.794) (xy 0 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.81 2.794) (xy 3.81 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 6.858 0) (xy -3.81 0)
|
||||
)
|
||||
(stroke
|
||||
(width 0.1016)
|
||||
(type dash)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 7.62 2.794) (xy 7.62 1.27)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type none)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 0 5.08 270)
|
||||
(length 2.286)
|
||||
(name "1"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "1"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 0 -3.81 90)
|
||||
(length 2.286)
|
||||
(name "2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "2"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 3.81 5.08 270)
|
||||
(length 2.286)
|
||||
(name "3"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "3"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 3.81 -3.81 90)
|
||||
(length 1.778)
|
||||
(name "4"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "4"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 7.62 5.08 270)
|
||||
(length 2.286)
|
||||
(name "5"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "5"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(pin passive line
|
||||
(at 7.62 -3.81 90)
|
||||
(length 1.778)
|
||||
(name "6"
|
||||
(effects
|
||||
(font
|
||||
(size 0.762 0.762)
|
||||
)
|
||||
)
|
||||
)
|
||||
(number "6"
|
||||
(effects
|
||||
(font
|
||||
(size 0.508 0.508)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(embedded_fonts no)
|
||||
)
|
||||
(symbol "Relais_(K)_PLC_13-14"
|
||||
(pin_numbers
|
||||
(hide yes)
|
||||
|
Loading…
x
Reference in New Issue
Block a user