From d31ac53bd107461846ca99f758c77c853400abc6 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 9 Jan 2024 13:54:01 -0500 Subject: [PATCH] Back is ready to print --- app/data/cfg.json | 2 +- app/package-lock.json | 2 +- app/package.json | 2 +- data/cfg.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- processing/mcopy/cfg.json | 2 +- scad/cpc_connectors.scad | 5 +++-- 8 files changed, 11 insertions(+), 10 deletions(-) diff --git a/app/data/cfg.json b/app/data/cfg.json index bc96aba..a8c271d 100644 --- a/app/data/cfg.json +++ b/app/data/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.90", + "version": "1.8.91", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/app/package-lock.json b/app/package-lock.json index e049b8c..0540842 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,6 +1,6 @@ { "name": "mcopy-app", - "version": "1.8.90", + "version": "1.8.91", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/app/package.json b/app/package.json index a2973dd..c51bb4d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "mcopy-app", - "version": "1.8.90", + "version": "1.8.91", "description": "GUI for the mcopy small gauge film optical printer platform", "main": "main.js", "scripts": { diff --git a/data/cfg.json b/data/cfg.json index f3650ef..b4a3495 100644 --- a/data/cfg.json +++ b/data/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.90", + "version": "1.8.91", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/package-lock.json b/package-lock.json index 57f03ed..56246f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mcopy", - "version": "1.8.90", + "version": "1.8.91", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mcopy", - "version": "1.8.90", + "version": "1.8.91", "license": "MIT", "dependencies": { "arduino": "file:app/lib/arduino", diff --git a/package.json b/package.json index 688f854..df3f6a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcopy", - "version": "1.8.90", + "version": "1.8.91", "description": "Small gauge film optical printer platform", "main": "build.js", "directories": { diff --git a/processing/mcopy/cfg.json b/processing/mcopy/cfg.json index bc96aba..a8c271d 100644 --- a/processing/mcopy/cfg.json +++ b/processing/mcopy/cfg.json @@ -1,5 +1,5 @@ { - "version": "1.8.90", + "version": "1.8.91", "ext_port": 1111, "profiles": { "mcopy": { diff --git a/scad/cpc_connectors.scad b/scad/cpc_connectors.scad index bbd9ef5..84c9a96 100644 --- a/scad/cpc_connectors.scad +++ b/scad/cpc_connectors.scad @@ -155,6 +155,7 @@ module cpc_9pin_plug_back () { cylinder(r = R(PlugD - 2.7), h = 15, center = true); translate([0, 0, -2.5]) cylinder(r = R(RimD), h = 10, center = true); translate([0, 0, -15 / 2]) sphere(r = R(RimD)); + translate([0, 0, -15]) cylinder(r = R(10), h = 4, center = true); } //void cylinder(r = R(PlugD - 5), h = 15 + 1, center = true); @@ -230,7 +231,7 @@ module debug () { } } -PART = "9pin_plug_back"; +PART = "9pin_plug"; if (PART == "9pin_plug") { rotate([180, 0, 0]) cpc_9pin_plug(); @@ -239,7 +240,7 @@ if (PART == "9pin_plug") { } else if (PART == "9pin_plug_collar") { cpc_9pin_plug_collar(); } else if (PART == "9pin_plug_back") { - cpc_9pin_plug_back(); + rotate([180, 0, 0]) cpc_9pin_plug_back(); } else if (PART == "9pin_socket") { cpc_9pin_socket(); } else {