![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A Python script that convert any electronic components from LCSC or EasyEDA to a Kicad library
A Python script that converts any electronic components from EasyEDA or LCSC to a Kicad library including 3D model in color. This tool will speed up your PCB design workflow especially when using JLCPCB SMT assembly services. It supports library formats for both Kicad v6.x and Kicad v5.x.
If this tool has saved you a lot of time when designing a PCB, please consider supporting the project by :
pip install easyeda2kicad
# For symbol + footprint + 3d model (with --full argument)
easyeda2kicad --full --lcsc_id=C2040
# For symbol + footprint + 3d model
easyeda2kicad --symbol --footprint --3d --lcsc_id=C2040
# For symbol + footprint
easyeda2kicad --symbol --footprint --lcsc_id=C2040
# For symbol only
easyeda2kicad --symbol --lcsc_id=C2040
# For footprint only
easyeda2kicad --footprint --lcsc_id=C2040
# For 3d model only
easyeda2kicad --3d --lcsc_id=C2040
# For symbol in Kicad v5.x legacy format
easyeda2kicad --symbol --lcsc_id=C2040 --v5
By default, all librairies are saved in C:/Users/your_name/Documents/Kicad/easyeda2kicad/
, with :
easyeda2kicad.kicad_sym
file for Kicad v6.x symbol libraryeasyeda2kicad.lib
file for Kicad v5.x legacy symbol libraryeasyeda2kicad.pretty/
folder for footprint librarieseasyeda2kicad.3dshapes/
folder for 3d models (in .WRL and .STEP format )If you want to save components symbol/footprint in your own libs, you can specify the output lib path by using --output
option.
easyeda2kicad --full --lcsc_id=C2040 --output ~/libs/my_lib
This command will save:
~/libs/my_lib.kicad_sym
file for symbol library. The file will be created if it doesn't exist.~/libs/my_lib.pretty/
folder for footprint libraries. The folder will be created if it doesn't exist.~/libs/my_lib.3dshapes/
folder for 3d models. The folder will be created if it doesn't exist. The 3D models will be saved both in .WRL and .STEP format.You can use the option --overwrite
to update a component symbol/footprint that is already in a Kicad library (generated by easyeda2kicad)
easyeda2kicad --symbol --footprint --lcsc_id=C2040 --output ~/libs/my_lib --overwrite
By default, easyeda2kicad will generate a symbol library for Kicad v6.x (.kicad_sym). You can generate a symbol lib in legacy format for Kicad v5.x (.lib) using --v5
argument.
easyeda2kicad --symbol --lcsc_id=C2040 --v5
These are the instructions to add the default easyeda2kicad libraries in Kicad. Before configuring KiCad, run the script at least once to create lib files. For example :
easyeda2kicad --symbol --footprint --lcsc_id=C2040
EASYEDA2KICAD
:
C:/Users/your_username/Documents/Kicad/easyeda2kicad/
,/home/your_username/Documents/Kicad/easyeda2kicad/
easyeda2kicad
: ${EASYEDA2KICAD}/easyeda2kicad.kicad_sym
easyeda2kicad
: ${EASYEDA2KICAD}/easyeda2kicad.pretty
The correctness of the symbols and footprints converted by easyeda2kicad can't be guaranteed. Easyeda2kicad speeds up custom library design process, but you should remain careful and always double check the footprints and symbols generated.
FAQs
A Python script that convert any electronic components from LCSC or EasyEDA to a Kicad library
We found that easyeda2kicad demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.