imrishabh18/rp2040-motor-controller
This circuit module provides a microcontroller-based NEMA17 stepper motor driver with integrated USB-C Power Delivery, temperature sensing, and safety interlocks.
- Version
- 1.0.16
- License
- unset
- Stars
- 0
imports/BSS84.tsx
import type { ChipProps } from "@tscircuit/props";
const pinLabels = {
pin1: ["gate"],
pin2: ["source"],
pin3: ["drain"],
} as const;
export const BSS84 = (props: ChipProps<typeof pinLabels>) => (
<chip
pinLabels={pinLabels}
footprint="sot23"
supplierPartNumbers={{ jlcpcb: ["C85202"] }}
manufacturerPartNumber="BSS84-7-F"
{...props}
/>
);