tinsangbeeping/test_0609_1

This code models a small 10mm x 10mm PCB with a 1kΩ resistor (R1) and a 1000pF capacitor (C1) connected to form a simple RC circuit.

Version
0.0.1
License
unset
Stars
0

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
import { Switch_deb_led } from "../subcircuits/Switch_deb_led"

export default () => (
  <board width="50mm" height="50mm">
    {/* // editorSchX={342} */}
    {/* // editorSchY={194} */}
    <Switch_deb_led
      name="Switch_deb_led1"
      schX={17.1}
      schY={9.7}
      schRotation="90deg"
    />
    {/* // editorSchX={170} */}
    {/* // editorSchY={172} */}
    <chip
      name="U1"
      manufacturerPartNumber="ATMEGA328P"
      schX={8.5}
      schY={8.6}
      schRotation="0deg"
    />
    <trace from=".U1 > .pin5" to=".Switch_deb_led1 > .power" />
    <trace from=".U1 > .pin8" to=".Switch_deb_led1 > .GND" />
  </board>
)