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
.agents/skills/tscircuit/elements/breakoutpoint.md
# `<breakoutpoint />`
A `<breakoutpoint />` defines an explicit location where a connection should exit a [`<breakout />`](./breakout.md). Use it when you want to control exactly where a net escapes the breakout region instead of relying on auto-generated breakout points.
## Example
```tsx
export default () => (
<board width="20mm" height="20mm">
<breakout>
<resistor name="R1" resistance="1k" footprint="0402" pcbX={0} pcbY={0} />
<breakoutpoint connection="R1.1" pcbX={5} pcbY={5} />
</breakout>
</board>
)
```
## Props
Commonly used: `connection` (the pin selector that should exit at this point), `pcbX`, `pcbY`
## References
- Props: [BreakoutPointProps](https://github.com/tscircuit/props#breakoutpointprops-breakoutpoint)
- Source: [lib/components/breakout-point.ts](https://github.com/tscircuit/props/blob/main/lib/components/breakout-point.ts)
- Related: [`<breakout />`](./breakout.md)
- Docs: https://docs.tscircuit.com/elements/breakoutpoint