MustafaMulla29/auto-place
A small PCB featuring two SOIC-8 ICs interconnected with a resistor.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
index.tsx
PCB
Schematic
export default () => (
<board width="80mm" height="60mm" schAutoLayoutEnabled>
<chip name="U1" footprint="soic8" schX={6} schY={0} />
<chip name="U2" footprint="soic8" />
<resistor name="R1" resistance="1k" footprint="0402" />
<trace from="U1.pin1" to="U2.pin1" />
<trace from="U2.pin2" to="R1.pin1" />
</board>
)