KiCad封装/元件库(footprint)

在使用KiCAD的时候,如果官方自带的封装库(footprint)缺少元器件的封装,我们可以在一些第三方库中查找。

In addition to the official KiCad libraries, there are other, third party sources for KiCad library packages.

While the following links may be useful sources of library packages, they are not maintained or endorsed by the KiCad project.

Digi-Key

Digi-Key maintains an atomic parts library for KiCad on their GitHub page. These libraries are licensed under an agreement similar to the official libraries.

Octopart

Octopart provides individual KiCad symbols and footprints for many components in their extensive library of components.

SparkFun

SparkFun Electronics provide KiCad library files for many of their products on their GitHub page. These libraries are based on the SparkFun Eagle libraries.

SnapEDA

SnapEDA provides KiCad symbol and footprint libraries for their customers. The libraries are freely available and can be found on their KiCad library page. The library license can be found on their terms of service page.

PCB Libraries

PCB Libraries offers their Professional Edition PCB Footprint Expert product to KiCad users for no cost. Instructions for setting up the Professional Edition license key are available in their documentation.

嘉立创/立创商城KiCad元件库

https://github.com/xtoolbox/lc_kicad_lib

参考链接


解决KiCAD(系统macOS Big Sur)关联封装(Footprint)报错“No PCB footprint libraries are listed in the current footprint library table.”

最近在把macOS Big Sur系统上的KiCAD5.x升级到6.x之后,新建的项目在进行关联封装操作的时候,报错

No PCB footprint libraries are listed in the current footprint library table.

具体如下图:

造成这个问题的原因是KiCAD 6.x版本的全局封装库默认存储位置发生了变动,从低版本升级上来,还是会从以前的配置文件中读取原来配置的路径信息,导致找不到新版本的全局封装库路径。

解决方法是删除低版本配置的封装库相关的配置信息即可(删除之前,先关闭KiCAD软件,否则删除无效)。

macOS系统:

$ rm -rf ~/Library/Preferences/kicad

Windows系统:

$ del C:\Users\ …\AppData\Roaming\kicad

Linux系统:

$ rm -rf ~/.config/kicad

完成后,重启KiCAD软件即可。

参考链接