techmannih/duplicate-NPTH
A 50mm x 50mm PCB layout featuring two mounting holes, a 10kΩ resistor, and a 100nF capacitor positioned at specific coordinates.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
index.tsx
PCB
Schematic
export default () => (
<board width="50mm" height="50mm">
<hole pcbX={-20} pcbY={-20} diameter="3.2mm" />
<hole pcbX={20} pcbY={20} diameter="3.2mm" />
<resistor name="R1" resistance="10k" pcbX={0} pcbY={0} footprint="0402" />
<capacitor name="C1" capacitance="100nF" pcbX={5} pcbY={0} footprint="0402" />
</board>
)