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/SSSS213202.tsx

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

const pinLabels = {
  pin1: ["pin1"],
  pin2: ["pin2"],
  pin3: ["pin3"],
  pin4: ["pin4"],
  pin5: ["pin5"],
  pin6: ["pin6"]
} as const

export const SSSS213202 = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C115375"
  ]
}}
      manufacturerPartNumber="SSSS213202"
      footprint={<footprint>
        <smtpad portHints={["pin4"]} pcbX="-2.499995mm" pcbY="-1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<smtpad portHints={["pin5"]} pcbX="0mm" pcbY="-1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<smtpad portHints={["pin6"]} pcbX="2.499995mm" pcbY="-1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="2.499995mm" pcbY="1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0mm" pcbY="1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-2.499995mm" pcbY="1.999869mm" width="1.199896mm" height="1.524mm" shape="rect" />
<silkscreenpath route={[{"x":-3.9999919999999634,"y":-1.798700999999994},{"x":-3.9999919999999634,"y":1.8014949999999885}]} />
<silkscreenpath route={[{"x":3.99999200000002,"y":1.8014949999999885},{"x":3.99999200000002,"y":0.001396999999997206}]} />
<silkscreenpath route={[{"x":3.99999200000002,"y":-1.798700999999994},{"x":3.99999200000002,"y":0.20129499999998757}]} />
<silkscreenpath route={[{"x":-3.9999919999999634,"y":1.8014949999999885},{"x":-3.370580000000018,"y":1.8014949999999885}]} />
<silkscreenpath route={[{"x":-1.709419999999966,"y":1.8014949999999885},{"x":-0.8305799999999977,"y":1.8014949999999885}]} />
<silkscreenpath route={[{"x":0.8305799999999977,"y":1.8014949999999885},{"x":1.7094200000000228,"y":1.8014949999999885}]} />
<silkscreenpath route={[{"x":3.3705799999999613,"y":1.8014949999999885},{"x":3.99999200000002,"y":1.8014949999999885}]} />
<silkscreenpath route={[{"x":-3.9999919999999634,"y":-1.798700999999994},{"x":-3.370580000000018,"y":-1.798700999999994}]} />
<silkscreenpath route={[{"x":-1.709419999999966,"y":-1.798700999999994},{"x":-0.8305799999999977,"y":-1.798700999999994}]} />
<silkscreenpath route={[{"x":0.8305799999999977,"y":-1.798700999999994},{"x":1.7094200000000228,"y":-1.798700999999994}]} />
<silkscreenpath route={[{"x":3.3705799999999613,"y":-1.798700999999994},{"x":3.99999200000002,"y":-1.798700999999994}]} />
<silkscreentext text="{NAME}" pcbX="-0.0254mm" pcbY="3.769997mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-4.542599999999993,"y":3.0199969999999894},{"x":4.491799999999955,"y":3.0199969999999894},{"x":4.491799999999955,"y":-2.9918030000000044},{"x":-4.542599999999993,"y":-2.9918030000000044},{"x":-4.542599999999993,"y":3.0199969999999894}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C115375.obj?uuid=d4bdc8571e1b4f2abf7268a2754d6b8d",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C115375.step?uuid=d4bdc8571e1b4f2abf7268a2754d6b8d",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -0.000012700000013410317, y: 0, z: -3.8 },
      }}
      {...props}
    />
  )
}