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/resonator.md

# `<resonator />`

Provides a stable frequency reference for circuits, often used in clock or timing applications.

## Example

```tsx
export default () => (
  <board width="10mm" height="10mm">
    <resonator
      name="X1"
      frequency="16MHz"
      loadCapacitance="5pF"
      footprint="hc49"
    />
  </board>
)
```

## Props

Commonly used: `frequency`, `loadCapacitance`, `pinVariant`, `name`, `footprint`, `connections`

## References

- Props: [ResonatorProps](https://github.com/tscircuit/props#resonatorprops-resonator)
- Source: [lib/components/resonator.ts](https://github.com/tscircuit/props/blob/main/lib/components/resonator.ts)
- Local docs: [docs/docs/elements/resonator.mdx](../docs/docs/elements/resonator.mdx)