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/EVP_AECE2A.tsx
import type { PushButtonProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["pin1"],
pin2: ["pin2"],
pin3: ["pin3"],
pin4: ["pin4"],
pin5: ["pin5"]
} as const
export const EVP_AECE2A = (props: PushButtonProps<typeof pinLabels>) => {
const { name = "SW1", ...restProps } = props
return (
<pushbutton
name={name}
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C4365149"
]
}}
manufacturerPartNumber="EVP-AECE2A"
footprint={<footprint>
<platedhole portHints={["pin4"]} pcbX="2.70002mm" pcbY="-1.0659745mm" outerDiameter="0.999998mm" holeDiameter="0.649986mm" shape="circle" />
<platedhole portHints={["pin5"]} pcbX="-2.70002mm" pcbY="-1.0751185mm" outerDiameter="0.999998mm" holeDiameter="0.649986mm" shape="circle" />
<smtpad portHints={["pin3"]} pcbX="1.269746mm" pcbY="0.9751695mm" width="0.7999984mm" height="1.199896mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-1.270254mm" pcbY="0.9751695mm" width="0.7999984mm" height="1.199896mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0mm" pcbY="0.9751695mm" width="0.7999984mm" height="1.199896mm" shape="rect" />
<silkscreenpath route={[{"x":-3.8101778000000195,"y":-1.4149704999999813},{"x":-3.8101778000000195,"y":-1.8281015000001162},{"x":3.8099492000000055,"y":-1.8281015000001162},{"x":3.8099492000000055,"y":-1.4149704999999813}]} />
<silkscreenpath route={[{"x":-3.8101778000000195,"y":-1.4149704999999813},{"x":-3.8101778000000195,"y":1.7651094999999941}]} />
<silkscreenpath route={[{"x":-3.8101778000000195,"y":1.775015499999995},{"x":3.809822199999985,"y":1.775015499999995}]} />
<silkscreenpath route={[{"x":3.809822199999985,"y":-1.4149704999999813},{"x":3.809822199999985,"y":1.7651094999999941}]} />
<silkscreentext text="{NAME}" pcbX="-0.015748mm" pcbY="2.9335115mm" anchorAlignment="center" fontSize="1mm" />
<fabricationnotepath route={[{"x":-2.158999999999878,"y":-1.8279745000000958},{"x":-2.158999999999878,"y":0.07702549999999064},{"x":-2.1218025612105293,"y":0.16682806121059457},{"x":-2.0319999999999254,"y":0.20402549999994335},{"x":2.032000000000039,"y":0.20402549999994335},{"x":2.1218025612107567,"y":0.16682806121059457},{"x":2.1590000000001055,"y":0.07702549999999064},{"x":2.1590000000001055,"y":-1.8279745000000958},{"x":2.032000000000039,"y":-1.7009745000000294},{"x":1.9050000000000864,"y":-1.8279745000000958},{"x":1.9050000000000864,"y":-0.04997450000007575},{"x":-1.9049999999999727,"y":-0.04997450000007575},{"x":-1.9049999999999727,"y":-1.8279745000000958},{"x":-2.0319999999999254,"y":-1.7009745000000294},{"x":-2.158999999999878,"y":-1.8279745000000958}]} strokeWidth="0.254mm" />
<courtyardoutline outline={[{"x":-4.215447999999924,"y":2.183511499999895},{"x":4.183951999999977,"y":2.183511499999895},{"x":4.183951999999977,"y":-2.2026885000001357},{"x":-4.215447999999924,"y":-2.2026885000001357},{"x":-4.215447999999924,"y":2.183511499999895}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C4365149.obj?uuid=7bb1118fcc254bab962a3c889e8834cf",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C4365149.step?uuid=7bb1118fcc254bab962a3c889e8834cf",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0.00006350000001020817, y: 0.8780996000001596, z: 0.5499959999999999 },
}}
{...restProps}
/>
)
}