ShiboSoftwareDev/mspm0g3507-usb-c-dev-board
This circuit features a USB Type-C connector with integrated resistors and passives, a USB ESD protection device, a CH340 USB-to-serial interface chip, a 3.3V regulator (AP2112K), multiple decoupling and bulk capacitors, and a Microcontroller (MSPM0G3507) with associated I2C and SPI connections, providing USB communication, power regulation, and RGB LED control.
- Version
- 1.4.1
- License
- unset
- Stars
- 0
imports/A_0402WGF3300TCE.tsx
import type { ResistorProps } from "@tscircuit/props"
export const A_0402WGF3300TCE = (props: Omit<ResistorProps, "resistance">) => {
const { name = "R1", ...restProps } = props
return (
<resistor
name={name}
resistance="330ohm"
supplierPartNumbers={{
"jlcpcb": [
"C25104"
]
}}
manufacturerPartNumber="0402WGF3300TCE"
footprint="smdpads2_p0.8656mm_pw0.5657mm_ph0.54mm"
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C25104.obj?uuid=026a4a15ab5c4a92ac0e421d6d013717",
stepUrl: "https://modelcdn.tscircuit.com/easyeda_models/assets/C25104.step?uuid=026a4a15ab5c4a92ac0e421d6d013717",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: -0.000012700000070253736, z: 0 },
}}
{...restProps}
/>
)
}