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

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
export default () => (
  <board width="10mm" height="10mm">
    <testpoint
      name="TP1"
      pcbX={-2}
      footprintVariant="pad"
    />
    <testpoint
      name="TP2"
      pcbX={2}
      footprintVariant="pad"
    />
    <trace from="TP1.pin1" to="TP2.pin1" />
  </board>
)