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

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
export default () => (
  <board layers={1} autorouter="auto_jumper" width="18mm" autorouterEffortLevel="2x">
    <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
    />
  </board>
)