From ffb7f87cc5b600f0e533a964e07d8e66bef14170 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Thu, 10 Sep 2020 18:22:47 +0100 Subject: [PATCH] Fixed typo in insert name. --- readme.md | 8 ++++---- vitamins/inserts.scad | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index b37b9c6..0e0127f 100644 --- a/readme.md +++ b/readme.md @@ -1268,7 +1268,7 @@ Heatfit threaded inserts. Can be pushed into thermoplastics using a soldering ir ### Vitamins | Qty | Module call | BOM entry | | ---:|:--- |:---| -| 1 | ```insert(F1BM)``` | Heatfit insert M2 | +| 1 | ```insert(F1BM2)``` | Heatfit insert M2 | | 1 | ```insert(F1BM2p5)``` | Heatfit insert M2.5 | | 1 | ```insert(F1BM3)``` | Heatfit insert M3 | | 1 | ```insert(F1BM4)``` | Heatfit insert M4 | @@ -4289,7 +4289,7 @@ Star washers can be omitted by setting ```star_washers``` to false. ### Vitamins | Qty | Module call | BOM entry | | ---:|:--- |:---| -| 3 | ```insert(F1BM)``` | Heatfit insert M2 | +| 3 | ```insert(F1BM2)``` | Heatfit insert M2 | | 3 | ```insert(F1BM2p5)``` | Heatfit insert M2.5 | | 3 | ```insert(F1BM3)``` | Heatfit insert M3 | | 3 | ```insert(F1BM4)``` | Heatfit insert M4 | @@ -4509,7 +4509,7 @@ Star washers can be omitted by setting ```star_washers``` to false. ### Vitamins | Qty | Module call | BOM entry | | ---:|:--- |:---| -| 3 | ```insert(F1BM)``` | Heatfit insert M2 | +| 3 | ```insert(F1BM2)``` | Heatfit insert M2 | | 3 | ```insert(F1BM2p5)``` | Heatfit insert M2.5 | | 3 | ```insert(F1BM3)``` | Heatfit insert M3 | | 3 | ```insert(F1BM4)``` | Heatfit insert M4 | @@ -4839,7 +4839,7 @@ It can also have printed feet on the base with the screws doubling up to hold th ### Vitamins | Qty | Module call | BOM entry | | ---:|:--- |:---| -| 4 | ```insert(F1BM)``` | Heatfit insert M2 | +| 4 | ```insert(F1BM2)``` | Heatfit insert M2 | | 4 | ```insert(F1BM3)``` | Heatfit insert M3 | | 4 | ```screw(M2_cap_screw, 6)``` | Screw M2 cap x 6mm | | 3 | ```screw(M3_pan_screw, 6)``` | Screw M3 pan x 6mm | diff --git a/vitamins/inserts.scad b/vitamins/inserts.scad index 8a2e053..4e4deea 100644 --- a/vitamins/inserts.scad +++ b/vitamins/inserts.scad @@ -29,7 +29,7 @@ // d d h d d // d // -F1BM2 = [ "F1BM", 4.0, 3.6, 3.2, 2, 3.0, 1.0, 3.4, 3.1 ]; +F1BM2 = [ "F1BM2", 4.0, 3.6, 3.2, 2, 3.0, 1.0, 3.4, 3.1 ]; F1BM2p5 = [ "F1BM2p5", 5.8, 4.6, 4.0, 2.5, 3.65, 1.6, 4.4, 3.9 ]; F1BM3 = [ "F1BM3", 5.8, 4.6, 4.0, 3, 3.65, 1.6, 4.4, 3.9 ]; F1BM4 = [ "F1BM4", 8.2, 6.3, 5.6, 4, 5.15, 2.3, 6.0, 5.55 ];