Updated images and readme.

This commit is contained in:
Chris Palmer 2021-01-02 11:02:06 +00:00
parent 8d1ff3584c
commit 138f45730b
5 changed files with 6 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 860 KiB

After

Width:  |  Height:  |  Size: 862 KiB

View File

@ -351,7 +351,7 @@ modules_y = iecs_y + 60;
ssrs_y = modules_y + 80; ssrs_y = modules_y + 80;
blowers_y = ssrs_y + 60; blowers_y = ssrs_y + 60;
batteries_y = blowers_y + 100; batteries_y = blowers_y + 100;
steppers_y = batteries_y + 70; steppers_y = batteries_y + 55;
panel_meters_y = steppers_y + 70; panel_meters_y = steppers_y + 70;
extrusions_y = panel_meters_y + 80; extrusions_y = panel_meters_y + 80;

View File

@ -3461,15 +3461,16 @@ NEMA stepper motor model.
| Qty | Module call | BOM entry | | Qty | Module call | BOM entry |
| ---:|:--- |:---| | ---:|:--- |:---|
| 4 | `ring_terminal(M3_ringterm)` | Ring terminal 3mm | | 4 | `ring_terminal(M3_ringterm)` | Ring terminal 3mm |
| 15 | `screw(M3_pan_screw, 8)` | Screw M3 pan x 8mm | | 20 | `screw(M3_pan_screw, 8)` | Screw M3 pan x 8mm |
| 1 | `NEMA(NEMA14)` | Stepper motor NEMA14 x 36mm | | 1 | `NEMA(NEMA14)` | Stepper motor NEMA14 x 36mm |
| 1 | `NEMA(NEMA16)` | Stepper motor NEMA16 x 19.2mm | | 1 | `NEMA(NEMA16)` | Stepper motor NEMA16 x 19.2mm |
| 1 | `NEMA(NEMA17P)` | Stepper motor NEMA17 x 26.5mm |
| 1 | `NEMA(NEMA17S)` | Stepper motor NEMA17 x 34mm | | 1 | `NEMA(NEMA17S)` | Stepper motor NEMA17 x 34mm |
| 1 | `NEMA(NEMA17M)` | Stepper motor NEMA17 x 40mm | | 1 | `NEMA(NEMA17M)` | Stepper motor NEMA17 x 40mm |
| 1 | `NEMA(NEMA17)` | Stepper motor NEMA17 x 47mm | | 1 | `NEMA(NEMA17)` | Stepper motor NEMA17 x 47mm |
| 1 | `NEMA(NEMA23)` | Stepper motor NEMA22 x 51.2mm | | 1 | `NEMA(NEMA23)` | Stepper motor NEMA22 x 51.2mm |
| 11 | `washer(M3_washer)` | Washer M3 x 7mm x 0.5mm | | 16 | `washer(M3_washer)` | Washer M3 x 7mm x 0.5mm |
| 15 | `star_washer(M3_washer)` | Washer star M3 x 0.5mm | | 20 | `star_washer(M3_washer)` | Washer star M3 x 0.5mm |
<a href="#top">Top</a> <a href="#top">Top</a>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 107 KiB

View File

@ -22,7 +22,7 @@ include <../vitamins/stepper_motors.scad>
use <../utils/layout.scad> use <../utils/layout.scad>
module stepper_motors() module stepper_motors()
layout([for(s = stepper_motors) NEMA_width(s)], 5) let(m = stepper_motors[$i]) { layout([for(s = stepper_motors) NEMA_width(s)], 5, no_offset = true) let(m = stepper_motors[$i]) {
rotate(180) rotate(180)
NEMA(m, 0, m == NEMA17P || m == NEMA17M || m == NEMA17M8); NEMA(m, 0, m == NEMA17P || m == NEMA17M || m == NEMA17M8);