MrPicklePinosaur/tscircuit_demo
This circuit hardware provides a USB-to-multi-protocol (I2C/SPI/UART) bridge using an FT232H chip, powered via a 3.3V regulator, with USB-C input, ESD protection, status LEDs, a STEMMA QT connector, and various support components.
Usage: To use this component in a project: 1. Import the specific component: ```tsx import { AMS1117_3_3 } from "@tsci/MrPicklePinosaur.tscircuit_demo/imports/AMS1117_3_3" ``` 2. Use the component in a board layout: ```tsx <board> <AMS1117_3_3 name="U2" /> </board> ``` Key details: - The component has predefined pin labels: - pin1: GND - pin2: VOUT1 - pin3: VIN - pin4: VOUT2 - Supports common layout props - Has a specific SMT footprint - Includes JLCPCB supplier part number (C6186)
- Version
- 1.0.0
- License
- unset
- Stars
- 0
imports/AMS1117_3_3.tsx
import type { ChipProps } from "@tscircuit/props"
const pinLabels = {
pin1: ["GND"],
pin2: ["VOUT1"],
pin3: ["VIN"],
pin4: ["VOUT2"]
} as const
export const AMS1117_3_3 = (props: ChipProps<typeof pinLabels>) => {
return (
<chip
pinLabels={pinLabels}
supplierPartNumbers={{
"jlcpcb": [
"C6186"
]
}}
manufacturerPartNumber="AMS1117_3_3"
footprint={<footprint>
<smtpad portHints={["pin1"]} pcbX="2.929959849999932mm" pcbY="-2.2999699999999166mm" width="2.4999949999999997mm" height="1.0999978mm" shape="rect" />
<smtpad portHints={["pin2"]} pcbX="2.929959849999932mm" pcbY="0mm" width="2.4999949999999997mm" height="1.0999978mm" shape="rect" />
<smtpad portHints={["pin3"]} pcbX="2.929959849999932mm" pcbY="2.2999700000000303mm" width="2.4999949999999997mm" height="1.0999978mm" shape="rect" />
<smtpad portHints={["pin4"]} pcbX="-3.009957149999991mm" pcbY="0mm" width="2.3400004mm" height="3.5999928mm" shape="rect" />
<silkscreenpath route={[{"x":-1.6114077499998984,"y":-3.3262061999998878},{"x":-1.6114077499998984,"y":3.3262062000000014},{"x":1.3313854499999707,"y":3.3262062000000014},{"x":1.3313854499999707,"y":-3.3262061999998878},{"x":-1.6114077499998984,"y":-3.3262061999998878}]} />
</footprint>}
cadModel={{
objUrl: "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=e80246a9471445bfb635be848806a22e&pn=C6186",
rotationOffset: { x: 0, y: 0, z: 180 },
positionOffset: { x: 0, y: 0, z: 0 },
}}
{...props}
/>
)
}