imrishabh18/boost-converter
This code defines a PCB schematic and 3D model layout focusing on a power conversion circuit with components like USB-C connector, MT3608 step-up regulator, inductor, diode, input/output capacitors, and resistors arranged on a double-layer PCB.
- Version
- 1.0.2
- License
- unset
- Stars
- 0
imports/Capcitor1206.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"]
} as const
export const Capacitor1206 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C6119969"
]
}}
manufacturerPartNumber="CGA1206X5R226M350NT"
footprint={<footprint>
<smtpad portHints={["pin2"]} pcbX="1.59258mm" pcbY="0mm" width="1.485011mm" height="1.7279874mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-1.59258mm" pcbY="0mm" width="1.485011mm" height="1.7279874mm" shape="rect" />
<silkscreenpath route={[{"x":2.4111966000000393,"y":1.0926064000000224},{"x":0.9262109999999666,"y":1.0926064000000224}]} />
<silkscreenpath route={[{"x":0.9262109999999666,"y":-1.0926063999999087},{"x":2.4111966000000393,"y":-1.0926063999999087}]} />
<silkscreenpath route={[{"x":2.5635965999999826,"y":-0.9402063999999655},{"x":2.5635965999999826,"y":0.9402063999999655}]} />
<silkscreenpath route={[{"x":-2.411196600000153,"y":1.0926064000000224},{"x":-0.9262109999999666,"y":1.0926064000000224}]} />
<silkscreenpath route={[{"x":-0.9262109999999666,"y":-1.0926063999999087},{"x":-2.411196600000153,"y":-1.0926063999999087}]} />
<silkscreenpath route={[{"x":-2.5635966000000963,"y":-0.9402063999999655},{"x":-2.5635966000000963,"y":0.9402063999999655}]} />
<silkscreenpath route={[{"x":2.4111966000000393,"y":-1.092606399999795},{"x":2.5189596734527413,"y":-1.0479694734526674},{"x":2.5635965999999826,"y":-0.9402063999999655}]} />
<silkscreenpath route={[{"x":2.5635965999999826,"y":0.9402063999999655},{"x":2.5189596734527413,"y":1.0479694734527811},{"x":2.4111966000000393,"y":1.092606399999795}]} />
<silkscreenpath route={[{"x":-2.411196600000153,"y":-1.092606399999795},{"x":-2.518959673452855,"y":-1.0479694734526674},{"x":-2.5635966000000963,"y":-0.9402063999999655}]} />
<silkscreenpath route={[{"x":-2.5635966000000963,"y":0.9402063999999655},{"x":-2.518959673452855,"y":1.0479694734527811},{"x":-2.411196600000153,"y":1.092606399999795}]} />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="2.0922mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-2.815400000000068,"y":1.342200000000048},{"x":2.815399999999954,"y":1.342200000000048},{"x":2.815399999999954,"y":-1.3421999999999343},{"x":-2.815400000000068,"y":-1.3421999999999343},{"x":-2.815400000000068,"y":1.342200000000048}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C6119969.obj?uuid=c6790e9475e1483991d2c64340b24e96",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C6119969.step?uuid=c6790e9475e1483991d2c64340b24e96",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0, z: -0.65 },
}}
{...props}
/>
)
}