MustafaMulla29/wireless-mouse-pcb
This code defines a 3.3V low dropout voltage regulator chip (AP2112K-3.3TRG1) with five pins (VIN, GND, Enable, NC, VOUT) and its associated PCB footprint and 3D models for hardware implementation.
- Version
- 1.0.6
- License
- unset
- Stars
- 0
imports/SS_12D00_G3.tsx
import type { SwitchProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"],
pin3: ["pin3"]
} as const
export const SS_12D00_G3 = (props: SwitchProps) => {
const { name = "SW1", ...restProps } = props
return (
<switch
name={name}
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C22355741"
]
}}
manufacturerPartNumber="SS-12D00-G3"
footprint={<footprint>
<platedhole portHints={["pin1"]} pcbX="-2.499995mm" pcbY="0mm" outerDiameter="1.524mm" holeDiameter="0.9144mm" shape="circle" />
<platedhole portHints={["pin2"]} pcbX="0.000127mm" pcbY="0mm" outerDiameter="1.524mm" holeDiameter="0.9144mm" shape="circle" />
<platedhole portHints={["pin3"]} pcbX="2.499995mm" pcbY="0mm" outerDiameter="1.524mm" holeDiameter="0.9144mm" shape="circle" />
<silkscreenpath route={[{"x":-1.5239999999998872,"y":-0.17200879999995777},{"x":-1.5239999999998872,"y":-1.143000000000029},{"x":-1.2699999999998681,"y":-1.143000000000029}]} />
<silkscreenpath route={[{"x":-1.1834875999998076,"y":1.143000000000029},{"x":-1.5239999999998872,"y":1.143000000000029},{"x":-1.5239999999998872,"y":0.17200879999995777}]} />
<silkscreenpath route={[{"x":1.397000000000162,"y":1.143000000000029},{"x":-1.2699999999998681,"y":1.143000000000029},{"x":-1.2699999999998681,"y":-1.143000000000029},{"x":1.397000000000162,"y":-1.143000000000029},{"x":1.397000000000162,"y":1.143000000000029}]} />
<silkscreentext text="{NAME}" pcbX="0.001905mm" pcbY="3.032mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-4.7565949999999475,"y":2.282000000000039},{"x":4.760405000000105,"y":2.282000000000039},{"x":4.760405000000105,"y":-2.2819999999999254},{"x":-4.7565949999999475,"y":-2.2819999999999254},{"x":-4.7565949999999475,"y":2.282000000000039}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C22355741.obj?uuid=73abde54055d465790e8480c42fb2657",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C22355741.step?uuid=73abde54055d465790e8480c42fb2657",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.0004999999999997229, y: -0.000012200000070183847, z: -0.4000052000000003 },
}}
{...restProps}
/>
)
}