rushabhcodes/ESP32-E-Reader
This code defines the physical layout and schematic wiring of an ESP32-based e-reader device, including various surface-mount components such as connectors, ICs, resistors, capacitors, inductors, diodes, pushbuttons, and an antenna, with precise PCB placement and interconnection details.
- Version
- 1.0.8
- License
- unset
- Stars
- 0
imports/NSR0240HT1G.tsx
import type { DiodeProps } from "@tscircuit/props";
const pinLabels = {
pin1: ["cathode", "neg"],
pin2: ["anode", "pos"],
} as const;
export const NSR0240HT1G = (props: DiodeProps) => {
const { name = "D1", ...restProps } = props;
return (
<diode
name={name}
pinLabels={pinLabels}
supplierPartNumbers={{
jlcpcb: ["C152519"],
}}
manufacturerPartNumber="NSR0240HT1G"
footprint="smdpads2_p2.3449mm_pw1mm_ph0.7mm_cyw3.8528mm_cyh2.1002mm"
cadModel={{
objUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C152519.obj?uuid=7459fe65e23146c0a8d836e46a0add72",
stepUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C152519.step?uuid=7459fe65e23146c0a8d836e46a0add72",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0.00011430000006384944, z: 0 },
}}
{...restProps}
/>
);
};