diff --git a/readme.md b/readme.md index cc71ad6..169756e 100644 --- a/readme.md +++ b/readme.md @@ -2440,6 +2440,7 @@ PCBs and perfboard with optional components. The shape can be a rectangle with o | 1 | `ax_res(res1_8, 1e+6, tol = 1)` | Resistor 1e+6 Ohms 1% 0.125W | | 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 | @@ -3673,6 +3674,7 @@ Surface mount components for PCBs. | ---:|:--- |:---| | 1 | `smd_led(LED0603, green)` | SMD LED 0603 green | | 1 | `smd_led(LED0805, blue)` | SMD LED 0805 blue | +| 1 | `smd_led(LED1206, red)` | SMD LED 1306 red | | 1 | `smd_capacitor(CAP0603)` | SMD capacitor 0603 | | 1 | `smd_capacitor(CAP0805)` | SMD capacitor 0805 | | 1 | `smd_capacitor(CAP1206)` | SMD capacitor 1206 | diff --git a/tests/PCB.scad b/tests/PCB.scad index 66782f9..0e65984 100644 --- a/tests/PCB.scad +++ b/tests/PCB.scad @@ -61,6 +61,7 @@ test_pcb = ["test_pcb", "Test PCB", [ [ 20, -5, 180, "trimpot10"], [ 20, -15, 90, "trimpot10", true], + [ 7, 2, 90, "smd_led", LED1206, "blue"], [ 10, 2, 90, "smd_led", LED0805, "red"], [ 13, 2, 90, "smd_led", LED0603, "orange"], [ 16, 2, 90, "smd_res", RES1206, "1K"], diff --git a/tests/png/pcb.png b/tests/png/pcb.png index 02209fd..15b184c 100644 Binary files a/tests/png/pcb.png and b/tests/png/pcb.png differ diff --git a/tests/png/smds.png b/tests/png/smds.png index 204679e..0bc2ef1 100644 Binary files a/tests/png/smds.png and b/tests/png/smds.png differ diff --git a/vitamins/smds.scad b/vitamins/smds.scad index c21a720..2d6934e 100644 --- a/vitamins/smds.scad +++ b/vitamins/smds.scad @@ -23,8 +23,9 @@ LED0603 = ["LED0603", [1.6, 0.8, 0.18], [1.0, 0.8, 0.42]]; LED0805 = ["LED0805", [2.0, 1.25, 0.46], [1.4, 1.25, 0.54]]; +LED1206 = ["LED1206", [3.2, 1.6, 0.5], [2.0, 1.6, .6]]; -smd_leds = [LED0603, LED0805]; +smd_leds = [LED0603, LED0805, LED1206]; RES0603 = ["RES0603", [1.6, 0.8, 0.45], 0.3, 1/10]; RES0805 = ["RES0805", [2.0, 1.2, 0.45], 0.4, 1/8];