KiCad 9.0 Reference Manual

Dieses Dokument unterliegt dem Copyright © 2010-2024 der unten aufgeführten Mitwirkenden. Sie dürfen es unter den Bedingungen der GNU General Public License (http://www.gnu.org/licenses/gpl.html), Version 3 oder höher, oder der Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/), Version 3.0 oder höher, verbreiten und/oder verändern.

Alle in diesem Leitfaden genannten Marken sind Eigentum ihrer rechtmäßigen Inhaber.

Contributors

Jean-Pierre Charras, Fabrizio Tappero, Jon Evans, Graham Keeth.

Übersetzung

Lorenz Bewig <robotaxi@arcor.de>, 2024; Carsten Schönert <c.schoenert@t-online.de>, 2016

Feedback

Das KiCad-Projekt freut sich über Rückmeldungen, Fehlerberichte und Vorschläge in Bezug auf die Software oder ihre Dokumentation. Weitere Informationen zum Einreichen von Feedback oder zum Melden eines Problems finden Sie in den Anweisungen unter https://www.kicad.org/help/report-an-issue/

Software and Documentation Version

This user manual is based on KiCad 9.0.2. Functionality and appearance may be different in other versions of KiCad.

Documentation revision: 9.0.2.

1. Einleitung

KiCad ist ein Open-Source-Softwarepaket zur Erstellung von elektronischen Schaltplänen und Leiterplatten (PCBs). KiCad unterstützt einen integrierten Design-Workflow, bei dem ein Schaltplan und die dazugehörige Leiterplatte zusammen entworfen werden, sowie eigenständige Workflows für spezielle Anwendungen. KiCad enthält auch mehrere Dienstprogramme, die bei der Schaltungs- und PCB-Konstruktion helfen, einschließlich eines PCB-Rechners zur Bestimmung der elektrischen Eigenschaften von Schaltkreisstrukturen, eines Gerber-Viewers zur Prüfung von Fertigungsdateien und eines integrierten SPICE-Simulators zur Prüfung des Schaltungsverhaltens.

KiCad läuft auf allen gängigen Betriebssystemen und einer breiten Palette von Computerhardware. Es unterstützt Leiterplatten mit bis zu 32 Kupferebenen und eignet sich für die Erstellung von Designs aller Komplexitätsgrade. KiCad wird von einem freiwilligen Team von Software- und Elektroingenieuren auf der ganzen Welt entwickelt, die es sich zur Aufgabe gemacht haben, freie und quelloffene Elektronikdesignsoftware für professionelle Designer zu erstellen.

Die neueste Version dieser Dokumentation finden Sie unter https://docs.kicad.org.

1.1. Systemanforderungen

KiCad ist in der Lage, auf einer Vielzahl von Hardware und Betriebssystemen zu laufen, aber einige Aufgaben können auf weniger leistungsfähiger Hardware langsamer oder schwieriger sein. Für ein optimales Erlebnis wird eine eigene Grafikkarte und ein Bildschirm mit einer Auflösung von 1920x1080 oder höher empfohlen.

Die aktuellen Systemanforderungen finden Sie auf der KiCad-Website: https://kicad.org/help/system-requirements/

1.2. KiCad Dateien und Ordner

KiCad erstellt und verwendet Dateien mit den folgenden spezifischen Dateierweiterungen (und Ordnern) für die Schaltplan- und Leiterplattenbearbeitung.

Many of these files include important design information, especially the project file (.kicad_pro), the schematic file(s) (.kicad_sch), and the board file (.kicad_pcb). Other files may also be necessary. Such files should always be included when distributing the project. Some files are not necessary to distribute with the project, such as the project-local settings file (.kicad_prl) or the fp-info-cache file. Files that are unnecessary to distribute are noted in the table below.

1.2.1. Projektdateien

*.kicad_pro

Project file, containing settings that are shared between the schematic and PCB

*.pro

Legacy (KiCad 5.x and earlier) project file. Can be read and will be converted to a .kicad_pro file by the project manager.

1.2.2. Schaltplaneditor-Dateien

*.kicad_sch

Schematic files, containing all symbol and connection information.

*.kicad_sym

Schematic symbol library file, containing the symbol descriptions: graphic shape, pins, fields.

*.kicad_blocks

Schematic design block library folders. The folder itself is the library.

*.kicad_block

Schematic design block folder for defining a reusable schematic design. The folder is the design block, and contains a .kicad_sch file defining the design block’s schematic and a .json file defining the design block’s metadata.

*.wbk

Simulator workbook file containing SPICE simulation setup information.

*.sch

Legacy (KiCad 5.x and earlier) schematic file. Can be read and will be converted to a .kicad_sch file on write.

*.lib

Legacy (KiCad 5.x and earlier) schematic library file. Can be read but not written.

*.dcm

Legacy (KiCad 5.x and earlier) schematic library documentation. Can be read but not written.

*-cache.lib

Legacy (KiCad 5.x and earlier) schematic component library cache file. Required for proper loading of a legacy schematic (.sch) file.

sym-lib-table

Symbol library table: list of symbol libraries available in the schematic editor.

design-block-lib-table

Design block library table: list of design block libraries available in the schematic editor.

1.2.3. Leiterplatteneditor Dateien und Ordner

*.kicad_pcb

Board file containing all info but the page layout.

*.pretty

Footprint library folders. The folder itself is the library.

*.kicad_mod

Footprint files, containing one footprint description each.

*.kicad_dru

Design rules file, containing custom design rules for a certain .kicad_pcb file.

*.brd

Legacy (KiCad 4.x and earlier) board file. Can be read, but not written, by the current board editor.

*.mod

Legacy (KiCad 4.x and earlier) footprint library file. Can be read by the footprint or the board editor, but not written.

fp-lib-table

Footprint library table: list of footprint libraries available in the board editor.

fp-info-cache

Cache to speed up loading of footprint libraries. Does not need to be distributed with the project or put under version control.

1.2.4. Gemeinsame Dateien

*.kicad_prl

Local settings for the current project; helps KiCad remember the last used settings such as layer visibility or selection filter. Does not need to be distributed with the project or put under version control.

*.kicad_wks

Page layout (drawing border and title block) description file.

*.kicad_jobset

Jobset definition file containing output jobsets.

*.net

Netlist file created from the schematic, and read by the board editor. Note that the recommended workflow for transferring information from the schematic to the board does not require the use of netlist files.

*.cmp

Association between components used in the schematic and their footprints. It can be created by the Board Editor and imported by the Schematic Editor. Its purpose is to import changes from the board to the schematic, for users who change footprints in the Board Editor (for instance using Exchange Footprints command) and want to import these changes back to the schematic. Note that the recommended workflow for transferring information from the board to the schematic does not require the use of .cmp files.

1.2.5. Fertigungs- und Dokumentationsdateien

*.gbr

Gerber-Dateien, zur Fertigung.

*.drl

Bohrdateien (Excellon-Format), zur Fertigung.

*.pos

Positionsdateien (ASCII-Format), für automatische Bestückungsmaschinen.

*.rpt

Berichtsdateien (ASCII-Format), zur Dokumentation.

*.ps

Plotdateien (Postscript), zur Dokumentation.

*.pdf

Plotdateien (PDF-Format), zur Dokumentation.

*.svg

Plotdateien (SVG-Format), zur Dokumentation.

*.dxf

Plotdateien (DXF-Format), zur Dokumentation.

*.plt

Plotdateien (HPGL-Format), zur Dokumentation.

1.2.6. Speichern und Senden von KiCad-Dateien

KiCad-Schaltplan- und Plattendateien enthalten alle im Entwurf verwendeten Schaltplansymbole und Footprints, so dass Sie diese Dateien problemlos selbst sichern oder versenden können. Einige wichtige Entwurfsinformationen sind in der Projektdatei (.kicad_pro) gespeichert. Wenn Sie also einen vollständigen Entwurf senden, sollten Sie diese Datei unbedingt mitsenden.

Some files, such as the project-local settings file (.kicad_prl) and the fp-info-cache file, are not necessary to send with your project. If you use a version control system such as Git to keep track of your KiCad projects, you can add these files to the list of ignored files so that they are not tracked.

2. Installieren und Aktualisieren von KiCad

2.1. Einstellungen importieren

Jede Hauptversion von KiCad hat ihre eigene Konfiguration, so dass Sie mehrere KiCad-Versionen auf demselben Computer ausführen können, ohne dass sich die Konfigurationen gegenseitig stören. Wenn Sie eine neue Version von KiCad zum ersten Mal ausführen, werden Sie gefragt, wie Sie die Einstellungen initialisieren möchten:

configure settings

Wenn eine frühere Version von KiCad erkannt wird, haben Sie die Möglichkeit, die Einstellungen aus dieser Version zu importieren. Der Speicherort der vorherigen Konfigurationsdateien wird automatisch erkannt, aber Sie können bei Bedarf einen anderen Speicherort wählen.

Bitte beachten Sie, dass die Schaltplansymbol- und Footprint-Bibliothekstabellen aus der vorherigen KiCad-Version nicht importiert werden.

Sie können auch mit den Standardeinstellungen beginnen, wenn Sie keine Einstellungen aus einer früheren Version importieren möchten.

KiCad stores the settings files in a folder inside your user directory. Each KiCad version will use a different versioned subfolder. For KiCad 9, those folders are:

Windows

%APPDATA%\kicad\9.0

Linux

~/.config/kicad/9.0

macOS

/Users/<username>/Library/Preferences/kicad/9.0

2.2. Migration von Dateien aus früheren Versionen

Moderne Versionen von KiCad können Dateien öffnen, die in früheren Versionen erstellt wurden. Sie können aber nur Dateien in den neuesten Formaten schreiben. Das bedeutet, dass es grundsätzlich keine weiteren Schritte gibt, um Dateien aus einer früheren Version zu migrieren, außer die Dateien zu öffnen. In einigen Fällen hat sich die Dateierweiterung für eine Datei von einer KiCad-Version zur nächsten geändert. Nach dem Öffnen dieser Dateien werden sie in dem neuen Format mit der neuen Dateierweiterung gespeichert. Die alten Dateien werden nicht automatisch gelöscht.

In der Dokumentation des Schaltplaneditors werden einige besondere Aspekte beim Öffnen von Legacy-Schaltplänen beschrieben.

Im Allgemeinen können Dateien, die mit einer Version von KiCad erstellt oder geändert wurden, nicht mit älteren Versionen von KiCad geöffnet werden. Aus diesem Grund ist es wichtig, beim Testen einer neuen KiCad-Version Sicherungskopien Ihrer Projekte aufzubewahren, bis Sie sicher sind, dass Sie die ältere KiCad-Version nicht mehr verwenden müssen.

Note
Konfigurationen von Tastaturkürzeln werden zur Zeit nicht aus früheren Versionen importiert. Sie können diese Konfigurationen manuell importieren, indem Sie die verschiedenen *.hotkeys Dateien in das Konfigurationsverzeichnis der neuen Version kopieren. Dabei ist zu beachten, dass KiCad nicht automatisch Konflikte erkennt, z. B. wenn eine Taste mehreren Aktionen zugewiesen ist.

3. Benutzung der KiCad-Projektverwaltung

Die KiCad-Projektverwaltung ist ein Werkzeug zum Erstellen und Öffnen von KiCad-Projekten und zum Starten der übrigen KiCad-Werkzeuge (Schaltplan- und Platineneditoren, Gerber-Viewer und Hilfswerkzeuge).

main window

Das Fenster der KiCad-Projektverwaltung besteht aus einer Baumansicht auf der linken Seite, in der die Dateien angezeigt werden, die mit dem geöffneten Projekt verbunden sind, und einem Startmenü auf der rechten Seite, das Verknüpfungen zu den verschiedenen Editoren und Werkzeugen enthält.

Die Symbolleiste am linken Rand des Fensters bietet Kurzbefehle für die gängigen Projektfunktionen:

new project 24

Ein neues Projekt erstellen.

open project 24

Ein bestehendes Projekt öffnen.

zip 24

Zip-Archiv des gesamten Projekts erstellen. Dies beinhaltet Schaltplan Dateien, Bibliotheken, PCB, etc.

unzip 24

Zip-Archiv eines Projektes in ein Verzeichnis entpacken. Dateien im Zielverzeichnis werden überschrieben.

refresh 24

Baumansicht aktualisieren, um Änderungen im Dateisystem zu erkennen.

directory browser 24

Das Arbeitsverzeichnis des Projekts im Dateiexplorer öffnen.

The tree view shows a list of files inside the project folder. Double-clicking on a file in the tree view will open it in the associated editor. Right-clicking on a file will open a context menu with some file manipulation commands. If the project is part of a Git repository, the tree shows icons indicating the version control status of each file and lists the active branch next to the project name.

project tree
Note
Nur Dateien, die KiCad lesen kann, werden in der Projektstrukturansicht angezeigt.

KiCad-Projekte enthalten mindestens eine Projektdatei, einen Schaltplan und einen Platinenentwurf. Schaltpläne können aus mehreren Blättern bestehen, jedes in seiner eigenen Datei, aber ein Projekt kann nur eine einzige Platine enthalten. KiCad erwartet, dass die Projektdatei, die Schaltplan-Stammblattdatei und die Leiterplattendatei denselben Namen haben.

3.1. Standalone-Modus

Sie können die KiCad-Editor-Tools auch im Standalone-Modus ausführen, indem Sie sie direkt aus dem Anwendungsprogramm Ihres Betriebssystems und nicht aus dem Projektmanager starten. Es wird gewöhnlich nicht empfohlen, die Werkzeuge im Standalone-Modus auszuführen, außer in einigen speziellen Situationen, in denen dies notwendig ist, z. B. beim Importieren von Projekten aus anderen EDA-Werkzeugen. Bei der Ausführung im Standalone-Modus sind einige Projektfunktionen nicht verfügbar, darunter:

  • Cross-Probing zwischen dem Schaltplan-Editor und dem Platinen-Editor

  • Entwurfssynchronisierung zwischen dem Schaltplan und der Leiterplatte

3.2. Erstellen eines neuen Projektes

Die meisten KiCad- Entwürfe beginnen mit der Erstellung eines Projekts. Es gibt zwei Möglichkeiten, ein Projekt über die KiCad-Projektverwaltung zu erstellen: Sie können ein leeres Projekt erstellen oder ein Projekt auf der Grundlage einer vorhandenen Vorlage erstellen. In diesem Abschnitt wird die Erstellung eines neuen leeren Projekts behandelt. Das Erstellen von Projekten aus Vorlagen wird im Abschnitt Projektvorlagen behandelt.

Um ein neues Projekt zu erstellen, verwenden Sie den Befehl Neues Projekt…​ im Menü Datei, klicken Sie auf die Schaltfläche Neues Projekt in der Symbolleiste am linken Fensterrand oder verwenden Sie das Tastaturkürzel (standardmäßig Strg+N).

Sie werden aufgefordert, einen Namen für Ihr Projekt zu vergeben. Standardmäßig wird für Ihr Projekt ein Verzeichnis mit demselben Namen erstellt. Wenn Sie z. B. den Namen Mein Projekt eingeben, erstellt KiCad das Verzeichnis Mein Projekt und darin die Projektdatei Mein Projekt/Mein Projekt.kicad_pro.

Wenn Sie bereits ein Verzeichnis haben, in dem Sie Ihre Projektdateien speichern, können Sie das Kontrollkästchen Ein neues Verzeichnis für das Projekt erstellen im Dialogfeld Neues Projekt erstellen deaktivieren.

Note
Es wird dringend empfohlen, jedes KiCad-Projekt in seinem eigenen Verzeichnis zu speichern.

Sobald Sie den Namen Ihres Projekts ausgewählt haben, erstellt KiCad die folgenden Dateien im Projektverzeichnis:

beispiel.kicad_pro

KiCad-Projektdatei.

beispiel.kicad_sch

Hauptschaltplandatei.

beispiel.kicad_pcb

Datei für gedruckte Leiterplatten.

3.3. Importieren eines Projekts aus einem anderen EDA- Programm

KiCad kann Dateien importieren, die von einigen anderen Softwarepaketen erstellt wurden. Einige Softwareformate können als komplette Projekte importiert werden, andere können im Moment nur als eigenständige Schaltpläne oder Platinen importiert werden und müssen manuell zu einem KiCad-Projekt zusammengefügt werden. Derzeit werden die folgenden Projekttypen unterstützt:

*.sch, *.brd

Eagle 6.x oder neuer (XML-Format)

*.csa, *.cpa

CADSTAR-Archivformat

*.zip

EasyEDA (JLCEDA) Standard Backup

*.epro, *.zip

EasyEDA (JLCEDA) Pro Project

Um ein Projekt aus einem dieser Tools zu importieren, wählen Sie die entsprechende Option aus dem Untermenü Nicht-KiCad-Projekt importieren…​ des Menüs Datei.

Sie werden aufgefordert, im Datei-Import-Dialog entweder eine Schaltplan- oder eine Platinen-Datei auszuwählen. Die importierten Schaltplan- und Platinen-Dateien sollten denselben Basis-Dateinamen haben (z. B. project.sch und project.brd). Sobald die gewünschten Dateien ausgewählt sind, werden Sie aufgefordert, ein Verzeichnis zum Speichern des resultierenden KiCad-Projekts auszuwählen.

Derzeit können die folgenden Dokumenttypen eigenständig importiert werden. Um diese Dokumente zu importieren, starten Sie den KiCad Schaltplan-Editor oder PCB-Editor eigenständig (öffnen Sie nicht zuerst die KiCad-Projektverwaltung) und wählen Sie Datei > Importieren > Nicht-KiCad-Schaltplan oder Datei > Importieren > Nicht-KiCad-Platinendatei. Wenn Sie Altium-Projekte importieren, empfehlen wir, zuerst die Platine zu importieren, das resultierende Projekt zu speichern und dann jedes Schaltplanblatt in das Projekt zu kopieren, nachdem es in einem eigenständigen Schaltplaneditor-Fenster importiert wurde.

*.SchDoc

Altium Designer, Circuit Studio, Circuit Maker Schaltplan-Dokumente

*.PcbDoc

Altium Designer PCB

*.CMPcbDoc

Altium Circuit Maker PCB

*.CSPcbDoc

Altium Circuit Studio PCB

*.pcb

P-Cad 200x ASCII PCB

*.txt, *.fab

Fabmaster PCB

Note
KiCad unterstützt keine Schaltpläne mit mehreren Blättern auf oberster Ebene. Beim Importieren von Entwürfen aus anderen Programmen, die diese Funktion unterstützen, muss jedes Schaltplanblatt importiert werden, dann müssen die importierten Blätter als hierarchische Blätter in einem neuen KiCad-Projekt angeordnet werden.

3.4. Speichern und Laden von Projektarchiven

Sie können die Dateien Ihres Projekts mit dem Archivierungstool (DateiProjektdateien archivieren…​) in einem Zip-Archiv speichern.

Sie können ein Projekt auch aus einem Archiv entpacken (DateiProjektdateien aus Archiv entpacken…​). Wenn Sie ein Projekt in das aktuell geladene Projektverzeichnis entpacken, wird das Projekt automatisch neu geladen, um alle Änderungen in der archivierten Version des Projekts zu berücksichtigen.

Das Archivierungswerkzeug speichert die folgenden Dateien aus Ihrem Projektordner in das Archiv:

*.kicad_prl, *.kicad_pro, *.kicad_sch, *.kicad_sym, *.kicad_pcb, *.kicad_mod, *.kicad_dru, *.kicad_wks, *.kicad_jobset, *.wbk, *.json, fp-lib-table, sym-lib-table, design-block-lib-table

KiCad design files

*.pro, *.sch, *.lib, *.dcm, *.cmp, *.brd, *.mod

Legacy KiCad design files

*.stp, *.step

3D models

*.g?, *.g??, *.gm??, *.gbrjob

Gerber files

*.pos, *.drl, *.nc, *.xnc, *.d356, *.rpt

Manufacturing files

*.net

Netlists

*.py

Python scripts

*.pdf, *.txt

Documentation files

*.cir, *.sub, *.model

SPICE models

*.ibs, *.pkg

IBIS models

3.5. Git integration

The KiCad Project Manager integrates with the Git version control tool for tracking changes in your projects. It can work with an existing local Git repository, clone a project from a remote repository, or create a new repository in an existing project. You can use the tool to commit changes from your project, push and pull from a remote repository, and switch branches.

git status

If you open a project that is already under version control with Git, i.e. it is part of an existing Git repository, you can use KiCad’s version control features to track changes in the project without any additional configuration. The active branch is displayed next to the project name, and the version control status of each file in your project is shown graphically in the project files tree. For example, the git good check 16 icon indicates a file is unchanged, git modified 16 indicates a file has uncommitted changes, and git add 16 indicates a file is not tracked. No icons are shown if the project is not part of a Git repository.

Note
You can disable KiCad’s Git integration features in the Version Control page of the Preferences dialog. The preferences also let you configure the remote update interval and the default commit author information.

3.5.1. Adding version control to an existing project

If an existing project is not already under version control, you can initialize a new Git repository in the project by right clicking on one of the files in the project files tree and clicking Version ControlAdd Project to Version Control…​. You must configure a remote when initializing a repository in this way. Configuring the repository requires the following information:

  • Location: The URL or file path to the remote. HTTPS, SSH, and local (file) connections are supported. The format of the URL is used to automatically determine the type of connection and set the authentication options accordingly.

  • SSH private key: The SSH private keyfile to use for authentication (SSH connections only).

  • User name: The user name to use for authentication. For SSH connections, the user name is often git.

  • Password: The password to use for authentication (HTTPS connections only).

  • SSH key password: The passphrase for your SSH key, if you have configured one (SSH connections only).

You can check the connection and authentication by clicking the Test Connection button.

git add project to repository

3.5.2. Cloning an existing repository

To clone an existing repository and open the cloned project, use FileClone Project from Repository…​. You can clone a remote repository using SSH or HTTPS, or clone a local repository. The configuration settings for cloning are the same as the settings for configuring a new repository and remote for an existing project.

3.5.3. Tracking project changes with Git

When you have made changes that you want to commit, you can commit either the entire project (right click → Version ControlCommit Project…​) or a specific file (right click the file → Version ControlCommit File…​). Both actions open the Commit Changes dialog, but the Commit Project action shows all changed files in the repository, while the Commit File action shows only the file that was right clicked. The Commit Changes dialog lets you select the changed files you want to include in the commit, provide a commit message and author, and commit the changes.

git commit

To push changes to the remote, right click in the project files tree and select Version ControlPush. To pull from the remote, right click and select Version ControlPull. You can switch branches by selecting the desired branch from the Version ControlSwitch to Branch menu.

Finally, you can remove version control entirely, deleting all tracked history from the local repository, by right clicking and selecting Version ControlRemove Version Control.

4. KiCad Konfiguration

Die KiCad-Einstellungen können jederzeit über das Menü Einstellungen oder über die Tastenkombination (standardmäßig Strg+,) aufgerufen werden. Das Einstellungsfenster wird von den laufenden KiCad-Werkzeugen gemeinsam genutzt. Einige Einstellungen gelten für alle Werkzeuge, andere sind spezifisch für ein bestimmtes Werkzeug (z. B. den Schaltplan- oder Platineneditor).

4.1. Allgemeine Einstellungen

preferences common

Accelerated graphics antialising: KiCad can use different methods to prevent aliasing (jagged lines) when rendering using a graphics card. Different methods may look better on different hardware, so you may want to experiment to find the one that looks best to you.

Fallback graphics antialiasing: KiCad can also apply antialiasing when using the fallback graphics mode. Enabling this feature may result in poor performance on some hardware.

Text editor: Choose a text editor to use when opening text files from the project tree view.

PDF viewer: Choose a program to use when opening PDF files.

Show icons in menus: Enables icons in drop-down menus throughout the KiCad user interface.

Note
Auf einigen Betriebssystemen werden die Symbole in den Menüs nicht angezeigt.

Show scrollbars in editors: When enabled, scrollbars are displayed next to the editing canvases in each tool. When disabled, scrollbars are not shown.

Focus follows mouse between schematic and PCB editors: When enabled, the window under the mouse cursor will automatically become focused.

Icon scale: Sets the size of the icons used in menus and buttons throughout KiCad. Choose Automatic to pick an appropriate icon scale automatically based on your operating system settings.

Icon theme: Sets whether to use the icon theme designed for light window backgrounds or dark window backgrounds. The default setting of Automatic will choose the theme based on the lightness of the operating system window theme.

High-contrast mode dimming factor: Sets how much non-focused items are dimmed in high-contrast display mode.

Warp mouse to origin of moved object: When enabled, the mouse cursor will be repositioned (warped) to the origin of an object when you start a move command on that object.

First hotkey selects tool: When disabled, pressing the hotkey for a command such as Add Wire will immediately start the command at the current cursor location. When enabled, pressing the hotkey the first time will just select the Add Wire tool but will not immediately begin a wire.

Remember open files for next project launch: When enabled, KiCad will automatically re-open any files that were previously open when a project is re-opened.

Auto save: When editing schematics and board files, KiCad can automatically save your work periodically. Set to 0 to disable this feature.

File history size: Configure the number of entries in the list of recently-opened files

3D cache file duration: KiCad creates a cache of 3D models in order to speed up the 3D viewer. You can configure how long to keep this cache before deleting old files.

Automatically backup projects: When enabled, KiCad projects will be archived to ZIP files automatically according to the settings below. The archives will be stored in a subfolder of the project folder. Backups are created when saving files in the project.

Create backups when auto save occurs: When enabled, a backup will be created every time an automatic file save occurs (if the backup is permitted by the settings below). This setting has no effect if the auto save interval is set to 0 (disabled).

Maximum backups to keep: When creating a new backup, the oldest backup file will be deleted to keep the total number of backup files below this limit.

Maximum backups per day: When creating a new backup, the oldest backup file created on the current day will be deleted to stay below this limit.

Minimum time between backups: If backup is triggered (for example, by saving a board file), the backup will not be created if an existing backup file is newer than this limit.

Maximum total backup size: When creating a new backup file, the oldest backup files will be deleted to keep the total size of the backup files directory below this limit.

4.2. Maus und Touchpad Einstellungen

preferences mouse and touchpad

Center and warp cursor on zoom: When enabled, zooming using the hotkeys or mouse wheel will cause the view to be centered on the cursor location.

Use zoom acceleration: When enabled, scrolling the mouse wheel or touchpad faster will cause the zoom to change faster.

Zoom speed: Controls how much the zoom changes for a given amount of scrolling the mouse wheel or touchpad. Use Automatic to set a default value depending on your operating system.

Automatically pan while moving object: When enabled, the view can be panned while moving an object by moving close to the edge of the canvas.

Auto pan speed: Controls how fast the canvas pans while moving an object.

Mouse buttons: You can set the behavior of dragging the middle and right mouse buttons to zoom the view, pan the view, or have no effect. You can also set the behavior of dragging the left mouse button depending on whether or not any objects are already selected in the editing canvas.

Note
Die linke Maustaste wird immer zum Auswählen und Verändern von Objekten verwendet.

Mouse wheel and touchpad scrolling: You can set the behavior of scrolling the mouse wheel or vertical motion of the touchpad while pressing certain modifier keys.

Pan left/right with horizontal movement: When enabled, you can pan the view using the touchpad or horizontal scroll wheel (if present on your mouse).

4.3. Tastaturbefehle

preferences hotkeys

In diesem Dialogfeld können Sie die zur Steuerung von KiCad verwendeten Tastaturbefehle anpassen. Die Tastaturbefehle im Abschnitt Allgemein werden von allen KiCad-Programmen gemeinsam genutzt. Tastaturbefehle für die einzelnen KiCad-Programme werden angezeigt, wenn das jeweilige Programm ausgeführt wird. Sie können denselben Tastaturbefehl einer anderen Aktion in verschiedenen KiCad-Programmen zuweisen (z.B. dem Schaltplaneditor und dem Platineneditor), aber Sie können einen Tastaturbefehl nicht mehr als einer Aktion im selben Programm zuweisen.

Es gibt viele verfügbare Befehle, so dass nicht allen standardmäßig ein Tastaturbefehl zugewiesen ist. Sie können jedem Befehl einen Tastaturbefehl hinzufügen, indem Sie in der Liste auf den Befehl doppelklicken. Wenn Sie einen Tastaturbefehl wählen, der bereits einem anderen Befehl zugewiesen ist, können Sie diesen Tastaturbefehl für den gewählten Befehl verwenden, wodurch die Zuweisung des Tastaturbefehls für den ursprünglichen Befehl aufgehoben wird.

Änderungen, die Sie an Tastaturbefehlen vorgenommen haben, werden mit einem *-Zeichen am Ende des Befehlsnamens angezeigt. Sie können Änderungen an einem bestimmten Befehl rückgängig machen, indem Sie mit der rechten Maustaste auf diesen Befehl klicken und Änderungen rückgängig machen wählen, oder Sie können alle Änderungen mit der Schaltfläche unterhalb der Befehlsliste rückgängig machen.

Importing hotkeys

Die Einstellungen für Tastaturbefehle werden in .hotkeys-Dateien im KiCad-Einstellungsverzeichnis gespeichert (siehe den Abschnitt Einstellungen für Informationen darüber, wo sich das Einstellungsverzeichnis auf Ihrem Betriebssystem befindet). Wenn Sie KiCad Tastaturbefehle auf einem Computer nach Ihren Wünschen konfiguriert haben, können Sie diese Konfiguration auf einen anderen Computer übertragen, indem Sie die entsprechende(n) .hotkeys-Datei(en) importieren.

4.4. Pfadeinstellungen

In KiCad können manche Pfade durch Umgebungsvariablen definiert werden. Einige der Umgebungsvariablen werden intern durch KiCad definiert und können verwendet werden, um Pfade für Bibliotheken, 3D-Formen usw. zu definieren.

Dies ist nützlich, wenn die absoluten Pfade nicht bekannt sind oder sich ändern können (z. B. wenn Sie ein Projekt auf einen anderen Computer übertragen), und auch, wenn ein Basispfad von vielen ähnlichen Elementen gemeinsam genutzt wird. Beachten Sie die folgenden Objekte, die an unterschiedlichen Orten installiert sein können:

  • Schaltplan Symbolbibliotheken

  • Footprint Bibliotheken

  • 3D-Modelldateien, die in Footprint-Definitionen verwendet werden

For instance, the path to the connect.pretty footprint library, when using the KICAD9_FOOTPRINT_DIR path variable, would be defined as ${KICAD9_FOOTPRINT_DIR}/connect.pretty.

Das Menü EinstellungenPfade konfigurieren…​ ermöglicht es Ihnen, Pfade für einige eingebaute KiCad-Pfadvariablen zu definieren und Ihre eigenen Pfadvariablen hinzuzufügen, um bei Bedarf persönliche Pfade zu definieren.

Note
KiCad will automatically resolve versioned path variables from older versions of KiCad to the value of the corresponding variable from the current KiCad version, as long as the old variable is not explicitly defined itself. For example, ${KICAD8_FOOTPRINT_DIR} will automatically resolve to the value of ${KICAD9_FOOTPRINT_DIR} if there is no KICAD8_FOOTPRINT_DIR variable defined.

4.4.1. KiCad Umgebungsvariablen

KICAD9_3DMODEL_DIR

Base path of KiCad’s standard 3D footprint model library files.

KICAD9_3RD_PARTY

Location for plugins, libraries, and color themes installed by the Plugin and Content Manager.

KICAD9_FOOTPRINT_DIR

Base path of KiCad’s standard footprint library files.

KICAD9_SYMBOL_DIR

Base path of KiCad’s standard symbol library files.

KICAD9_TEMPLATE_DIR

Location of KiCad’s standard project template library files.

KICAD_USER_TEMPLATE_DIR

Location of personal project templates.

SPICE_LIB_DIR

Location of personal simulation model libraries. This variable is not defined by default.

KIPRJMOD

Absolute path to the current project directory. This variable is set automatically and cannot be redefined.

configure path dlg

Pfade, die im Pfade konfigurieren-Dialog festgelegt werden, sind KiCad-intern und nicht als Umgebungsvariablen außerhalb von KiCad sichtbar. Sie werden in den KiCad Benutzer-Konfigurationsdateien gespeichert.

Pfade können auch als Systemumgebungsvariablen außerhalb von KiCad festgelegt werden, die alle Einstellungen in der Benutzerkonfiguration außer Kraft setzen.

Note
Sie können über den Dialogfeld 'Pfade konfigurieren' keine Umgebungsvariable überschreiben, die außerhalb von KiCad festgelegt wurde. Jede Variable, die die extern gesetzt wurde, wird im Dialogfeld als schreibgeschützt angezeigt.

Beachten Sie auch, dass die Pfadvariable KIPRJMOD immer intern von KiCad definiert wird und sich auf den absoluten Pfad des aktuellen Projekts ausdehnt. Zum Beispiel ist ${KIPRJMOD}/connect.pretty immer der Ordner connect.pretty (die Footprint-Bibliothek) innerhalb des aktuellen Projektordners. Die Variable KIPRJMOD kann nicht im Dialogfeld 'Pfade konfigurieren' geändert oder durch eine externe Umgebungsvariable überschrieben werden.

4.4.2. Erweiterte Umgebungsvariablen

Einige erweiterte Umgebungsvariablen können eingestellt werden, um festzulegen, wo KiCad bestimmte Dateien erwartet. Standardmäßig werden diese Orte auf der Grundlage Ihrer Plattform festgelegt, aber sie können durch Systemumgebungsvariablen überschrieben werden. Diese Variablen werden im Dialogfeld 'Pfade konfigurieren' nicht angezeigt und können nicht in Pfadsubstitutionen verwendet werden.

Das Ändern dieser Variablen führt nicht dazu, dass KiCad Dateien vom Standardspeicherort an den neuen Speicherort verschiebt. Wenn Sie also diese Variablen ändern, müssen Sie alle gewünschten Einstellungen oder Dateien manuell kopieren.

KICAD_CONFIG_HOME

Basispfad der KiCad-Konfigurationsdateien. Innerhalb dieses Verzeichnisses werden für jede KiCad-Unterversion Unterverzeichnisse angelegt.

KICAD_DOCUMENTS_HOME

Basispfad der vom Benutzer modifizierbaren KiCad-Dokumente, wie Projekte, Vorlagen, Python-Skripte, Bibliotheken, usw. Innerhalb dieses Verzeichnisses werden für jede KiCad-Unterversion Unterverzeichnisse erstellt. Dieses Verzeichnis wird als Speicherort für Benutzerdaten vorgeschlagen, muss aber nicht verwendet werden.

KICAD_STOCK_DATA_HOME

Basispfad der KiCad-Bestandsdaten, einschließlich Standardbibliotheken. Die Daten in diesem Verzeichnis werden vom KiCad-Installationsprogramm oder dem Systempaketmanager verwaltet und sind nicht für Daten vorgesehen, die vom Anwender geschrieben werden können.

Warning
Wenn Sie die Konfiguration der Pfade ändern, beenden Sie bitte KiCad und starten Sie es neu, um Probleme bei der Pfadbehandlung zu vermeiden.

4.5. Konfiguration der Bibliotheken

Über das Menü EinstellungenSymbolbibliotheken verwalten…​ können Sie die Liste der Symbolbibliotheken verwalten (Symbolbibliotheken verwalten).

Verwenden Sie ebenfalls das Menü EinstellungenFootprintbibliotheken verwalten…​, um die Liste der Footprintbibliotheken zu verwalten (Footprintbibliotheken verwalten).

Für jede Art von Bibliothek (Symbol und Footprint) gibt es 2 Bibliothekstabellen: eine globale und eine projektspezifische. Die globale Bibliothekstabelle befindet sich im Benutzer-Konfigurationsverzeichnis und enthält eine Liste der für alle Projekte verfügbaren Bibliotheken. Die projektspezifische Bibliothekstabelle ist optional und enthält eine Liste der projektspezifischen Bibliotheken. Sie befindet sich im Projektverzeichnis.

5. Jobsets

KiCad lets you configure a list of outputs that are all generated with a single click. The list of output jobs and the destinations where they will be saved is called a jobset. For example, a jobset might contain jobs to generate Gerber files, assembly data, a bill of materials, PDF plots of the schematic and PCB, while also running ERC and DRC checks, with all of the outputs saved to a compressed archive. The full list of available jobs is given below.

Each job in a jobset defines a single type of generated output, such as a bill of materials or a set of Gerbers. A job can be configured in the same way as if the output was manually generated from the schematic or board editor. The configuration for each job is stored in the jobset and remembered when you load the jobset later. Jobs are configured individually, so if you include the same type of job multiple times in a single jobset, each job will have its own independent configuration. For example, this lets you generate PDF outputs in color as well as black and white.

In addition to the jobs, jobsets also contain destinations, which define a list of jobs to run and how to store their outputs. A jobset destination can simply store the chosen jobs' output files in a specified location, or it can add the output files to a compressed archive. Each jobset destination can select a different subset of jobs from the full list of jobs in the jobset. You can run each jobset destination individually or run all jobset destinations at once. As an example, you could set up one jobset destination that generates PDFs of the board and schematic and copies them to an external location, while another destination generates the fabrication files and compresses them in a zip archive to send to the board manufacturer.

Projects can have multiple jobsets, with each jobset defining a different list of jobs and output configurations. Each jobset is stored in a .kicad_jobset file, which can be specific to a single project, copied between projects, or even stored in a central location and shared between projects.

To use a jobset, first create a new jobset file in the KiCad project manager (FileNew Jobset File…​) and choose a name and location for it. Alternatively, you can open an existing jobset file with FileOpen Jobset File…​. Jobset files that are stored in the project directory are considered part of the project and are displayed in the project file tree. You can open a jobset file in the project file tree by double clicking on it.

jobset overview

Once you create or open a jobset, it is displayed in a new tab in the project manager. The list of jobs is shown in the middle and the list of jobset destinations is shown on the right. New jobsets will not contain any jobs, but a destination is automatically created to save outputs to a folder. When you make changes to a jobset, you can save the changes by clicking the Save Jobset button.

5.1. Defining jobs

To add a new job, click the small plus 16 button under the Jobs list. In the Add New Job dialog that appears, select the desired type of job. You can filter which types of jobs are shown in the list by typing in the Filter textbox at the bottom.

When you select a job and press OK, the settings dialog for that type of output will appear. Each job settings dialog provides the same options you would have if you manually generated that type of output from the schematic or board editor.

Note
Output filenames and paths specified in job settings are relative to the jobset destination folder or archive root. You can use certain text variables, like ${PROJECTNAME}, ${CURRENT_DATE}, and project text variables.
jobset job settings export sch pdf

When you accept the job settings dialog, the job is added to the list of jobs, where you can optionally change the new job’s description from its default. To change a job’s description or settings later, right click the job in the list and select Edit Job Description or Edit Job Settings…​. Double clicking on a job also edits its settings. To remove a job, select the job and click the small trash 16 button. To reorder the list, select a job and move it up or down using the small up 16 or small down 16 buttons.

5.2. Defining jobset destinations

You cannot generate any outputs from a jobset until you add a jobset destination. One destination is created automatically when a jobset is created, but you can add as many destinations as you need.

To add a jobset destination, click the small plus 16 button under the Destinations list. When the Add New Destination dialog appears, select a type of destination:

  • Archive saves the outputs generated by the jobs in a compressed zip archive.

  • Folder saves the outputs generated by the jobs uncompressed in a folder.

Once you have selected a type of output, the Destination options dialog appears.

jobset archive destination options

Here you can select which jobs will be run as part of this jobset destination, as well as the folder or archive name that will be used to store them. By default all jobs are enabled. You can also set a description for the destination to be displayed in the Destinations list. The output path controls where the files generated by the jobs will be saved. The path here can be absolute or relative to the project directory, and it can use path variables or certain text variables (${PROJECTNAME}, ${CURRENT_DATE}, and project text variables). Filenames defined in job configurations are relative to the jobset destination directory or archive root.

When you click OK in this dialog, the new jobset destination is added to the Destinations list. You can modify an existing jobset destination by clicking its config 16 button, or remove it by clicking its small trash 16 button.

After configuring your jobs and destinations, you can generate an individual set of outputs by clicking the Generate button for the desired destination. You can run all destinations at once by clicking the Generate All Destinations button.

If a jobset destination runs and generates its outputs successfully, a blue check is shown that indicates the last run was successful. If a jobset destination fails to complete successfully, a red exclamation point is shown to indicate the run was not successful. Clicking on the success/failure indicator will display the Jobset Run Log dialog, which displays the status of each job in the jobset destination. Clicking on a specific job will display the logged output from that job, if there is any.

jobset run log

5.3. Available job types

The following types of jobs are available:

Job

Description

PCB: Export 3D Model

Exports a 3D model of the board. The model format can be STEP, GLB (binary glTF), XAO, BREP (OCCT), PLY, or STL.

PCB: Export Drill Data

Exports a drill file from the board.

PCB: Export DXF

Exports the board design to a DXF file.

PCB: Export Gerbers

Exports the board design to Gerber files, with one file per selected layer.

PCB: Export IPC-2581

Exports the board design in IPC-2581 format.

PCB: Export ODB++

Exports the board design in ODB++ format.

PCB: Export PDF

Exports the board design to PDF files, with one file per selected board layer. You can also generate a single PDF with multiple layers depending on the plot configuration.

PCB: Export Position Data

Exports a position (component placement) file from the board.

PCB: Export SVG

Exports the board design to a SVG file.

PCB: Perform DRC

Performs a Design Rule Check on the board and generates a report. If DRC violations are found, this job can optionally report a job failure.

PCB: Render

Generates a raytraced rendering of the 3D model of the board as a PNG or JPG file.

Schematic: Export DXF

Exports the schematic to a DXF file.

Schematic: Export HPGL

Exports the schematic to a HPGL file.

Schematic: Export Netlist

Exports a netlist from the schematic, with various formats available.

Schematic: Export PDF

Exports the schematic to a PDF file.

Schematic: Export Postscript

Exports the schematic to a PostScript file.

Schematic: Export SVG

Exports the schematic to a SVG file.

Schematic: Generate Bill of Materials

Exports a bill of materials from the schematic.

Schematic: Perform ERC

Performs an Electrical Rule Check on the schematic and generates a report. If ERC violations are found, this job can optionally report a job failure.

Special: Copy Files

Copies the specified file to the specified location. A failure to copy the files can optionally cause the output job to fail. You can control whether files in the output location should be overwritten or not.

Special: Execute Command

Executes an arbitrary command. Output from the command can optionally be logged to a file. You can either ignore non-zero output codes or cause them to fail the output job.

6. Projektvorlagen

Die Verwendung einer Projektvorlage erleichtert das Einrichten eines neuen Projekts mit vordefinierten Einstellungen. Vorlagen können vordefinierte Platinenumrisse, Steckerpositionen, Schaltplanelemente, Designregeln usw. enthalten. Es können sogar komplette Schaltpläne und/oder Leiterplatten enthalten sein, die als Startdateien für das neue Projekt dienen.

6.1. Verwendung von Vorlagen

Über das Menü DateiNeues Projekt aus einer Vorlage…​ wird das Dialogfeld Projektvorlagenauswahl geöffnet:

Ein einzelner Klick auf das Symbol einer Vorlage zeigt die Vorlageninformationen an, und ein weiterer Klick auf die Schaltfläche OK erstellt das neue Projekt. Die Vorlagendateien werden in das neue Projekt kopiert und umbenannt, um den Namen des neuen Projekts zu übernehmen.

template selected

6.2. Speicherorte von Vorlagen

KiCad looks for system templates in the path defined in the KICAD9_TEMPLATE_DIR path variable, and user templates in the path defined in KICAD_USER_TEMPLATE_DIR. However, you can browse for templates in an arbitrary directory using the Folder control at the top of the dialog.

6.3. Erstellung von Vorlagen

Eine KiCad-Vorlage ist einfach ein Verzeichnis, das die Projektdateien der Vorlage sowie einige erforderliche Metadaten für die Vorlage in einem Unterverzeichnis namens meta enthält. Der Name des Verzeichnisses, das die Vorlagendateien enthält, bestimmt den Namen der Vorlage. Wenn Sie ein Projekt aus einer Vorlage erstellen, kopiert KiCad die Vorlagendateien in das neue Projektverzeichnis und benennt sie um, damit sie dem neuen Projektnamen entsprechen, wie unten beschrieben.

Alle Dateien der Vorlage werden kopiert, mit zwei Ausnahmen:

  • Dateien, deren Namen mit dem Zeichen . beginnen (Punktdateien), werden nicht kopiert mit Ausnahme von Dateien mit dem Namen .gitignore oder .gitattributes. Diese werden kopiert, wenn sie existieren.

  • Das Verzeichnis meta wird nicht kopiert

Das Verzeichnis meta muss eine HTML-Datei namens info.html enthalten, die im KiCad-Vorlagenbrowser angezeigt wird und grundlegende Informationen zur Beschreibung der Vorlage enthalten sollte. Grundlegende HTML-Funktionen werden unterstützt, einschließlich Bilder. Alle Bilder, auf die in der Datei info.html verwiesen wird, sollten ebenfalls im Verzeichnis meta gespeichert werden.

Der <title>-Tag bestimmt den Namen der Vorlage, der bei der Vorlagenauswahl angezeigt wird. Beachten Sie, dass der Name der Projektvorlage abgeschnitten wird, wenn er zu lang ist. Dieser Anzeigename muss nicht mit dem Namen des Vorlagenverzeichnisses übereinstimmen.

Hier ist ein Beispiel für die Datei info.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//DE">
<HTML>
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html;
charset=utf-8">
<TITLE>Raspberry Pi - Erweiterungsplatine</TITLE>
</HEAD>
<BODY LANG="fr-FR" DIR="LTR">
<P>Diese Projektvorlage ist die Basis für eine Erweiterungsplatine für das <A HREF="http://www.raspberrypi.org/" TARGET="blank">Raspberry Pi $25 ARM board.</A> <BR><BR>Dieses Basisprojekt enthält die Form einer Leiterplatte, die die gleiche Größe hat wie die Raspberry-Pi-Platine, wobei die Anschlüsse entsprechend richtig platziert sind, um die beiden Platinen aufeinander abzustimmen. Alle IOs, die auf der Raspberry-Pi-Platine vorhanden sind, werden mit dem Projekt über die 0.1&quot; expansion headers angeschlossen <BR><BR>Die Platine sieht wie folgt aus:</P>
<P><IMG SRC="brd.png" NAME="brd" ALIGN=BOTTOM WIDTH=680 HEIGHT=378
BORDER=0><BR><BR><BR><BR>
</P>
<P>(c)2012 Brian Sidebotham<BR>(c)2012 KiCad Developers</P>
</BODY>
</HTML>

Schließlich kann meta optional ein Bild mit dem Namen icon.png enthalten, das als Symbol für die Vorlage im Auswahldialog verwendet wird. Das Symbol sollte ein 64 x 64 Pixel großes PNG-Bild sein.

6.3.1. Umbenennen von Vorlagen

Alle Dateien und Ordner in einer Vorlage werden in den neuen Projektordner kopiert, sofern ein neues Projekt unter Verwendung dieser Vorlage erstellt wird. Davon ausgenommen ist das Verzeichnis meta. Dateien und Verzeichnisse, die den Verzeichnisnamen der Vorlage enthalten, werden mit dem neuen Projektdateinamen umbenannt.

Beispiel: Verwendung einer Vorlage mit dem Namen example (links) zur Erstellung eines Projekts mit dem Namen newproject (rechts), wobei die umbenannten Dateien in fett angezeigt werden:

Dateien im Vorlagenordner example Dateien im neu erstellten Projektordner newproject

example.kicad_pro
example.kicad_sch
example.kicad_pcb
example-first.kicad_sch
second-example.kicad_sch
third.kicad_sch
third.kicad_pcb

newproject.kicad_pro
newproject.kicad_sch
newproject.kicad_pcb
newproject-first.kicad_sch
second-newproject.kicad_sch
third.kicad_sch
third.kicad_pcb

Eine Vorlage muss nicht unbedingt ein komplettes Projekt enthalten. Wenn eine erforderliche Projektdatei fehlt, erstellt KiCad die Datei mit dem Standardverhalten für das Erstellen von Projekten:

Dateien im Vorlagenordner example Dateien im neu erstellten Projektordner newproject

example.kicad_sch
first-example.kicad_sch
first-example.kicad_pcb
second-example.kicad_sch
second-example.kicad_pcb

newproject.kicad_sch
first-newproject.kicad_sch
first-newproject.kicad_pcb
second-newproject.kicad_sch
second-newproject.kicad_pcb
newproject.kicad_pro (default)
newproject.kicad_pcb (default)

Wenn die Vorlage eine Projektdatei (.kicad_pro) enthält und deren Name nicht mit dem Vorlagennamen übereinstimmt, führt KiCad die Umbenennung stattdessen mit dem Namen der Projektdatei durch:

Dateien im Vorlagenordner example Dateien im neu erstellten Projektordner newproject

example.kicad_sch
example.kicad_pcb
first-example.kicad_pro
first-example.kicad_sch
first-example.kicad_pcb
second-example.kicad_sch
second-example.kicad_pcb

example.kicad_sch
example.kicad_pcb
newproject.kicad_pro
newproject.kicad_sch
newproject.kicad_pcb
second-example.kicad_sch
second-example.kicad_pcb

Note
Es wird nicht empfohlen, eine Vorlage mit mehreren Projektdateien zu erstellen.

7. Plugin- und Content-Verwaltung

Note
Dieser Teil der KiCad-Dokumentation ist noch nicht geschrieben worden. Wir danken Ihnen für Ihre Geduld, während unser kleines Team von freiwilligen Dokumentationsschreibern daran arbeitet, die Dokumentation zu aktualisieren und zu erweitern.

8. Referenz der Aktionen

Im Folgenden finden Sie eine Liste aller verfügbaren Aktionen im KiCad-Projektmanager: ein Befehl, der einer Tastenkombination zugewiesen werden kann.

8.1. KiCad-Projektverwaltung

Die folgenden Aktionen sind im KiCad-Projektmanager verfügbar. Tastenkombinationen können jeder dieser Aktionen im Abschnitt Tastenkombinationen der Voreinstellungen zugewiesen werden.

Aktion Standard-Tastenkombination Beschreibung

Projekt schließen

Das aktuelle Projekt schließen

Bildumwandler

Strg+B

Konvertiert Bitmapdateien zu Elementen des Schaltplans oder der Leiterplatte

Zeichnungsblatteditor

Strg+Y

Zeichnungsblattränder und Schriftfeld bearbeiten

Footprint-Editor

Strg+F

Bauteil-Footprints bearbeiten

Leiterplatteneditor

Strg+P

Leiterplatte bearbeiten

Schaltplaneditor

Strg+E

Schaltplan bearbeiten

Symboleditor

Strg+L

Schaltplansymbole bearbeiten

Projekt von Repository klonen…​

Projekt von einem bestehenden Repository klonen

Neues Projekt aus einer Vorlage…​

Strg+T

Ein neues Projekt aus einer Vorlage erstellen

Neues Projekt…​

Strg+N

Neues leeres Projekt erstellen

Demoprojekt öffnen…​

Ein Demoprojekt öffnen

Projekt öffnen…​

Strg+O

Ein vorhandenes Projekt öffnen

Texteditor öffnen

Bevorzugten Texteditor starten

Plugin- und Content-Verwaltung

Strg+M

Plugin- und Content-Verwaltung starten

Berechnungswerkzeuge

Berechnen von Bauteilen, Leiterbahnbreiten und vieles mehr

Gerber-Viewer

Strg+G

Gerber-Ausgabedateien anzeigen