Plugin to generate all files necessary for JLCPCB board fabrication and assembly
- Gerber files
- Excellon files
- BOM file
- CPL file
Furthermore it lets you search the JLCPCB parts database and assign parts directly to the footprints which result in them being put into the BOM file.
This plugin is not yet very well tested and only works for KiCAD 6.0!
I try to keep it working with 6.99 nightly builds but there are massive API changes on the horizon and I'm not sure if I can keep up with them.
This is under a lot of developments, so consider this README out of date all the time 😏
If you find any sort of problems, please create an issue so that I can hopefully fix it!
Add my custom repo to the Plugin and Content Manager, the URL is https://raw.githubusercontent.com/Bouni/bouni-kicad-repository/main/repository.json
From there you can install the plugin via the GUI.
Simply clone this repo into your scripting/plugins folder, on Windows thats C:\users\<username>\Documents\kicad\6.0\scripting\plugins\
on linux that would be /home/<username>/.local/share/kicad/6.0/scripting/plugins
.
The Flatpak installation of KiCAD currently dows not ship with pip and requests installed. The later is required for the plugin to work. In order to get it working you can run the following 3 commands:
flatpak run --command=sh org.kicad.KiCad
python -m ensurepip --upgrade
/var/data/python/bin/pip3 install requests
See issue #94 for more info.
Checkout this screencast, it shows quickly how to use this plugin:
Windows can be closed with ctrl-w/ctrl-q/command-w/command-w (OS dependent) and escape. Pressing enter in the keyword text box will start a search.
You can easily toggle the exclude from BOM
and exclude from CPL
attributes of one or multiple footprints.
Select one or multiple footprints, click select part. You can select parts with equal value and footprint using the Select alike button. In the upcoming modal dialog, search for parts, select the one of your choice and click select part. The LCSC number of your selection will then be assigned to the footprints.
Generate all necessary assembly files for your board with a simple click.
A new directory called jlcpcb
is created, and in there, two separate folders are created, gerber
and assembly
.
In the gerber folder all necessary *.gbr
and *.drl
files are generated and zipped, ready for upload to JLCPCB.
The zipfile is named GERBER-<projectname>.zip
In the assembly folder, two files are generated, BOM-<projectname>.csv
and CPL-<projectname>.csv
.
Footprints are included into the BOM and CPL files according to their exclude from BOM
and exclude from CPL
attributes.
JLCPCB seems to need corrected rotation information. @matthewlai implemented that in his JLCKicadTools and I adopted his work in this plugin as well. You can download Matthews file from GitHub as well als manage your own corrections in the Rotation manager.
This plugin makes use of a lot of icons from the excellent Material Design Icons