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

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

const pinLabels = {
  pin1: ["C"],
  pin2: ["A"]
} as const

export const ESD5Z5V0 = (props: DiodeProps<"C" | "A">) => {
  return (
    <diode
      variant="tvs"
      pinLabels={pinLabels}
      supplierPartNumbers={{
  "jlcpcb": [
    "C502546"
  ]
}}
      manufacturerPartNumber="ESD5Z5V0"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} points={[{x: "-1.016mm", y: "0.2463038mm"}, {x: "-0.4064mm", y: "0.2463038mm"}, {x: "-0.4064mm", y: "-0.2362962mm"}, {x: "-1.016mm", y: "-0.2362962mm"}]} shape="polygon" />
<smtpad portHints={["pin2"]} points={[{x: "0.4064mm", y: "0.2362962mm"}, {x: "1.016mm", y: "0.2362962mm"}, {x: "1.016mm", y: "-0.2463038mm"}, {x: "0.4064mm", y: "-0.2463038mm"}]} shape="polygon" />
<silkscreenpath route={[{"x":0.6602730000000037,"y":-0.3261614000000037},{"x":0.6602730000000037,"y":-0.43185080000000653},{"x":-0.6605270000000019,"y":-0.43185080000000653},{"x":-0.6603999999999814,"y":-0.43180000000000973}]} />
<silkscreenpath route={[{"x":-0.6603999999999814,"y":0.4317999999999955},{"x":-0.6603999999999814,"y":0.4317999999999955},{"x":0.6604000000000099,"y":0.4317999999999955},{"x":0.6604000000000099,"y":0.3301999999999907}]} />
<silkscreentext text="{NAME}" pcbX="-0.000127mm" pcbY="1.4866386mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-1.2661269999999973,"y":0.736638599999992},{"x":1.2658730000000133,"y":0.736638599999992},{"x":1.2658730000000133,"y":-0.728561400000018},{"x":-1.2661269999999973,"y":-0.728561400000018},{"x":-1.2661269999999973,"y":0.736638599999992}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C502546.obj?uuid=84cf6c2b182949329e473e9158b1fb00",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C502546.step?uuid=84cf6c2b182949329e473e9158b1fb00",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: -0.0040386000000012245, z: 0 },
      }}
      {...props}
    />
  )
}