biscuitboard 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -0
- package/dist/npm.cjs +610 -50
- package/dist/npm.cjs.map +1 -1
- package/dist/npm.d.cts +87 -1
- package/dist/npm.d.ts +87 -1
- package/dist/npm.js +582 -50
- package/dist/npm.js.map +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -71,6 +71,41 @@ denser [`examples/rp2040.tsx`](./examples/rp2040.tsx) example uses the RP2040
|
|
|
71
71
|
module from `@tsci/seveibar.common` and is also checked in with solved PCB and
|
|
72
72
|
schematic snapshots.
|
|
73
73
|
|
|
74
|
+
## Pre-routed breadboard clad with 0.8 mm vias
|
|
75
|
+
|
|
76
|
+
[`BreadboardClad08mmVias`](./lib/breadboard-clad-0.8mm-vias.tsx) retains the
|
|
77
|
+
75 mm x 55 mm breadboard-clad outline and 10 x 21 socket grid while adding the
|
|
78
|
+
standard breadboard connectivity in copper. For every numbered column, A-E
|
|
79
|
+
form one five-socket terminal strip and F-J form the other. Each strip reaches
|
|
80
|
+
a trace-only breakout on both its inner and outer side.
|
|
81
|
+
|
|
82
|
+
The 50 vias are separate from the breadboard strips and sit in four
|
|
83
|
+
two-via-wide L-shaped corner fields. Three corners have five columns along the
|
|
84
|
+
board's long side; the top-right has a sixth pitch-aligned column beneath the
|
|
85
|
+
second mounting hole, while the short arms remain beside the mounting holes.
|
|
86
|
+
In every corner, the four vias in the two innermost long-side columns shift one
|
|
87
|
+
3 mm pitch toward the top or bottom edge, extending the edge-hugging row without
|
|
88
|
+
changing the grid pitch.
|
|
89
|
+
Every via has its own 0.15 mm top- and bottom-copper breakout: the top trace
|
|
90
|
+
reaches one inward open-area edge and the bottom trace reaches the opposite
|
|
91
|
+
inward open-area edge. Breakouts from boundary vias take direct paths; recessed
|
|
92
|
+
breakouts weave through the 3 mm via gaps until every endpoint sits 1 mm beyond
|
|
93
|
+
the inward edge of the L-shaped via grid. The endpoints remain in the open space
|
|
94
|
+
between corner fields, where connectors, components, and later copper fills can
|
|
95
|
+
sit. On the bottom layer, the shifted H2 escape and both short-arm escapes take
|
|
96
|
+
staggered lanes behind the outer via row before turning inward, so they do not
|
|
97
|
+
wall off another via. No via breakout is collected at a board edge or routed
|
|
98
|
+
toward a mounting hole. The vias use 0.8 mm finished holes and 0.9 mm pads,
|
|
99
|
+
leaving 2.1 mm between pad edges and 2.2 mm between drill edges. The bare routed
|
|
100
|
+
preview and checked-in PCB snapshot are in
|
|
101
|
+
[`examples/breadboard-clad-0.8mm-vias.tsx`](./examples/breadboard-clad-0.8mm-vias.tsx).
|
|
102
|
+
|
|
103
|
+
```sh
|
|
104
|
+
bun run build:breadboard-clad-0.8mm-vias
|
|
105
|
+
bun run snapshot:breadboard-clad-0.8mm-vias
|
|
106
|
+
bun test tests/breadboard-clad-0.8mm-vias.test.tsx
|
|
107
|
+
```
|
|
108
|
+
|
|
74
109
|
## 40 mm square clad
|
|
75
110
|
|
|
76
111
|
[`Clad40x40`](./lib/Clad40x40.tsx) is a two-layer 40 mm x 40 mm clad without
|