abse/wifi-smart-switch

The AO3400A component models a small N-channel MOSFET in a SOT-23 package with drain, gate, and source pins, used for switching or amplification in electronic circuits.

Version
1.0.29
License
unset
Stars
0

imports/TMOV14RP300E/TMOV14RP300E.tsx

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

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

export const TMOV14RP300E = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      symbol={
        <symbol>
          <port name="pin1" pinNumber={1} aliases={["1"]} direction="left" schX={-0.4} schY={0} schStemLength={0.2} />
          <port name="pin2" pinNumber={2} aliases={["2"]} direction="right" schX={0.4} schY={0} schStemLength={0.2} />
          <schematicrect schX={0} schY={0} width={0.4} height={0.16} color="#000000" strokeWidth={0.01} />
          <schematicpath points={[{"x":0.12,"y":0.16},{"x":-0.1,"y":-0.16},{"x":-0.2,"y":-0.16}]} strokeColor="#000000" strokeWidth={0.01} />
        </symbol>
      }
      supplierPartNumbers={{
  "jlcpcb": [
    "C1527424"
  ]
}}
      manufacturerPartNumber="TMOV14RP300E"
      footprint={<footprint>
        <platedhole  portHints={["pin1"]} pcbX="-4.249928mm" pcbY="1.725041mm" outerDiameter="1.999996mm" holeDiameter="1.3999972mm" shape="circle" />
<platedhole  portHints={["pin2"]} pcbX="4.249928mm" pcbY="-1.725041mm" outerDiameter="1.999996mm" holeDiameter="1.3999972mm" shape="circle" />
<silkscreenpath route={[{"x":8.500008399999842,"y":2.7999944000001733},{"x":8.500008399999842,"y":-2.799968999999919}]} />
<silkscreenpath route={[{"x":-8.500008399999956,"y":-2.799968999999919},{"x":-8.500008399999956,"y":2.7999944000001733}]} />
<silkscreenpath route={[{"x":-8.500008399999956,"y":2.7999944000001733},{"x":-4.847386799999981,"y":2.7999944000001733}]} />
<silkscreenpath route={[{"x":-3.6524692000000414,"y":2.7999944000001733},{"x":8.500008399999842,"y":2.7999944000001733}]} />
<silkscreenpath route={[{"x":-8.500008399999956,"y":-2.799968999999919},{"x":3.6524183999999877,"y":-2.799968999999919}]} />
<silkscreenpath route={[{"x":4.847437599999921,"y":-2.799968999999919},{"x":8.500008399999842,"y":-2.799968999999919}]} />
<silkscreentext text="{NAME}" pcbX="-0.0254mm" pcbY="3.819781mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-8.784400000000005,"y":3.0697810000000345},{"x":8.733600000000024,"y":3.0697810000000345},{"x":8.733600000000024,"y":-3.069018999999912},{"x":-8.784400000000005,"y":-3.069018999999912},{"x":-8.784400000000005,"y":3.0697810000000345}]} />
      </footprint>}
      cadModel={{
        objUrl: objPath,
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: 0, z: -11.50001 },
      }}
      {...props}
    />
  )
}