├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── JLC2KiCadLib ├── JLC2KiCadLib.py ├── __init__.py ├── __version__.py ├── footprint │ ├── __init__.py │ ├── footprint.py │ ├── footprint_handlers.py │ └── model3d.py ├── helper.py └── symbol │ ├── __init__.py │ ├── symbol.py │ └── symbol_handlers.py ├── LICENSE ├── README.md ├── images ├── JLC_3Dmodel.png ├── JLC_Footprint_1.png ├── JLC_Symbol_1.png ├── KiCad_3Dmodel.png ├── KiCad_Footprint_1.png └── KiCad_Symbol_1.png └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /JLC2KiCadLib/JLC2KiCadLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/JLC2KiCadLib.py -------------------------------------------------------------------------------- /JLC2KiCadLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JLC2KiCadLib/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.36" 2 | -------------------------------------------------------------------------------- /JLC2KiCadLib/footprint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JLC2KiCadLib/footprint/footprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/footprint/footprint.py -------------------------------------------------------------------------------- /JLC2KiCadLib/footprint/footprint_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/footprint/footprint_handlers.py -------------------------------------------------------------------------------- /JLC2KiCadLib/footprint/model3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/footprint/model3d.py -------------------------------------------------------------------------------- /JLC2KiCadLib/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/helper.py -------------------------------------------------------------------------------- /JLC2KiCadLib/symbol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JLC2KiCadLib/symbol/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/symbol/symbol.py -------------------------------------------------------------------------------- /JLC2KiCadLib/symbol/symbol_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/JLC2KiCadLib/symbol/symbol_handlers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/README.md -------------------------------------------------------------------------------- /images/JLC_3Dmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/JLC_3Dmodel.png -------------------------------------------------------------------------------- /images/JLC_Footprint_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/JLC_Footprint_1.png -------------------------------------------------------------------------------- /images/JLC_Symbol_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/JLC_Symbol_1.png -------------------------------------------------------------------------------- /images/KiCad_3Dmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/KiCad_3Dmodel.png -------------------------------------------------------------------------------- /images/KiCad_Footprint_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/KiCad_Footprint_1.png -------------------------------------------------------------------------------- /images/KiCad_Symbol_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/images/KiCad_Symbol_1.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TousstNicolas/JLC2KiCad_lib/HEAD/setup.py --------------------------------------------------------------------------------