seveibar/f1c1990s-dev-board

This code manages the entire PCB assembly process for a computer hardware module, including component placement, schematic integration, automated routing, copper pouring, and design rule checks, focused on a four-layer carrier board with integrated support components and connectors.

Version
1.8.0
License
unset
Stars
0

imports/A_74AHCT2G125DC_125.tsx

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

const pinLabels = {
  pin1: ["N_1OE"],
  pin2: ["1A"],
  pin3: ["2Y"],
  pin4: ["GND"],
  pin5: ["2A"],
  pin6: ["1Y"],
  pin7: ["N_2OE"],
  pin8: ["VCC"]
} as const

const pinAttributes = {
  pin4: {requiresGround: true},
  pin8: {requiresPower: true}
} as const

export const A_74AHCT2G125DC_125 = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      pinAttributes={pinAttributes}
      supplierPartNumbers={{
  "jlcpcb": [
    "C554633"
  ]
}}
      manufacturerPartNumber="74AHCT2G125DC,125"
      footprint={<footprint>
        <smtpad portHints={["pin8"]} pcbX="-0.750062mm" pcbY="1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin7"]} pcbX="-0.249936mm" pcbY="1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin6"]} pcbX="0.249936mm" pcbY="1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin5"]} pcbX="0.750062mm" pcbY="1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin4"]} pcbX="0.750062mm" pcbY="-1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin3"]} pcbX="0.249936mm" pcbY="-1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin2"]} pcbX="-0.249936mm" pcbY="-1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<smtpad portHints={["pin1"]} pcbX="-0.750062mm" pcbY="-1.549908mm" width="0.2800096mm" height="0.7999984mm" radius="0.1400048mm" shape="pill" />
<silkscreenpath route={[{"x":-0.9999979999998914,"y":-0.8999981999999136},{"x":0.9999979999998914,"y":-0.8999981999999136},{"x":0.9999979999998914,"y":0.8999982000000273},{"x":-0.9999979999998914,"y":0.8999982000000273}]} />
<silkscreenpath route={[{"x":-1.0160000000000764,"y":0.2540000000001328},{"x":-1.0160000000000764,"y":0.8999982000000273}]} />
<silkscreenpath route={[{"x":-1.0160000000000764,"y":-0.2539999999999054},{"x":-1.0160000000000764,"y":-0.8999981999999136}]} />
<silkscreenpath route={[{"x":-1.0160000000000764,"y":-0.2539999999999054},{"x":-1.1956051224215116,"y":-0.17960512242132154},{"x":-1.2699999999999818,"y":1.1368683772161603e-13},{"x":-1.1956051224215116,"y":0.1796051224215489},{"x":-1.0160000000000764,"y":0.2540000000001328}]} />
<silkscreentext text="{NAME}" pcbX="-0.026162mm" pcbY="2.803908mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.3048619999998436,"y":2.053908000000092},{"x":1.2525380000000723,"y":2.053908000000092},{"x":1.2525380000000723,"y":-2.2306919999999764},{"x":-1.3048619999998436,"y":-2.2306919999999764},{"x":-1.3048619999998436,"y":2.053908000000092}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C554633.obj?uuid=714a6271b466408e99a25b85bfe66811",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C554633.step?uuid=714a6271b466408e99a25b85bfe66811",
        pcbRotationOffset: 90,
        modelOriginPosition: { x: 0.000012699999842880061, y: 0, z: -0.149083 },
      }}
      {...props}
    />
  )
}