File tree Expand file tree Collapse file tree 1 file changed +16
-12
lines changed
docs/building-electronics Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -86,15 +86,17 @@ pins are called "surface-mount" chips.
8686<CircuitPreview defaultView = " pcb" code = { `
8787
8888export default () => (
89- <footprint>
90- <platedhole
91- shape="circle"
92- x="5mm"
93- y="2.4mm"
94- holeDiameter="0.25mm"
95- outerDiameter="0.35mm"
96- />
97- </footprint>
89+ <board width="2mm" height="2mm">
90+ <footprint>
91+ <platedhole
92+ shape="circle"
93+ x="5mm"
94+ y="2.4mm"
95+ holeDiameter="0.25mm"
96+ outerDiameter="0.35mm"
97+ />
98+ </footprint>
99+ </board>
98100)
99101
100102` } />
@@ -108,9 +110,11 @@ can be very helpful for mounting the printed circuit board.
108110<CircuitPreview defaultView = " pcb" code = { `
109111
110112export default () => (
111- <footprint>
112- <hole diameter="1mm" />
113- </footprint>
113+ <board width="2mm" height="2mm">
114+ <footprint>
115+ <hole diameter="1mm" />
116+ </footprint>
117+ </board>
114118)
115119
116120` } />
You can’t perform that action at this time.
0 commit comments