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

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

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

export const Q13FC13500004 = (props: Omit<CrystalProps, "frequency" | "loadCapacitance">) => {
  return (
    <crystal
      frequency="32.768kHz"
      loadCapacitance="12pF"
      supplierPartNumbers={{
  "jlcpcb": [
    "C32346"
  ]
}}
      manufacturerPartNumber="Q13FC13500004"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} pcbX="-1.250061mm" pcbY="0mm" width="0.999998mm" height="1.7999964mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="1.250061mm" pcbY="0mm" width="0.999998mm" height="1.7999964mm" shape="rect" />
<silkscreenpath route={[{"x":-0.5079999999999956,"y":0.7621269999999924},{"x":0.5079999999999956,"y":0.7621269999999924}]} />
<silkscreenpath route={[{"x":0.5079999999999956,"y":-0.7618730000000085},{"x":-0.5079999999999956,"y":-0.7618730000000085}]} />
<silkscreentext text="{NAME}" pcbX="-0.012065mm" pcbY="1.91186mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-2.027365000000003,"y":1.1618600000000043},{"x":2.0032349999999894,"y":1.1618600000000043},{"x":2.0032349999999894,"y":-1.1669399999999968},{"x":-2.027365000000003,"y":-1.1669399999999968},{"x":-2.027365000000003,"y":1.1618600000000043}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C32346.obj?uuid=fd4574cdfbe94d00a9458103bda2310c",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C32346.step?uuid=fd4574cdfbe94d00a9458103bda2310c",
        pcbRotationOffset: 0,
        modelOriginPosition: { x: 0, y: -0.0001396999999911941, z: 0 },
      }}
      {...props}
    />
  )
}