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/testpoint.md
# `<testpoint />`
A `<testpoint />` is a designated location on a PCB that provides easy access for testing, debugging, and measuring electrical signals. Test points are essential for troubleshooting circuits and verifying proper operation during development and manufacturing.
## Example
```tsx
export default () => (
<testpoint
name="TP1"
footprintVariant="pad"
padShape="circle"
padDiameter="1mm"
/>
)
```
## Props
Commonly used: `footprintVariant`, `padShape`, `padDiameter`, `holeDiameter`, `width`, `height`, `connections`, `name`
## References
- Props: [TestpointProps](https://github.com/tscircuit/props#testpointprops-testpoint)
- Source: [lib/components/testpoint.ts](https://github.com/tscircuit/props/blob/main/lib/components/testpoint.ts)
- Local docs: [docs/docs/elements/testpoint.mdx](../docs/docs/elements/testpoint.mdx)