Fix logging in delayed state retreival for ble connections.
This commit is contained in:
parent
b8787c0fac
commit
fc4b180aa8
|
@ -170,13 +170,14 @@ mobile.frame = function () {
|
||||||
|
|
||||||
|
|
||||||
mobile.frameSuccess = function () {
|
mobile.frameSuccess = function () {
|
||||||
console.log('Frame finished, getting state.');
|
|
||||||
if (STATE.exposure < 5000) {
|
if (STATE.exposure < 5000) {
|
||||||
|
console.log('Frame finished, getting state.');
|
||||||
mobile.ble.active = false;
|
mobile.ble.active = false;
|
||||||
document.getElementById('frame').classList.remove('focus');
|
document.getElementById('frame').classList.remove('focus');
|
||||||
mobile.getState();
|
mobile.getState();
|
||||||
} else {
|
} else {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
console.log('Frame finished, getting state.');
|
||||||
mobile.ble.active = false;
|
mobile.ble.active = false;
|
||||||
document.getElementById('frame').classList.remove('focus');
|
document.getElementById('frame').classList.remove('focus');
|
||||||
mobile.getState();
|
mobile.getState();
|
||||||
|
|
Loading…
Reference in New Issue