ShiboSoftwareDev/solar-battery-charger

This code defines various surface-mount and through-hole electronic components (like diodes, voltage regulators, and ICs) with detailed footprints, 3D models, and pin configurations for PCB design.

Version
1.0.2
License
unset
Stars
0

imports/LT1129CS8_3_3_PBF.tsx

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

const pinLabels = {
  pin1: ["OUTPUT"],
  pin2: ["SENSE"],
  pin3: ["GND1"],
  pin4: ["NC"],
  pin5: ["SHDN"],
  pin6: ["GND2"],
  pin7: ["GND3"],
  pin8: ["VIN"]
} as const

export const LT1129CS8_3_3_PBF = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C661687"
  ]
}}
      manufacturerPartNumber="LT1129CS8_3_3_PBF"
      footprint={<footprint>
        <smtpad portHints={["pin3"]} pcbX="0.635mm" pcbY="-2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="1.905mm" pcbY="-2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="-0.635mm" pcbY="-2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-1.905mm" pcbY="-2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin5"]} pcbX="1.905mm" pcbY="2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin6"]} pcbX="0.635mm" pcbY="2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin7"]} pcbX="-0.635mm" pcbY="2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin8"]} pcbX="-1.905mm" pcbY="2.450084mm" width="0.5999988mm" height="1.7999964mm" shape="rect" />
<silkscreenpath route={[{"x":-2.5400000000000773,"y":1.9049999999999727},{"x":-2.5400000000000773,"y":-1.9049999999999727}]} />
<silkscreenpath route={[{"x":2.5399999999999636,"y":1.9049999999999727},{"x":2.5399999999999636,"y":-1.9049999999999727}]} />
<silkscreentext text="{NAME}" pcbX="-0.4572mm" pcbY="4.3528mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-3.704400000000078,"y":3.6027999999998883},{"x":2.7899999999999636,"y":3.6027999999998883},{"x":2.7899999999999636,"y":-3.704399999999964},{"x":-3.704400000000078,"y":-3.704399999999964},{"x":-3.704400000000078,"y":3.6027999999998883}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C661687.obj?uuid=e3b253c99fe6456e9f120c6035859cd8",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C661687.step?uuid=e3b253c99fe6456e9f120c6035859cd8",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: 0, z: -0.85 },
      }}
      {...props}
    />
  )
}