[English] | [日本語]
This is an action script that can be used with pcbnew since KiCad version 5.X (except the initial version). Gerber output for the specified board vendor is performed, and the process of zipping the necessary files is automated with one click.
-
v1.1.5 - Fixed missing Assets/icon.png add Manufacturers/PCBWay
-
v1.1.4 - workaround for KiCad 8.0 rc1
-
v1.1.3 - Fix incorrect PN in Pos File
-
v1.1.2 - Fix crash on Ubuntu
-
v1.1.0 - Supports BOM/POS file generation
-
v1.0.8 - Workaround for KiCad 7.x
-
v1.0.7 - Fix version display.
-
v1.0.6 - Fix error when "UseAuxOrigin".
-
v1.0.5 - "Plugin and Content Manager" metadata added.
-
v1.0.4 - The setting where UseAuxOrigin was "true" in each manufacturer has been changed to "false". This is to avoid the possibility of coordinate troubles when outputting the pos file.
- Open PCM (plugin and Content Manager) window from Menu 'Tools - Plugin and Content Manager'.
- Add and Save a line bellow with "+" button.
https://raw.githubusercontent.com/g200kg/kicad-pcm-repository/main/repository.json
- Select repository "G200kg KiCad PCM repository".
- The installation will run when you press the "Apply Changes" button. ;
- Download from this repository and get 'pcmpackage.zip' file.
- Open PCM (plugin and Content Manager) window from Menu 'Tools - Plugin and Content Manager'.
- Select 'Install from File...' and specify the 'pcmpackage.zip' file.
Rename "plugins" folder to "GerberZipper" and place to the subfolder of the KiCad script folder. The script folder depends on the OS. It also varies depending on the version of KiCad, so I recommend installing it in the location opened by selecting "Tools" - "External Plugins" - "Open Plug-in Directory" from the PCB Editor menu.
-
Linux:
~/.kicad/scripting/plugins
-
Windows:
C:\Users\<UserName>\AppData\Roaming\kicad\scripting\plugins
-
MacOS:
~/Library/Application Support/kicad/scripting/plugins
or
~/Library/Preference/kicad/scripting/plugins
The folder to put the script looks like this:
.../kicad/scripting/plugins | +--- GerberZipper | +--- Manufacturers | +---... +--- Locale | +---... +--- __init__.py +--- gerber_zipper_action.py +--- icon.png
-
Please note that Windows AppData is a hidden folder.
-
The folder where the script should be placed differs depending on the OS version etc. If it cannot launch at the above location, open Script Console from [Tools]-[Script Console] and enter the following command to confirm the folder.
>>> import pcbnew
>>> print(pcbnew.PLUGIN_DIRECTORIES_SEARCH)
- Select [Tools] -> [External Plugins...] -> [Gerber Zipper] from the pcbnew menu.
- In the dialog, select the manufacturer and click the [Make Gerber and ZIP] button to create a ZIP containing the Gerber and the necessary files. The default destination is the
Gerber
folder directly under the project file.
- Details of the current settings can be displayed by clicking the [Show settings details] button. Most of KiCad's plot and drill file creation can be set on this screen. (The setting changed here is temporary. If you want to change the setting permanently, edit the corresponding
json
file.)
- Elecrow
- Elecrow with stencil
- FusionPCB
- JLCPCB
- P-Ban
- PCBWay
(The output files have been reviewed, but this includes those that have not been actually ordered and verified.)
v1.1.0 supports the creation of BOM (bill of materials) / POS (placement information) files that required when PCBA. For now, only JLCPCB and FusionPCB are supported in CSV or text files as recommended by the board vendor.
BOM/POS files are created in the Gerber creation directory, but are not included in the ZIP file.
The BOM/POS file is just a template, and after creating it, you will need to edit the exact model number or supplier information etc. .
JLCPCB requires the part number of the parts supplier LCSC in the BOM file, so edit the generated BOM file and add the LCSC part number. Also, the orientation of parts and anchor points may be misaligned between the KiCad footprint and the LCSC footprint, so if there are any irregularities when checking with Gerber Viewer when ordering, you will need to correct them.
GerberZipper makes this task easier by pre-populating KiCad's schematic and footprint libraries. The following additional properties are available for each component in the schematic editor and board editor:
- PN -- Part model number. MFR# of BOM for JLCPCB
- LCSC -- Model number in LCSC. LCSC# in BOM for JLCPCB
- DR -- Rotation offset of POS file. Correct the direction of rotation when the orientation of parts does not match
- DX and DY -- Part position offset. Correct location mismatch in POS file
If you add these properties to the part in advance, they will be automatically modified when the BOM/POS file is generated. However, adding properties to parts itself is quite troublesome. You may find the following articles helpful:
[https://forum.kicad.info/t/need-help-with-adding-field-in-symbol-properties-and-footprint-properties/39106](https://forum.kicad.info/t/ need-help-with-adding-field-in-symbol-properties-and-footprint-properties/39106)
To more easily add information for the BOM/POS file, you can also add additional information to the Value name of the component on the schematic. For example, if you set "LM358DR2G LCSC:C7950" instead of "LM358DR2G" as the part's Value, "C7950" will be entered in the LCSC field when generating the BOM. Also, in the case of "DR", "DX", and "DY", an offset is added to the placement of parts on the POS file.
- Please note that in this case, the value name of the part will change due to the addition of information, so it will be treated as a different part on the BOM.
Settings are written as .json
files for each board manufacturer in the folder Manufacturers
. Place the created configuration file here to add options.
- Layer
Here, specify the layer and file name that need to be output. Therefore, there is no "Use Protel extension" option. For the inner layer, only the defined layers that have actual data will be output.
- UseExtendedX2format
This is a new Gerber format, but many manufacturers do not support it.
- MergePTHandNPTH
Correspondence varies depending on each board manufacturer. If not specify this, a file for unplated holes is required, but if you forget to attach the file, you may end up with a board that does not have the required holes.
Item | Description |
---|---|
Layer | Specify the file name of the layer to output. Where '*' is replaced with the project name. |
PlotBorderAndTitle | Output title and border. It is not normally used when outputting Gerber to a vendor. |
PlotFootPrintValues | Prints the component values on silk. Whether to output depends on the case. |
PlotFootPrintReferences | Prints the component references on silk. It is usually output because it is required for assembly. |
ForcePlotInvisible | Forces the output of specified invisible characters. |
ExcludeEdgeLayer | Excludes the board outline from layers other than Edge.Cuts . It is recommended by many manufacturers. |
ExcludePadsFromSilk | If this is not checked, the outline of the pad will be drawn on the silk layer. Since it is mainly for documents, usualy checked for Gerber output. |
DoNotTentVias | Prevents the via from being exposed. Whether to use it depends on the case. |
UseAuxOrigin | Use auxiliary coordinates instead of absolute coordinates. Both are good in many cases, but it is safe to follow if there is a contractor's designation. In KiCad, you can set separate AuxOrigin settings for Gerber and drill files, but if they do not match, it will cause an accident, so GerberZipper controls both with this setting. |
LineWidth | The default line width. It doesn't seem to be used much, but it is safe to follow if specified by manufacturer. |
SubtractMaskFromSilk | Make sure that silk printing does not cover areas where copper is exposed, such as pads. Normally check. |
UseExtendedX2format | Uses Gerber extended format. It is better not to check because there are many companies that do not support it. |
CoodinateFormat46 | Set the coordinate accuracy to 4.6,unit mm . You can select 4.5,unit mm or 4.6,unit mm , but in most cases 4.6,unit mm can be used. |
IncludeNetlistInfo | This is an option to embed the netlist info in the Gerber. It is not normally used in data for the board manufacturer. |
Drill | A drill file in Excellon format. Gerber X2 format is not supported. |
DrillMap | Drill map file. Some manufacturer may require it. The format depends on MapFileFormat . |
NPTH | Drill file for non-plated holes. Not required if MergePTHandNPTH is checked. |
NPTHMap | This is a map file for unplated holes. The handling follows DrillMap. |
Drill Unit | Specifies the unit of the drill file, either mm or inches . In many cases it is mm , but the inches may be specified by the manufacturer. |
MirrorYAxis | Inverts the Y coordinate of the drill file. Not normally used. |
MinimalHeader | Minimizes the header part of the drill file. It is rarely used, but may be specified by some manufacturers. |
MergePTHandNPTH | Merge plated holes and unplated holes into one file. Often specified by the manufacturer. |
RouteModeForOvalHoles | Use route command for Oval Holes if checked (recommended). |
Zoros | Select how to handle zeros. Many manufacturers use DecimalFormats , but different formats may be specified in some manufacturers. |
MapFileFormat | Select the map file format. The format will be specified by the manufacturer. |
InstructionFile | Creates the manufacturing standard document specified by P-Ban.com. |
[English] | [日本語]
これは KiCad のバージョン5.X(初期版除く)以降の pcbnew で使用できるアクションスクリプトです。 指定の基板業者向けのガーバー出力を行い、必要なファイルを ZIP でまとめるまでをワンクリックで自動化します。
-
v1.1.5 - Assets/icon.png が不足していたのを修正 / Manufacturers/PCBWay を追加
-
v1.1.4 - KiCad 8.0 rc 1 で GetProperties() ができない問題の workaround
-
v1.1.3 - POSファイルの一部に違う品番が出力される場合があるのを修正。
-
v1.1.2 - Ubuntu でクラッシュする問題に対処。
-
v1.1.0 - BOM/POSファイルの生成をサポート。
-
v1.0.8 - KiCad 7.x 用のワークアラウンド。
-
v1.0.7 - バージョン表示の修正。
-
v1.0.6 - "UseAuxOrigin" 時のエラー修正。
-
v1.0.5 - "プラグインとコンテンツマネージャー用のメタデータを追加。
-
v1.0.4 - 各マニュファクチャの設定で UseAuxOrigin が "true" だったのを "false" に変更した。 これは pos ファイルを出力する際に座標の問題が起こる可能性を避けるためです。
- "プラグインとコンテンツマネージャー" ウインドウをメニューの "ツール" から開きます。
- "+" ボタンで次のURLを追加して保存します。
https://raw.githubusercontent.com/g200kg/kicad-pcm-repository/main/repository.json
- リポジトリの選択に "g200kg KiCad PCM repository" が追加され、選択するとGerberZipperのインストール指示の画面が出てきます。
- インストールは "変更を適用" ボタンを押した時に実行されます。 ;
- このリポジトリからダウンロードして pcmpackage.zip を取得します。
- "プラグインとコンテンツマネージャー" ウインドウをメニューの "ツール" から開きます。
- 画面下部の "ファイルからインストール..." を選択し、ダウンロードした 'pcmpackage.zip' を指定します。
plugins
のフォルダーを GerberZipper
にリネームしてそのまま KiCad のスクリプトフォルダに配置します。スクリプトフォルダは OS によって異なります。またKiCadのバージョンによっても変化しますので、PCBエディタのメニューから"ツール"-"外部プラグイン"-"プラグインディレクトリを開く" で開いた場所にインストールするのが良いと思います。
以下の場所は最新のものではないかも知れません:
-
Linux:
~/.kicad/scripting/plugins
-
Windows:
C:\Users\<UserName>\AppData\Roaming\kicad\scripting\plugins
-
MacOS:
~/Library/Application Support/kicad/scripting/plugins
または
~/Library/Preference/kicad/scripting/plugins
スクリプトを置くフォルダは次のようになります:
.../kicad/scripting/plugins | +--- GerberZipper | +--- Manufacturers | +---... +--- Locale | +---... +--- __init__.py +--- gerber_zipper_action.py +--- icon.png
Windows の AppData は隠しフォルダになっている事に注意してください。
スクリプトを置くフォルダは OS バージョン等で異なります。 上記の場所で起動できない場合、[ツール]-[スクリプトコンソール] で スクリプトコンソールを開き、次のコマンドを入力する事で確認できます。
>>> import pcbnew
>>> print(pcbnew.PLUGIN_DIRECTORIES_SEARCH)
- pcbnew のメニューから [ツール(Tools)] - [外部プラグイン...(External Plugins)] - [Gerber Zipper] を選択します。
- ダイアログが表示されますので、基板業者を選択して [ガーバーとZIPファイルの作成(Make Gerber and ZIP)] ボタンを押すとガーバーと必要なファイルをまとめたZIPが作成されます。作成先はデフォルトではプロジェクトファイルの直下の Gerber フォルダです。
- 現在の設定の詳細は [設定の詳細を見る] ボタンを押すと表示されます。この画面では KiCadのプロットとドリルファイル作成にある殆どの項目が設定できます。(ここで変更した設定は一時的なものになります。恒久的に設定を変えたい場合は対応する json ファイルを編集してください)
- Elecrow
- Elecrow ステンシル付き
- FusionPCB
- JLCPCB
- P板.com
- PCBWay
(出力されたファイルは確認していますが、実際に発注して確認していないものも含みます)
v1.1.0 で基板業者に部品実装を合わせて発注する場合に必要な BOM(部品表) / POS(配置情報) ファイルの作成をサポートしました。当面サポートしているのは JLCPCB と FusionPCB のみで、基板業者の推奨に合わせて CSV またはテキストファイルで生成します。
BOM/POSファイルはガーバーの作成ディレクトリに作られますが、ZIP ファイルには含まれません。
BOM/POSファイルは雛型であり、作成後、各部品の正確な型番や調達先の情報は自分で編集する事が必要です。POSファイルの配置情報も基板業者が持っている情報に部品の向きやアンカーポイントが正確に合っているかを部品業者が提供するガーバービューワ等を使って自分で確認が必要です。
JLCPCB では BOM ファイルに 部品業者 LCSC の部品番号が必要ですので生成した BOM ファイルを編集して LCSC の部品番号を追加します。また KiCad のフットプリントと LCSC のフットプリントで部品の向きやアンカーポイントがずれている場合があるので発注時のガーバービューワの確認でおかしい部分があれば修正が必要です。
GerberZipper はこの作業を軽減するため、KiCad の回路図やフットプリントライブラリにあらかじめ情報を仕込んでおけるようにしています。回路図エディタおよび基板エディタで各部品の追加プロパティとして以下のものが使用できます。
- PN -- 部品の型番。JLCPCB 用の BOM の MFR#
- LCSC -- LCSC での型番。JLCPCB 用の BOM の LCSC#
- DR -- POS ファイルの Rotation のオフセット。部品の向きが一致しない場合に回転方向を修正します
- DX および DY -- 部品位置のオフセット。POS ファイルで位置が一致しない場合に正しい場所に修正します
これらのプロパティをあらかじめ部品に追加しておけば BOM/POS ファイル生成時に自動的に修正します。ただし、部品にプロパティを追加する事自体は結構面倒です。次の記事が参考になると思います:
より簡便に BOM/POS ファイル用の情報を追加するために、回路図上で部品の Value 名に追加情報を入れてしまう事もできます。例えば部品の Value として "LM358DR2G" の代わりに "LM358DR2G LCSC:C7950" とすると、BOM 生成時の LCSC 欄に "C7950" が入ります。また "DR"、"DX"、"DY" の場合は POS ファイル上の部品の配置にオフセットが加わります。
- なおこの場合、情報の追加によって部品の Value 名が変化しますので BOM 上では異なる部品として扱われる事に注意してください。
Manufacturers
フォルダ内に基板業者毎に .json
ファイルで設定が書かれています。既存のファイルを編集して作成した設定ファイルをここに配置すると選択肢が追加されます。
- Layer
ここで出力が必要なレイヤーとファイル名を指定します。そのため「Protel の拡張子を利用」のオプションはありません。また内層のレイヤーについては定義されているものの内、実際にデータが存在するレイヤーのみが出力されます。
- UseExtendedX2format
ガーバーの新しいフォーマットですが、対応していない業者が多いです。
- MergePTHandNPTH
対応が基板業者毎に異なります。これを指定しない場合メッキなし穴用のファイルが必要になりますが添付忘れにより必要な穴が開いていない基板ができてしまう事故が起こる事があります。
項目 | 日本語メニューでの説明 | 備考 |
---|---|---|
Layer | 出力するレイヤーのファイル名を指定します。ここで'*' はプロジェクトの名前に置換されます。 | |
PlotBorderAndTitle | 境界線とタイトルブロックをプロット | タイトルと枠を出力します。業者に出すガーバー出力の際は通常使用しません。 |
PlotFootPrintValues | フットプリントのリファレンスをプロット | 部品の値をシルクに出力します。出力するかどうかは場合によります。 |
PlotFootPrintReferences | フットプリントのリファレンスをプロット | 部品のリファレンスをシルクに出力します。組立に必要なので通常は出力します。 |
ForcePlotInvisible | 非表示の定数/リファレンスを強制的にプロット | 非表示指定した文字を強制的に出力します。 |
ExcludeEdgeLayer | 基板外形レイヤーのデータを他のレイヤーから除外 | 基板外形を Edge.Cuts 以外のレイヤーから除去します。多くの業者でこれを指定する事が推奨されています。 |
ExcludePadsFromSilk | シルクからパッドを除外 | これをチェックしない場合シルクレイヤーにパッドの外形が描かれます。ドキュメント用なのでガーバー出力の際には使用しません。 |
DoNotTentVias | ビアのテンティングを禁止 | ビアにレジストがかからないようにして露出させます。使用するかどうかは場合によります。 |
UseAuxOrigin | 原点に補助座標を使用 | 絶対座標の代わりに補助座標を使用します。どちらでも良い事が多いですが業者の指定があれば従うのが無難です。KiCad ではガーバーとドリルファイルのそれぞれで AuxOrigin の設定ができますが、双方が一致していないと事故の元ですのでGerberZipper ではこの設定で両方を制御します。 |
LineWidth | デフォルトの線幅 | 太さの指定がない場合の線幅です。実際にはあまり使用されていないようですが、指定があれば従うのが無難です。 |
SubtractMaskFromSilk | シルクをレジストで抜く | パッド等のレジストが無い部分にシルク印刷がかぶらないようにします。通常はチェックします。 |
UseExtendedX2format | 拡張X2フォーマットを使用 | ガーバーの拡張フォーマットを使用します。対応していない業者が多いためチェックしない方が良いです。 |
CoodinateFormat46 | 座標フォーマット | 座標の精度を 4.6,単位 mm にします。4.5,単位 mm または 4.6,単位 mm の選択ですが、大抵の場合 4.6,単位 mm が使用できます。 |
IncludeNetlistInfo | ネットリスト属性を含む | ガーバーデータにネットリスト情報を埋め込むオプションです。基板業者に渡すデータでは通常は使用されません。 |
Drill | Excellon 形式のドリルファイルです。Gerber X2 はサポートしていません。 | |
DrillMap | ドリルマップファイルです。業者によっては要求される場合があります。フォーマットは MapFileFormat に依存します。 | |
NPTH | メッキなし穴のドリルファイルです。MergePTHandNPTH がチェックされている場合は不要です。 | |
NPTHMap | メッキなし穴のマップファイルです。扱いは DrillMap に準じます。 | |
Drill Unit | ドリル単位 | ドリルファイルの単位で mm か インチかを指定します。多くの場合 mm ですが業者によってインチが指定されている場合があります。 |
MirrorYAxis | Y軸でミラー | Y軸でミラードリルファイルのY座標を反転させます。通常は使用しません。 |
MinimalHeader | 最小のヘッダー | ドリルファイルのヘッダー部を最小化します。あまり使用されませんが業者による指定がある場合があります。 |
MergePTHandNPTH | PTHとNPTHを一つのファイルにマージ | メッキ穴とメッキなし穴を1ファイルにまとめます。業者によって指定されている事が多いです。 |
RouteModeForOvalHoles | 長円穴ドリルモード | チェックすると route コマンドを使用します(推奨) |
Zoros | ゼロの扱い | ドリルファイルの少数の扱いを選択します。DecimalFormatが多いですが、違うフォーマットが指定されている場合もあります。 |
MapFileFormat | マップファイルフォーマット | マップファイルのフォーマットを選択します。マップファイルが要求される場合はフォーマットも指定されます。 |
InstructionFile | P板.comで指定されている製造基準書を作成します。 | |
________________________ | ______________________________ | ___ |