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/mountedboard.md
# `<mountedboard />`
Place one board as a mounted child assembly of another.
## Example
```tsx
export default () => (
<board width="40mm" height="30mm">
<mountedboard name="MB1" boardToBoardDistance="6mm" mountOrientation="faceUp">
<board width="20mm" height="12mm">
<chip name="U1" footprint="soic8" />
</board>
</mountedboard>
</board>
)
```
## Props
Commonly used: `boardToBoardDistance`, `mountOrientation`, `width`, `height`, `children`
## References
- Props: [MountedBoardProps](https://github.com/tscircuit/props#mountedboardprops-mountedboard)
- Source: [lib/components/mountedboard.ts](https://github.com/tscircuit/props/blob/main/lib/components/mountedboard.ts)