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
.claude/skills/tscircuit/elements/pcbnotepath.md
# `<pcbnotepath />`
Draw complex paths and polylines on your PCB using multiple connected points.
## Example
```tsx
export default () => (
<board width="20mm" height="20mm">
<pcbnotepath
strokeWidth={0.3}
color="#ff0000"
route={[
{ x: -5, y: 0 },
{ x: 0, y: 5 },
{ x: 5, y: 0 },
]}
/>
</board>
)
```
## Props
Commonly used: `route`, `strokeWidth`, `color`, `name`, `footprint`, `connections`
## References
- Props: [PcbNotePathProps](https://github.com/tscircuit/props#pcbnotepathprops-pcbnotepath)
- Source: [lib/components/pcb-note-path.ts](https://github.com/tscircuit/props/blob/main/lib/components/pcb-note-path.ts)
- Local docs: [docs/docs/elements/pcbnotepath.mdx](../docs/docs/elements/pcbnotepath.mdx)