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

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

const pinLabels = {
  pin1: ["AN"],
  pin2: ["CAT"],
  pin3: ["EM"],
  pin4: ["COL"]
} as const

export const PS2503L_1_A = (props: ChipProps<typeof pinLabels>) => {
  return (
    <chip
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C145637"
  ]
}}
      manufacturerPartNumber="PS2503L_1_A"
      footprint={<footprint>
        <smtpad portHints={["pin4"]} pcbX="4.549902mm" pcbY="1.27mm" width="1.999996mm" height="1.499997mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="4.549902mm" pcbY="-1.27mm" width="1.999996mm" height="1.499997mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="-4.549902mm" pcbY="-1.27mm" width="1.999996mm" height="1.499997mm" shape="rect" />
<smtpad portHints={["pin1"]} pcbX="-4.549902mm" pcbY="1.27mm" width="1.999996mm" height="1.499997mm" shape="rect" />
<silkscreenpath route={[{"x":-0.6215634000000136,"y":2.3000207999999702},{"x":-3.250006199999916,"y":2.3000207999999702}]} />
<silkscreenpath route={[{"x":3.249980800000003,"y":2.3000207999999702},{"x":3.249980800000003,"y":-2.3000207999998565}]} />
<silkscreenpath route={[{"x":0.5214366000000155,"y":2.3000207999999702},{"x":3.249980800000003,"y":2.3000207999999702}]} />
<silkscreenpath route={[{"x":-3.250006199999916,"y":-2.3000207999998565},{"x":3.249980800000003,"y":-2.3000207999998565}]} />
<silkscreenpath route={[{"x":-3.250006199999916,"y":2.3000207999999702},{"x":-3.250006199999916,"y":-2.3000207999998565}]} />
<silkscreenpath route={[{"x":-2.6753820000000132,"y":1.8343880000001036},{"x":-2.6792593683750283,"y":1.804936463219633},{"x":-2.6906272372525564,"y":1.7774919999999383},{"x":-2.7087109051552716,"y":1.7539249051552588},{"x":-2.732277999999951,"y":1.7358412372525436},{"x":-2.7597224632197594,"y":1.7244733683750155},{"x":-2.7891740000000027,"y":1.7205960000001141},{"x":-2.8186255367803597,"y":1.7244733683750155},{"x":-2.8460700000000543,"y":1.7358412372525436},{"x":-2.8696370948448475,"y":1.7539249051552588},{"x":-2.8877207627475627,"y":1.7774919999999383},{"x":-2.899088631625091,"y":1.804936463219633},{"x":-2.902966000000106,"y":1.8343880000001036},{"x":-2.899088631625091,"y":1.8638395367803469},{"x":-2.8877207627475627,"y":1.8912840000000415},{"x":-2.8696370948448475,"y":1.9148510948449484},{"x":-2.8460700000000543,"y":1.93293476274755},{"x":-2.8186255367803597,"y":1.944302631625078},{"x":-2.7891740000000027,"y":1.9481799999999794},{"x":-2.7597224632197594,"y":1.944302631625078},{"x":-2.732277999999951,"y":1.93293476274755},{"x":-2.7087109051552716,"y":1.9148510948449484},{"x":-2.6906272372525564,"y":1.8912840000000415},{"x":-2.6792593683750283,"y":1.8638395367803469},{"x":-2.6753820000000132,"y":1.8343880000001036}]} />
<silkscreenpath route={[{"x":-0.6215634000000136,"y":2.3000207999999702},{"x":-0.5780605528300384,"y":2.5187243815965985},{"x":-0.454174925448001,"y":2.704132325447972},{"x":-0.2687669815965137,"y":2.8280179528301232},{"x":-0.05006339999999909,"y":2.871520799999871},{"x":0.1686401815966292,"y":2.8280179528301232},{"x":0.3540481254481165,"y":2.704132325447972},{"x":0.4779337528302676,"y":2.5187243815965985},{"x":0.5214366000000155,"y":2.3000207999999702}]} />
<silkscreentext text="{NAME}" pcbX="-0.0127mm" pcbY="3.3368mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-5.812599999999975,"y":2.5867999999999256},{"x":5.787199999999984,"y":2.5867999999999256},{"x":5.787199999999984,"y":-2.5359999999999445},{"x":-5.812599999999975,"y":-2.5359999999999445},{"x":-5.812599999999975,"y":2.5867999999999256}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C145637.obj?uuid=7e4e9abe64c44608bce458c9c0ed7f56",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C145637.step?uuid=7e4e9abe64c44608bce458c9c0ed7f56",
        pcbRotationOffset: 270,
        modelOriginPosition: { x: 0, y: 0, z: -1.85 },
      }}
      {...props}
    />
  )
}