techmannih/usbc-charger

This code defines a detailed electronic hardware design for an 85-265VAC to USB-C PD 18W wall charger, including the schematic layout and physical component placements such as connectors, filtering inductors, capacitors, resistors, protection diodes, and an isolated power module, all integrated with 3D models and mechanical enclosures.

Version
1.0.7
License
unset
Stars
0

imports/RVT1E101M0607.tsx

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

export const RVT1E101M0607 = (props: Omit<CapacitorProps, "capacitance">) => {
  const { name = "C1", ...restProps } = props

  return (
    <capacitor
      name={name}
      capacitance="100uF"
polarized
      supplierPartNumbers={{
  "jlcpcb": [
    "C72477"
  ]
}}
      manufacturerPartNumber="RVT1E101M0607"
      footprint={<footprint>
        <smtpad portHints={["pin1"]} pcbX="-2.670048mm" pcbY="0mm" width="3.499993mm" height="1.1999976mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="2.670048mm" pcbY="0mm" width="3.499993mm" height="1.1999976mm" shape="rect" />
<silkscreenpath route={[{"x":3.3556194000000232,"y":-0.7392669999999271},{"x":3.3756599999999253,"y":-3.3756599999999253},{"x":-1.981200000000058,"y":-3.3756599999999253},{"x":-3.375660000000039,"y":-1.981200000000058},{"x":-3.3622996000000285,"y":-0.6857999999998583}]} />
<silkscreenpath route={[{"x":3.369487799999888,"y":0.7076948000001266},{"x":3.376168000000007,"y":3.376168000000007},{"x":-1.9800316000000748,"y":3.376168000000007},{"x":-3.376168000000007,"y":1.9800315999999611},{"x":-3.376168000000007,"y":0.685799999999972}]} />
<silkscreentext text="{NAME}" pcbX="0mm" pcbY="4.3782mm" anchorAlignment="center" fontSize="1mm" />
<courtyardoutline outline={[{"x":-4.669599999999946,"y":3.6282000000001062},{"x":4.6696000000000595,"y":3.6282000000001062},{"x":4.6696000000000595,"y":-3.6281999999999925},{"x":-4.669599999999946,"y":-3.6281999999999925},{"x":-4.669599999999946,"y":3.6282000000001062}]} />
      </footprint>}
      cadModel={{
        objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C72477.obj?uuid=6cb1ec5759f6404189e20b90556867d6",
        stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C72477.step?uuid=6cb1ec5759f6404189e20b90556867d6",
        pcbRotationOffset: 180,
        modelOriginPosition: { x: 0, y: -0.000012700000070253736, z: -0.05 },
      }}
      {...restProps}
    />
  )
}