Devices discovery WIP

This commit is contained in:
mmcwilliams 2020-01-05 12:40:38 -05:00
parent 4c8c2b66f3
commit 42621bbf71
7 changed files with 25 additions and 15 deletions

View File

@ -1,5 +1,5 @@
{
"version": "1.4.18",
"version": "1.4.19",
"ext_port": 1111,
"profiles": {
"mcopy": {

View File

@ -20,8 +20,14 @@ class Devices {
let devs = [];
let notify = 'Connected to ';
let p;
gui.spinner(false);
gui.overlay(false);
try {
gui.spinner(false);
gui.overlay(false);
console.log('got here');
}
catch (err) {
console.error(err);
}
for (let i in arg) {
devs.push(arg[i].arduino);
if (arg[i].arduino && arg[i].arduino !== '/dev/fake') {

12
app/package-lock.json generated
View File

@ -157,9 +157,9 @@
}
},
"@types/node": {
"version": "12.12.18",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.18.tgz",
"integrity": "sha512-DBkZuIMFuAfjJHiunyRc+aNvmXYNwV1IPMgGKGlwCp6zh6MKrVtmvjSWK/axWcD25KJffkXgkfvFra8ndenXAw==",
"version": "12.12.21",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.21.tgz",
"integrity": "sha512-8sRGhbpU+ck1n0PGAUgVrWrWdjSW2aqNeyC15W88GRsMpSwzv6RJGlLhE7s2RhVSOdyDmxbqlWSeThq4/7xqlA==",
"dev": true
},
"@types/semver": {
@ -1791,9 +1791,9 @@
}
},
"electron": {
"version": "7.1.5",
"resolved": "https://registry.npmjs.org/electron/-/electron-7.1.5.tgz",
"integrity": "sha512-jagsvNz6Axu2Lsp5PqDgkcR+4BwoPP9YyLgMu9lhpFNRNKpNgfsEqUbtNolkFN/TtmWjxGO+iioWRrGqZHmJ8w==",
"version": "7.1.6",
"resolved": "https://registry.npmjs.org/electron/-/electron-7.1.6.tgz",
"integrity": "sha512-0QSxQYYzSrBRbctKgAWS79k/I+vm95I7bz/zTuF0Qv4PvTtQf5hK21q6wtyKVPPJFFXnmSyvfQ2ce6iktfgK8g==",
"dev": true,
"requires": {
"@electron/get": "^1.0.1",

View File

@ -30,7 +30,7 @@
"devDependencies": {
"@types/jquery": "^3.3.31",
"chai": "^4.2.0",
"electron": "^7.1.5",
"electron": "^7.1.6",
"electron-installer-common": "^0.8.0",
"electron-installer-dmg": "^3.0.0",
"electron-packager": "^14.1.1",

View File

@ -40,9 +40,13 @@ class Devices {
let notify : string = 'Connected to ';
let p : any;
gui.spinner(false);
gui.overlay(false);
try {
gui.spinner(false);
gui.overlay(false);
console.log('got here');
} catch (err) {
console.error(err);
}
for (let i in arg) {
devs.push(arg[i].arduino);
if (arg[i].arduino && arg[i].arduino !== '/dev/fake') {

View File

@ -1,5 +1,5 @@
{
"version": "1.4.18",
"version": "1.4.19",
"ext_port": 1111,
"profiles": {
"mcopy": {

View File

@ -1,5 +1,5 @@
{
"version": "1.4.18",
"version": "1.4.19",
"ext_port": 1111,
"profiles": {
"mcopy": {