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/fiducial.md
# `<fiducial />`
A reference marker used for optical alignment during automated PCB assembly.
## Example
```tsx
export default () => (
<board width="30mm" height="20mm">
<fiducial
padDiameter="1mm"
soldermaskPullback="1mm"
pcbX={-10}
pcbY={-5}
/>
<fiducial
padDiameter="1mm"
soldermaskPullback="1mm"
pcbX={10}
pcbY={5}
/>
</board>
)
```
## Props
Commonly used: `soldermaskPullback`, `padDiameter`, `name`, `footprint`, `connections`
## References
- Props: [FiducialProps](https://github.com/tscircuit/props#fiducialprops-fiducial)
- Source: [lib/components/fiducial.ts](https://github.com/tscircuit/props/blob/main/lib/components/fiducial.ts)
- Local docs: [docs/docs/elements/fiducial.mdx](../docs/docs/elements/fiducial.mdx)