ShiboSoftwareDev/t113-s3-linux-computer-p9

The code defines a PCB subcircuit for a buck converter module featuring a TMI3112H IC, FTC252010S power switch, and associated passive components like capacitors and resistors for voltage regulation and feedback control.

Version
0.1.4
License
unset
Stars
0

imports/SZYY1615RGB_A_4pin.tsx

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

const pinLabels = {
  pin1: ["A1"],
  pin2: ["A3"],
  pin3: ["A2"],
  pin4: ["K"]
} as const

export const SZYY1615RGB_A_4pin = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C3029072"
  ]
}}
      manufacturerPartNumber="SZYY1615RGB_A_4pin"
      footprint={<footprint>
        <smtpad portHints={["pin4"]} pcbX="-0.7499604mm" pcbY="-0.449961mm" width="0.7999984mm" height="0.5999988mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-0.7499604mm" pcbY="0.449961mm" width="0.7999984mm" height="0.5999988mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="0.7499604mm" pcbY="-0.449961mm" width="0.7999984mm" height="0.5999988mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0.7499604mm" pcbY="0.449961mm" width="0.7999984mm" height="0.5999988mm" shape="rect" />
<silkscreenpath route={[{"x":-0.8890000000001237,"y":1.0160762000000432},{"x":0.8889999999998963,"y":1.0160762000000432}]} />
<silkscreenpath route={[{"x":-0.8890000000001237,"y":-1.0159238000001096},{"x":0.8889999999998963,"y":-1.0159238000001096}]} />
<silkscreentext text="{NAME}" pcbX="0.0127508mm" pcbY="2.0161016mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.3929492000000891,"y":1.2661015999999563},{"x":1.418450799999846,"y":1.2661015999999563},{"x":1.418450799999846,"y":-1.2658983999999691},{"x":-1.3929492000000891,"y":-1.2658983999999691},{"x":-1.3929492000000891,"y":1.2661015999999563}]} />
      </footprint>}
      
      {...props}
    />
  )
}