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/GRM188R61A226ME15D.tsx

import type { ChipProps } from "@tscircuit/props"

const pinLabels = {
  pin1: ["pin1"],
  pin2: ["pin2"]
} as const

export const GRM188R61A226ME15D = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      symbol={
        <symbol>
          <schematicpath points={[{"x":-0.508,"y":-2.032},{"x":-0.508,"y":2.032}]} strokeWidth={0.254} strokeColor="#A00000" />
          <port name="pin1" pinNumber={1} aliases={["1"]} direction="left" schX={-5.08} schY={0} schStemLength={2.54} />
          <schematicpath points={[{"x":2.54,"y":0},{"x":0.508,"y":0}]} strokeWidth={0.254} strokeColor="#A00000" />
          <schematicpath points={[{"x":0.508,"y":2.032},{"x":0.508,"y":-2.032}]} strokeWidth={0.254} strokeColor="#A00000" />
          <port name="pin2" pinNumber={2} aliases={["2"]} direction="right" schX={5.08} schY={0} schStemLength={2.54} />
          <schematicpath points={[{"x":-0.508,"y":0},{"x":-2.54,"y":0}]} strokeWidth={0.254} strokeColor="#A00000" />
        </symbol>
      }
      supplierPartNumbers={{
  "jlcpcb": [
    "C84419"
  ]
}}
      manufacturerPartNumber="GRM188R61A226ME15D"
      footprint="res_p1.4mm_pw0.8mm_ph0.9mm"
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C84419.obj?uuid=ac9b32e974bc448eab36b1293f859dcb",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C84419.step?uuid=ac9b32e974bc448eab36b1293f859dcb",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: 0, z: -0.4 },
      }}
      {...props}
    />
  )
}