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/PZ254_1_14_Z_8_5.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"],
pin3: ["pin3"],
pin4: ["pin4"],
pin5: ["pin5"],
pin6: ["pin6"],
pin7: ["pin7"],
pin8: ["pin8"],
pin9: ["pin9"],
pin10: ["pin10"],
pin11: ["pin11"],
pin12: ["pin12"],
pin13: ["pin13"],
pin14: ["pin14"]
} as const
export const PZ254_1_14_Z_8_5 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C2894937"
]
}}
manufacturerPartNumber="PZ254_1_14_Z_8_5"
footprint={<footprint>
<platedhole portHints={["pin14"]} pcbX="16.51mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin13"]} pcbX="13.97mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin12"]} pcbX="11.43mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin11"]} pcbX="8.89mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin10"]} pcbX="6.35mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin9"]} pcbX="3.81mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin8"]} pcbX="1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin7"]} pcbX="-1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin6"]} pcbX="-3.81mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin5"]} pcbX="-6.35mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin4"]} pcbX="-8.89mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin3"]} pcbX="-11.43mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin2"]} pcbX="-13.97mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<platedhole portHints={["pin1"]} pcbX="-16.51mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1000232mm" shape="circle" />
<silkscreenpath route={[{"x":-15.239974599999982,"y":1.2499848000001066},{"x":-15.239974599999982,"y":-1.2500102000000197}]} />
<silkscreenpath route={[{"x":-17.779974599999832,"y":-1.2500102000000197},{"x":17.77997460000006,"y":-1.2500102000000197}]} />
<silkscreenpath route={[{"x":-17.779974599999832,"y":1.2499848000001066},{"x":-17.779974599999832,"y":-1.2500102000000197}]} />
<silkscreenpath route={[{"x":17.77997460000006,"y":1.2499848000001066},{"x":-17.779974599999832,"y":1.2499848000001066}]} />
<silkscreenpath route={[{"x":17.77997460000006,"y":-1.2500102000000197},{"x":17.77997460000006,"y":1.2499848000001066}]} />
<silkscreentext text="{NAME}" pcbX="-0.0127mm" pcbY="2.2446mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-18.055399999999963,"y":1.494600000000105},{"x":18.029999999999973,"y":1.494600000000105},{"x":18.029999999999973,"y":-1.5453999999999724},{"x":-18.055399999999963,"y":-1.5453999999999724},{"x":-18.055399999999963,"y":1.494600000000105}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2894937.obj?uuid=08b06314cd6a40fe8bae6f2b80f3ecbb",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C2894937.step?uuid=08b06314cd6a40fe8bae6f2b80f3ecbb",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.00006319999984327751, y: 0.000012699999842880061, z: -0.000005999999999950489 },
}}
{...props}
/>
)
}