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
dist/index.js
PCB
Schematic
var index = () => /*#__PURE__*/React.createElement("board", {
width: "10mm",
height: "10mm"
}, /*#__PURE__*/React.createElement("resistor", {
resistance: "1k",
footprint: "0402",
name: "R1"
}), /*#__PURE__*/React.createElement("capacitor", {
capacitance: "1000pF",
footprint: "0402",
name: "C1"
}), /*#__PURE__*/React.createElement("trace", {
from: ".R1 > .pin1",
to: ".C1 > .pin1"
}));
export { index as default };