Tweak to USB protector

This commit is contained in:
Matt McWilliams 2023-07-18 23:13:20 -04:00
parent 505a2a71e7
commit 55b39e7db3
2 changed files with 14 additions and 1 deletions

View File

@ -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);
}
}

View File

@ -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';