Importing from Ultra Librarian
Overview
You can download schematic symbols and PCB footprints from Ultra Librarian and import the KiCad files directly into tscircuit.
Downloading from Ultra Librarian
- Visit Ultra Librarian.
- Search for the manufacturer part number.
- Select the footprint variant you need.
- Click Download Now.
- Sign in or create an Ultra Librarian account when prompted.
- Choose the KiCad v5 or KiCad v6+ format.
- Download and extract the ZIP file.
The extracted files include:
- the
.kicad_modfile for the PCB footprint - the
.kicad_symfile for the schematic symbol
Importing Ultra Librarian Components
Copy both files into your tscircuit project. Import them and pass them to the
footprint and symbol props of a <chip />:
import kicadSym from "./symbol.kicad_sym"
import kicadMod from "./footprint.kicad_mod"
export default () => {
return (
<board>
<chip
name="U1"
footprint={kicadMod}
symbol={kicadSym}
/>
</board>
)
}
The .kicad_mod file provides the PCB footprint, while the .kicad_sym file
provides the schematic symbol.