hrithik18k/smart-switch-pcb
The AO3400A component models a SOT-23 N-channel MOSFET with labeled pins for Gate, Source, and Drain, including 3D CAD models and schematic symbols for electronic circuit design.
- Version
- 1.0.1
- License
- unset
- Stars
- 0
imports/A_1N4148W.tsx
import type { DiodeProps } from "@tscircuit/props";
const pinLabels = {
pin1: ["cathode", "neg"],
pin2: ["anode", "pos"],
} as const;
export const A_1N4148W = (props: DiodeProps) => {
const { name = "D1", ...restProps } = props;
return (
<diode
name={name}
pinLabels={pinLabels}
supplierPartNumbers={{
jlcpcb: ["C81598"],
}}
manufacturerPartNumber="1N4148W"
footprint="smdpads2_p3.4699mm_pw1.1mm_ph1mm"
cadModel={{
objUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C81598.obj?uuid=114f2449d65947c2a2476b7fb75383eb",
stepUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C81598.step?uuid=114f2449d65947c2a2476b7fb75383eb",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0, z: 0 },
}}
{...restProps}
/>
);
};