From 55b39e7db3b39fccb49722921a61821ec1f3e9f4 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Tue, 18 Jul 2023 23:13:20 -0400 Subject: [PATCH] Tweak to USB protector --- scad/projector_controller.scad | 2 +- src/arduino/index.ts | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/scad/projector_controller.scad b/scad/projector_controller.scad index 1e921db..88a2add 100644 --- a/scad/projector_controller.scad +++ b/scad/projector_controller.scad @@ -259,7 +259,7 @@ module usb_protector () { H = 3; difference () { rounded_cube([IN, IN, H], d = 5, center = true, $fn = 40); - cube([11.75, 11.75, H + 1], center = true); + cube([12, 12, H + 1], center = true); } } diff --git a/src/arduino/index.ts b/src/arduino/index.ts index 3714479..c89fd13 100644 --- a/src/arduino/index.ts +++ b/src/arduino/index.ts @@ -1,5 +1,18 @@ 'use strict' +/** + * 2023-07-16 Clarification + * + * Previous versions of this script intermingled and even + * swapped the usage of the terms 'serial' and 'device'. + * From here on out, the terms will be used as such: + * + * serial - a hardware address of a serial port + * device - common name of a type of mcopy device (eg. camera, + * projector, light) that is aliased to a serial port + * + **/ + //import Log = require('log'); import { delay } from 'delay';