ass/untitled-package-0

A 10mm x 10mm PCB with a 1kΩ resistor and a 1000pF capacitor connected in series.

Usage: To import and use this component in a project: 1. Import the component: ```tsx import { SomeComponent } from "@tsci/AUTHOR.PACKAGE_NAME" ``` 2. Use the component in a tscircuit board: ```tsx <board> <SomeComponent name="U1" // Optional name attribute // Additional layout props can be added /> </board> ``` Key details: - Supports standard tscircuit layout props - Predefined footprint: "soic6" - Predefined pin labels (VCC, DISCH, THRES, CTRL, GND, TRIG) Tracing/connection example: ```tsx <trace from={sel.U1.VCC} to="net.VCC" /> ```

Version
0.0.1
License
unset
Stars
0

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
export default () => (
  <board width="10mm" height="10mm">
    <resistor
      resistance="1k"
      footprint="0402"
      name="R1"
    />
    <capacitor
      capacitance="1000pF"
      footprint="0402"
      name="C1"
    />
    <trace from=".R1 > .pin1" to=".C1 > .pin1" />
  </board>
)