Compare commits

...

12 Commits
v0.6.0 ... main

Author SHA1 Message Date
af33b2ae91 v0.7.0 2025-09-10 14:09:19 +02:00
49354ee6e9 Licence 2025-09-02 08:11:23 +02:00
e8fe10ee10 Merge branch 'main' into work 2025-09-02 07:54:36 +02:00
ea742cee52 Heizung etc. 2025-09-02 07:46:59 +02:00
d2673e86e8 UPS-US-Monitor-USB 2025-09-02 06:40:32 +02:00
be98b7c1ea Taster NC/NO 2025-09-01 10:41:32 +02:00
842ca5bea1 Taster NC/ Schloss NO 2025-09-01 10:37:15 +02:00
2d5cbca193 wip 2025-08-29 08:59:45 +02:00
1e8e97e705 0.5.0 2025-08-28 14:24:00 +02:00
296ec8557c korrektur 2025-08-28 07:40:10 +02:00
9e68d55b4e refactory + RCD 2025-08-27 12:01:06 +02:00
30e12ee5d6 pe 2025-08-27 07:32:45 +02:00
18 changed files with 1717 additions and 20 deletions

3
.gitignore vendored
View File

@ -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
View 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
View 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
View 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"
}

37
LICENCE Normal file
View File

@ -0,0 +1,37 @@
# 1. Lizenz-Header für KiCad-Dateien
```text
# -----------------------------------------------------------------------------
# Symbolbibliothek für KiCad
#
# © 2025 Adam Skotarczak ionivation.com
#
# Lizenz: Frei nutzbar, veränderbar und weitergebbar (inkl. kommerzieller Nutzung).
# Bedingung: Bitte nennen Sie bei Verwendung oder Weitergabe den ursprünglichen Autor.
#
# License: Free to use, modify and redistribute (including commercial use).
# Requirement: Please give credit to the original author when using or redistributing.
# -----------------------------------------------------------------------------
```
---
## 2. README-Lizenztext
### Deutsch
Diese Symbolbibliothek für KiCad darf **frei genutzt, verändert und weitergegeben** werden auch in kommerziellen Projekten.
Einzige Bedingung: Bitte bei Verwendung oder Weitergabe den ursprünglichen Autor nennen.
**Namensnennung:**
© 2025 Adam Skotarczak [ionivation.com](http://www.ionivation.com)
---
### English
This KiCad symbol library may be **freely used, modified and redistributed** including for commercial projects.
The only requirement: Please give credit to the original author when using or redistributing.
**Attribution:**
© 2025 Adam Skotarczak [ionivation.com](http://www.ionivation.com)

View File

@ -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
@ -57,7 +56,7 @@ Diese Bibliothek enthält Symbole für Bauteile aus dem Schaltschrankbau.
## Dokumente und Anleitungen
### Betriebsmittelkennzeichnung Industrie
### [Betriebsmittelkennzeichnung Industrie](./docs/README.md)
#### Kennbuchstaben (A1) nach DIN EN IEC 81346-2 2019 / DIN EN IEC 81346-2 2020-10
@ -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
&copy; 2025 - Adam Skotarczak

View File

@ -1 +1 @@
0.6.0
0.7.0

View File

@ -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)

Binary file not shown.

Binary file not shown.

BIN
docs/build/farben_querschnitt.pdf vendored Normal file

Binary file not shown.

BIN
docs/build/ortkennzeichen.pdf vendored Normal file

Binary file not shown.

BIN
docs/build/ortskennzeichen_liste.pdf vendored Normal file

Binary file not shown.

View File

@ -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
View 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; }

View File

@ -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)

View File

@ -1053,7 +1053,7 @@
)
)
(property "Description" "Hydraulikzylinder doppelt wirkend"
(at 0.254 -8.636 0)
(at 0.762 -14.986 0)
(effects
(font
(size 1.27 1.27)
@ -1128,4 +1128,152 @@
)
(embedded_fonts no)
)
(symbol "Zylinder_Doppelt_(M)_Vorfüll"
(pin_names
(offset 0)
(hide yes)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "-M"
(at -4.826 12.192 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" "Hydraulikzylinder doppelt wirkend mit Vorfüllanschluss"
(at 0.762 -14.986 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "Zylinder_Doppelt_(M)_Vorfüll_0_1"
(polyline
(pts
(xy -0.508 9.906) (xy -2.54 9.906) (xy -2.54 -6.096) (xy 2.54 -6.096) (xy 2.54 9.906) (xy 0.508 9.906)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0 -6.096) (xy 0 -6.604)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.254 16.002) (xy 0.254 0) (xy 2.286 0) (xy 2.286 -0.762) (xy -2.286 -0.762) (xy -2.286 0)
(xy -0.254 0) (xy -0.254 16.002) (xy 0.254 16.002)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
)
(symbol "Zylinder_Doppelt_(M)_Vorfüll_1_1"
(pin passive line
(at -6.35 8.89 0)
(length 3.81)
(name "1"
(effects
(font
(size 0.762 0.762)
)
)
)
(number "1"
(effects
(font
(size 0.508 0.508)
)
)
)
)
(pin passive line
(at -6.35 -5.08 0)
(length 3.81)
(name "1"
(effects
(font
(size 0.762 0.762)
)
)
)
(number "1"
(effects
(font
(size 0.508 0.508)
)
)
)
)
(pin input line
(at 0 -7.62 90)
(length 1.016)
(name "Vorfüll"
(effects
(font
(size 0.762 0.762)
)
)
)
(number "2"
(effects
(font
(size 0.508 0.508)
)
)
)
)
)
(embedded_fonts no)
)
)

View File

@ -14,7 +14,7 @@
(in_bom yes)
(on_board yes)
(property "Reference" "-X"
(at -6.35 3.048 0)
(at -5.334 3.556 0)
(effects
(font
(size 1.016 1.016)
@ -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)