hrithik18k/Chatting-Device

This code defines React components representing surface-mount voltage regulator and resistor chips with specified pin layouts, footprints, and 3D CAD models for electronic hardware design.

Version
1.0.0
License
unset
Stars
0

imports/B_2100S02P_A110.tsx

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

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

export const B_2100S02P_A110 = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C124375"
  ]
}}
      manufacturerPartNumber="B_2100S02P_A110"
      footprint={<footprint>
        <platedhole  portHints={["pin2"]} pcbX="1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole  portHints={["pin1"]} pcbX="-1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<silkscreentext text="{NAME}" pcbX="-0.0127mm" pcbY="2.27mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-2.815400000000068,"y":1.5199999999999818},{"x":2.78999999999985,"y":1.5199999999999818},{"x":2.78999999999985,"y":-1.5453999999998587},{"x":-2.815400000000068,"y":-1.5453999999998587},{"x":-2.815400000000068,"y":1.5199999999999818}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C124375.obj?uuid=699a85800fbc4a2eb0bb6c6683da95b1",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C124375.step?uuid=699a85800fbc4a2eb0bb6c6683da95b1",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -1.2700126999999566, y: 0, z: -0.000005999999999950489 },
      }}
      {...props}
    />
  )
}