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

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

export const FTC252010S1R0MBCA = (
  props: Omit<InductorProps, "inductance" | "maxCurrentRating">,
) => {
  return (
    <inductor
      inductance="1uH"
      maxCurrentRating="4.5A"
      supplierPartNumbers={{
  "jlcpcb": [
    "C5832356"
  ]
}}
      manufacturerPartNumber="FTC252010S1R0MBCA"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} pcbX="-0.825119mm" pcbY="0mm" width="0.9500108mm" height="2.0999958mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="0.825119mm" pcbY="0mm" width="0.9500108mm" height="2.0999958mm" shape="rect" />
<silkscreenpath route={[{"x":1.2699746000000687,"y":-1.2699999999999818},{"x":-1.2700254000000086,"y":-1.2699999999999818}]} />
<silkscreenpath route={[{"x":-1.269873000000075,"y":1.2700000000000955},{"x":1.2701270000000022,"y":1.2700000000000955}]} />
<silkscreentext text="{NAME}" pcbX="-0.014351mm" pcbY="2.27mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.5597510000000057,"y":1.5200000000000955},{"x":1.531048999999939,"y":1.5200000000000955},{"x":1.531048999999939,"y":-1.5199999999999818},{"x":-1.5597510000000057,"y":-1.5199999999999818},{"x":-1.5597510000000057,"y":1.5200000000000955}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C5832356.obj?uuid=d38197eb1a90438e8c73df6d84d794a3",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C5832356.step?uuid=d38197eb1a90438e8c73df6d84d794a3",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: -0.0001142999999501626, y: 0.00004999999999999449, z: 0 },
      }}
      {...props}
    />
  )
}