canon_ble #82
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in New Issue