seveibar/two-test-points
A 10mm x 10mm circuit board with two test points connected by a trace.
Usage: To import and use the "@tsci/seveibar.two-test-points" component: 1. Import the component: ```tsx import TwoTestPoints from "@tsci/seveibar.two-test-points" ``` 2. Use the component in a circuit design: ```tsx <board width="20mm" height="20mm"> <TwoTestPoints /> </board> ``` The component adds two test points (TP1 and TP2) with a trace connecting their pins. You can customize placement and add additional circuit elements as needed.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
dist/index.cjs
PCB
Schematic
'use strict';
var jsxRuntime = require('react/jsx-runtime');
var index = () => (jsxRuntime.jsxs("board", { width: "10mm", height: "10mm", children: [jsxRuntime.jsx("testpoint", { name: "TP1", pcbX: -2, footprintVariant: "pad" }), jsxRuntime.jsx("testpoint", { name: "TP2", pcbX: 2, footprintVariant: "pad" }), jsxRuntime.jsx("trace", { from: "TP1.pin1", to: "TP2.pin1" })] }));
module.exports = index;