imrishabh18/rp2040-motor-controller

The circuit implements a powered USB interface with a W25Q16 flash memory chip, a RP2040 microcontroller, and AO3400A MOSFETs for switch control, enabling USB communication, memory storage, and device power management.

Version
1.0.19
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}
  />
);