canon_ble #82

Merged
mattmcw merged 149 commits from canon_ble into main 2023-08-01 03:38:52 +00:00
2 changed files with 14 additions and 1 deletions
Showing only changes of commit 55b39e7db3 - Show all commits

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