imrishabh18/fitness_watch

This code defines a React component representing an AO3400A SOT-23P surface-mount N-channel MOSFET with three pins labeled Gate (G), Source (S), and Drain (D), including electrical and physical pin configurations, schematic symbol, and associated 3D model.

Version
1.0.7
License
unset
Stars
0

imports/B2B_PH_K_S_LF__SN_.tsx

import type { ChipProps } from "@tscircuit/props"
import objPath from "./B2B_PH_K_S_LF__SN_/B2B_PH_K_S_LF__SN_.obj"

const pinLabels = {
  pin1: ["pin1"],
  pin2: ["pin2"]
} as const

const pinAttributes = {
  pin1: { requiresPower: true },
  pin2: { requiresGround: true },
} as const

export const B2B_PH_K_S_LF__SN_ = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      pinAttributes={pinAttributes}
      supplierPartNumbers={{
  "jlcpcb": [
    "C131337"
  ]
}}
      manufacturerPartNumber="B2B-PH-K-S(LF)(SN)"
      footprint="pinrow2_nosquareplating_p2mm_od1.6mm_id0.9mm_pin1location(rightside,top)"
      cadModel={{
        objUrl: objPath,
        pcbRotationOffset: 180,
        modelOriginPosition: { x: -0.9995, y: -0.5500381999999945, z: -0.000006999999999646178 },
      }}
      {...props}
    />
  )
}