abse/boostxl-sharp128
This code defines a printed circuit board (PCB) with various surface-mount resistors, capacitors, inductors, and integrated circuits, including power management components and interface connectors, for a TI-based LCD and microSD module using 0603 and other package types.
- Version
- 1.0.0
- License
- unset
- Stars
- 0
imports/CRCW0603133KFKEA.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"]
} as const
export const CRCW0603133KFKEA = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C844321"
]
}}
manufacturerPartNumber="CRCW0603133KFKEA"
footprint="res_p1.5001mm_pw0.5mm_ph0.9mm"
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C844321.obj?uuid=4150808be543428fb6aec8961ce08de3",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C844321.step?uuid=4150808be543428fb6aec8961ce08de3",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.000063500000123895, y: -0.000449200000060046, z: -0.05 },
}}
{...props}
/>
)
}