Compare commits
No commits in common. "b9ee2180c916f4e8499e9c1f07650b7309c6cfff" and "8863ee87bad9d565f32c4e6395d43784154d6672" have entirely different histories.
b9ee2180c9
...
8863ee87ba
|
@ -1,6 +1,3 @@
|
||||||
[submodule "src/json"]
|
[submodule "src/json"]
|
||||||
path = include/json
|
path = include/json
|
||||||
url = https://github.com/nlohmann/json.git
|
url = https://github.com/nlohmann/json.git
|
||||||
[submodule "include/args"]
|
|
||||||
path = include/args
|
|
||||||
url = https://github.com/Taywee/args.git
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit cc2368ca0d8a962862c96c00fe919e1480050f51
|
|
|
@ -69,7 +69,6 @@ function actionStop (img) {
|
||||||
action : 3, //STOP
|
action : 3, //STOP
|
||||||
image : resolve(img)
|
image : resolve(img)
|
||||||
}
|
}
|
||||||
send(obj);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
client.connect(serverPort, serverAddress, async () => {
|
client.connect(serverPort, serverAddress, async () => {
|
||||||
|
@ -84,10 +83,11 @@ client.connect(serverPort, serverAddress, async () => {
|
||||||
actionLoad(img, 100, 100, 640, 640);
|
actionLoad(img, 100, 100, 640, 640);
|
||||||
//
|
//
|
||||||
await delay(1000);
|
await delay(1000);
|
||||||
actionStart(img);
|
actionExpose(img, 4000);
|
||||||
|
//actionStart(img);
|
||||||
//
|
//
|
||||||
await delay(2000);
|
await delay(2000);
|
||||||
actionStop(img);
|
//actionStop(img);
|
||||||
});
|
});
|
||||||
|
|
||||||
client.on('data', (data) => {
|
client.on('data', (data) => {
|
||||||
|
|
Loading…
Reference in New Issue