imrishabh18/pcbgolf

This code defines detailed PCB footprints for various electronic components (such as resistors, capacitors, connectors, ICs, LEDs, and via/hole patterns), as well as associated metadata (pin mappings, CAD models, labels) for a circuit design, enabling precise rendering and integration into a PCB layout in a React-based schematic editor.

Version
1.4.1
License
unset
Stars
0

imports/MEKK2520TR47M.tsx

import type { InductorProps } from "@tscircuit/props"

export const MEKK2520TR47M = (props: Omit<InductorProps, "inductance">) => {
  return (
    <inductor
      inductance="470nH"
      supplierPartNumbers={{
  "jlcpcb": [
    "C519277"
  ]
}}
      manufacturerPartNumber="MEKK2520TR47M"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} pcbX="0.999998mm" pcbY="0mm" width="0.999998mm" height="2.0999958mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="-0.999998mm" pcbY="0mm" width="0.999998mm" height="2.0999958mm" shape="rect" />
<silkscreenpath route={[{"x":-1.143000000000029,"y":-1.1929872000000614},{"x":1.1429999999999154,"y":-1.1929872000000614}]} />
<silkscreenpath route={[{"x":-1.143000000000029,"y":1.1929872000000614},{"x":1.1429999999999154,"y":1.1929872000000614}]} />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="2.1938mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.748600000000124,"y":1.4438000000000102},{"x":1.7486000000000104,"y":1.4438000000000102},{"x":1.7486000000000104,"y":-1.4438000000001239},{"x":-1.748600000000124,"y":-1.4438000000001239},{"x":-1.748600000000124,"y":1.4438000000000102}]} />
      </footprint>}
      
      {...props}
    />
  )
}