hrithik18k/Chatting-Device
This code defines React components representing surface-mount voltage regulator and resistor chips with specified pin layouts, footprints, and 3D CAD models for electronic hardware design.
- Version
- 1.0.0
- License
- unset
- Stars
- 0
imports/RVT1A471M0607.tsx
import type { CapacitorProps } from "@tscircuit/props"
export const RVT1A471M0607 = (props: Omit<CapacitorProps, "capacitance">) => {
const { name = "C1", ...restProps } = props
return (
<capacitor
name={name}
capacitance="470uF"
supplierPartNumbers={{
"jlcpcb": [
"C335982"
]
}}
manufacturerPartNumber="RVT1A471M0607"
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/C335982.obj?uuid=6cb1ec5759f6404189e20b90556867d6",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C335982.step?uuid=6cb1ec5759f6404189e20b90556867d6",
pcbRotationOffset: 180,
modelOriginPosition: { x: 0, y: -0.000012700000070253736, z: -0.05 },
}}
{...restProps}
/>
)
}