seveibar/single-layer-td

A single-chip DIP-16 package circuit connecting pins 1–8 to corresponding internal pins 9–16.

Usage: To use the "@tsci/seveibar.single-layer-td" component: 1. Import the component: ```tsx import SingleLayerTd from "@tsci/seveibar.single-layer-td" ``` 2. Use in a tscircuit project: ```tsx export default () => ( <board layers={1} autorouter="laser_prefab"> <SingleLayerTd /> </board> ) ``` Key characteristics: - Uses a single board layer - Employs "laser_prefab" autorouter - Includes a chip with DIP16 footprint - Predefined pin connections for U1 from pin9 to pin16

Version
0.0.1
License
unset
Stars
0

dist/index.js

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

var index = () => (jsx("board", { layers: 1, autorouter: "auto_jumper", width: "18mm", autorouterEffortLevel: "2x", children: jsx("chip", { footprint: "dip16_w14", name: "U1", connections: {
            pin1: "U1.pin9",
            pin2: "U1.pin10",
            pin3: "U1.pin11",
            pin4: "U1.pin12",
            pin5: "U1.pin13",
            pin6: "U1.pin14",
            pin7: "U1.pin15",
            pin8: "U1.pin16"
        }, doNotPlace: true }) }));

export { index as default };