seveibar/1206_x4

This code defines a PCB footprint for an 8-pin 1206-sized resistor network with surface-mount pads arranged on both sides in a compact rectangular package.

Usage: To use the "@tsci/seveibar.1206_x4" component in a project: 1. Import the component: ```tsx import RN1 from "@tsci/seveibar.1206_x4" ``` 2. Use the component in a circuit: ```tsx <board> <RN1 name="RN1" /> </board> ``` The component represents an 8-pin 1206 resistor network with pins numbered 1-8, with 4 pins on each side. You can place and connect it like other tscircuit components using traces and net connections.

Version
0.0.2
License
unset
Stars
0

dist/index.js

PCBPCB preview for dist/index.js
SchematicSchematic preview for dist/index.js
import { jsx, jsxs } from 'react/jsx-runtime';

var index = () => (jsx("chip", { name: "RN1", pinLabels: {
        pin1: "1",
        pin2: "2",
        pin3: "3",
        pin4: "4",
        pin5: "5",
        pin6: "6",
        pin7: "7",
        pin8: "8",
    }, footprint: jsxs("footprint", { children: [jsx("smtpad", { portHints: ["pin1"], layer: "top", shape: "rect", pcbX: "-1.35mm", pcbY: "1.905mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin2"], layer: "top", shape: "rect", pcbX: "-1.35mm", pcbY: "0.635mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin3"], layer: "top", shape: "rect", pcbX: "-1.35mm", pcbY: "-0.635mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin4"], layer: "top", shape: "rect", pcbX: "-1.35mm", pcbY: "-1.905mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin5"], layer: "top", shape: "rect", pcbX: "1.35mm", pcbY: "-1.905mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin6"], layer: "top", shape: "rect", pcbX: "1.35mm", pcbY: "-0.635mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin7"], layer: "top", shape: "rect", pcbX: "1.35mm", pcbY: "0.635mm", width: "0.80mm", height: "0.50mm" }), jsx("smtpad", { portHints: ["pin8"], layer: "top", shape: "rect", pcbX: "1.35mm", pcbY: "1.905mm", width: "0.80mm", height: "0.50mm" })] }) }));

export { index as default };