-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindController.js
More file actions
93 lines (77 loc) · 1.35 KB
/
findController.js
File metadata and controls
93 lines (77 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
inlets = 1;
outlets = 4;
function setDelay(time, func) {
var tsk = new Task(func, this);
tsk.interval = time;
tsk.repeat(1);
return tsk;
}
function setInterval(time, func) {
var tsk = new Task(func, this);
tsk.interval = time;
tsk.repeat(-1);
return tsk;
}
function clearInterval(task) {
if (task) {
task.cancel();
}
}
if (jsarguments.length > 1)
myval = jsarguments[1];
function status(available) {
outlet(1, available);
}
function action(str) {
outlet(2, str);
}
function log(str) {
outlet(3, str);
}
function loadBand(){
log("");
}
var searchTimer;
function lost() {
var msg = "";
status(0);
searchTimer = setInterval(500, function () {
msg += ".";
log(msg);
action('print');
});
}
function found() {
clearInterval(searchTimer);
searchTimer = undefined;
}
// MAIN FUNCTIONS
function port() {
var discovered = false;
const args = arrayfromargs(arguments);
args.forEach(function (device) {
if (typeof (device) === 'string') {
if (device.indexOf('usbmodem') != -1) {
log(device);
outlet(0, "port", device);
found();
discovered = true;
status(1);
}
}
})
if (!discovered && !searchTimer) {
lost();
}
}
function write(){
log("wrote " + arrayfromargs(arguments) + " bytes");
}
function read() {
const args = arrayfromargs(arguments);
if (args[0] == -1) {
if (!searchTimer) {
lost();
}
}
}