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/DS1023_1x14SF11.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 DS1023_1x14SF11 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C7509524"
]
}}
manufacturerPartNumber="DS1023_1x14SF11"
footprint={<footprint>
<platedhole portHints={["pin1"]} pcbX="-16.51mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin2"]} pcbX="-13.97mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin3"]} pcbX="-11.43mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin4"]} pcbX="-8.89mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin5"]} pcbX="-6.35mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin6"]} pcbX="-3.81mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin7"]} pcbX="-1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin8"]} pcbX="1.27mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin9"]} pcbX="3.81mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin10"]} pcbX="6.35mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin11"]} pcbX="8.89mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin12"]} pcbX="11.43mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin13"]} pcbX="13.97mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<platedhole portHints={["pin14"]} pcbX="16.51mm" pcbY="0mm" outerDiameter="1.7999964mm" holeDiameter="1.1999976mm" shape="circle" />
<silkscreenpath route={[{"x":17.779999999999973,"y":1.3396721999999954},{"x":18.034000000000106,"y":1.3396721999999954},{"x":18.034000000000106,"y":-1.2699999999999818},{"x":17.779999999999973,"y":-1.2699999999999818}]} />
<silkscreenpath route={[{"x":-17.779999999999973,"y":1.3396721999999954},{"x":-18.161000000000058,"y":1.3396721999999954},{"x":-18.161000000000058,"y":-1.2699999999999818},{"x":-17.779999999999973,"y":-1.2699999999999818}]} />
<silkscreenpath route={[{"x":-17.779999999999973,"y":1.3396721999999954},{"x":17.779999999999973,"y":1.3396721999999954}]} />
<silkscreenpath route={[{"x":-15.256103600000074,"y":1.3396721999999954},{"x":-15.256103600000074,"y":-1.2699999999999818}]} />
<silkscreenpath route={[{"x":-17.779999999999973,"y":-1.2699999999999818},{"x":17.779999999999973,"y":-1.2699999999999818}]} />
<silkscreentext text="{NAME}" pcbX="-0.0635mm" pcbY="2.3462mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-18.411000000000058,"y":1.5962000000000671},{"x":18.284000000000106,"y":1.5962000000000671},{"x":18.284000000000106,"y":-1.5199999999999818},{"x":-18.411000000000058,"y":-1.5199999999999818},{"x":-18.411000000000058,"y":1.5962000000000671}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C7509524.obj?uuid=f0817549658c4b77b6872b4ec7ab26b3",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C7509524.step?uuid=f0817549658c4b77b6872b4ec7ab26b3",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0.000012699999842880061, z: -0.0000064000000006281255 },
}}
{...props}
/>
)
}