From 005c112ba9fc210f88fa82cf638108dbe0b20f26 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sat, 28 Jan 2023 20:21:09 +0000 Subject: [PATCH] Added values to the SMD capacitors on the example PCB. --- readme.md | 6 +++--- tests/PCB.scad | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index 67d7469..3e8eaef 100644 --- a/readme.md +++ b/readme.md @@ -2466,9 +2466,9 @@ PCBs and perfboard with optional components. The shape can be a rectangle with o | 1 | `smd_led(LED0603, orange)` | SMD LED 0603 orange | | 1 | `smd_led(LED0805, red)` | SMD LED 0805 red | | 1 | `smd_led(LED1206, blue)` | SMD LED 1306 blue | -| 1 | `smd_capacitor(CAP0603)` | SMD capacitor 0603 | -| 1 | `smd_capacitor(CAP0805)` | SMD capacitor 0805 | -| 1 | `smd_capacitor(CAP1206)` | SMD capacitor 1206 | +| 1 | `smd_capacitor(CAP0603)` | SMD capacitor 0603 10nF | +| 1 | `smd_capacitor(CAP0805)` | SMD capacitor 0805 100nF | +| 1 | `smd_capacitor(CAP1206)` | SMD capacitor 1206 1uF | | 1 | `smd_resistor(RES0603, 1K)` | SMD resistor 0603 1K 0.1W | | 1 | `smd_resistor(RES0805, 1K)` | SMD resistor 0805 1K 0.125W | | 1 | `smd_resistor(RES1206, 1K)` | SMD resistor 1206 1K 0.25W | diff --git a/tests/PCB.scad b/tests/PCB.scad index 4af9301..7e4ce41 100644 --- a/tests/PCB.scad +++ b/tests/PCB.scad @@ -67,9 +67,9 @@ test_pcb = ["test_pcb", "Test PCB", [ 16, 2, 90, "smd_res", RES1206, "1K"], [ 19, 2, 90, "smd_res", RES0805, "1K"], [ 22, 2, 90, "smd_res", RES0603, "1K"], - [ 25, 2, 90, "smd_cap", CAP1206, 1.5], - [ 28, 2, 90, "smd_cap", CAP0805, 1.0], - [ 31, 2, 90, "smd_cap", CAP0603, 0.7], + [ 25, 2, 90, "smd_cap", CAP1206, 1.5, "1uF"], + [ 28, 2, 90, "smd_cap", CAP0805, 1.0, "100nF"], + [ 31, 2, 90, "smd_cap", CAP0603, 0.7, "10nF"], [ 34, 3, 90, "smd_diode",DO241AC, "SS34"], [ 22, 6, -90, "smd_pot", TC33X1, "10K"], [ 16, 6, -90, "smd_sot", SOT23, "2N7000"],