Browse Source

fix fixes fixing fixes.

master
Gisle Aune 5 years ago
parent
commit
6db998a240
  1. 8
      src/drivers/iconsole.js

8
src/drivers/iconsole.js

@ -13,6 +13,8 @@ class IConsoleDriver {
this.lastLevel = 18;
this.workoutStatus = {};
this.started = false;
this.state = "disconnected";
}
async connect() {
@ -34,11 +36,9 @@ class IConsoleDriver {
break;
}
}
})
}
});
get state() {
return this.client.state;
this.state = this.client.state;
}
async start() {

Loading…
Cancel
Save