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/opamp.md
# `<opamp />`
Operational amplifier component with standard five-pin aliases.
## Example
```tsx
export default () => (
<board width="24mm" height="16mm">
<opamp
name="U1"
footprint="soic8"
connections={{
non_inverting_input: "net.IN+",
inverting_input: "net.IN-",
output: "net.OUT",
}}
/>
</board>
)
```
## Props
Commonly used: `connections`, `name`, `footprint`
## References
- Props: [OpAmpProps](https://github.com/tscircuit/props#opampprops-opamp)
- Source: [lib/components/opamp.ts](https://github.com/tscircuit/props/blob/main/lib/components/opamp.ts)