eco-access-specifications 2.2.7 → 2.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Service } from '../global';
|
|
1
|
+
import { Service, Host } from '../global';
|
|
2
2
|
export default class TrackUtil {
|
|
3
3
|
/**
|
|
4
4
|
* oneTrack report event
|
|
@@ -18,8 +18,15 @@ export default class TrackUtil {
|
|
|
18
18
|
if (resParms && eventName && resParms.tip) {
|
|
19
19
|
// 添加通用信息
|
|
20
20
|
if (type === 'refChannel') {
|
|
21
|
-
|
|
21
|
+
if (Host.isAndroid && eventName === 'view') {
|
|
22
|
+
resParms.ref = resParms.page_name;
|
|
23
|
+
// Android端view事件上报后需要调用一次flush,确保数据及时上传
|
|
24
|
+
Service.smarthome.updatePluginPageRef(resParms);
|
|
25
|
+
} else {
|
|
26
|
+
Service.smarthome.reportEventRefChannel(eventName, resParms);
|
|
27
|
+
}
|
|
22
28
|
} else {
|
|
29
|
+
console.log(eventName, resParms);
|
|
23
30
|
Service.smarthome.reportEvent(eventName, resParms);
|
|
24
31
|
}
|
|
25
32
|
// Service.smarthome.reportEvent(eventName, resParms);
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import TrackUtil from './TrackUtil';
|
|
2
2
|
let allTrackObj = {};
|
|
3
|
-
|
|
3
|
+
let typePoints = '';
|
|
4
|
+
const allTrackPoints = (data, type) => {
|
|
4
5
|
allTrackObj = data;
|
|
6
|
+
typePoints = type;
|
|
5
7
|
};
|
|
6
|
-
const oneTrackReport = (name, params = {}
|
|
8
|
+
const oneTrackReport = (name, params = {}) => {
|
|
7
9
|
if (!allTrackObj[name]) {
|
|
8
10
|
throw new Error(`没有匹配到${name}这个key,请确定字符串拼写正确`);
|
|
9
11
|
}
|
|
10
12
|
const allParams = {
|
|
11
13
|
...params
|
|
12
14
|
};
|
|
13
|
-
|
|
15
|
+
console.log('oneTrackReport type:', typePoints);
|
|
16
|
+
TrackUtil.oneTrackReport(name, allParams, allTrackObj, typePoints);
|
|
14
17
|
};
|
|
15
18
|
export { oneTrackReport, allTrackPoints };
|
package/lib/global.js
CHANGED
|
@@ -34,4 +34,4 @@ var getBluetooth = function getBluetooth() {
|
|
|
34
34
|
var getBluetoothEvent = function getBluetoothEvent() {
|
|
35
35
|
return BluetoothEvent;
|
|
36
36
|
};
|
|
37
|
-
export { appName, Device, getHost, Service, initSpecifications, addLog, Bluetooth, getBluetoothEvent, getBluetooth, bleSpecQueue, localLog, DeviceEvent, getDevice };
|
|
37
|
+
export { appName, Device, Host, getHost, Service, initSpecifications, addLog, Bluetooth, getBluetoothEvent, getBluetooth, bleSpecQueue, localLog, DeviceEvent, getDevice };
|
package/lib/index.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{bleSpec}from"./main/specMethod";var appName="",Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";appName="",Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";appName=appName="",Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";export{appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints};
|
|
1
|
+
import{bleSpec}from"./main/specMethod";var appName="",Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";appName="",Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage,LogFileUtil}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},Host={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},BluetoothEvent={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,Host=e.Host,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,Bluetooth=e.Bluetooth,BluetoothEvent=e.BluetoothEvent,bleSpecQueue=bleSpec(Bluetooth,DeviceEvent,Device)},getDevice=function(){return Device},getHost=function(){return Host},getBluetooth=function(){return Bluetooth},getBluetoothEvent=function(){return BluetoothEvent};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged}from"./ble";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";import{bleSpec}from"./main/specMethod";appName=appName="",Device={},DeviceEvent={},Service={},addLog=function(){},Bluetooth={},localLog=function(){},bleSpecQueue=function(){},initSpecifications=function(e){appName=e.name,Device=e.Device,DeviceEvent=e.DeviceEvent,localLog=e.localLog,Service=e.Service,addLog=e.addLog,bleSpecQueue=bleSpec(Bluetooth=e.Bluetooth,DeviceEvent,Device)};import{initSpecifications,bleSpecQueue}from"./global";import EcoService from"./main/EcoService.js";import{addLog,LogPage}from"./main/log";import{oneTrackReport,allTrackPoints}from"./eco-track-report";export{appName,Device,Host,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,Host,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,Host,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,LogFileUtil,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,getHost,Service,initSpecifications,addLog,Bluetooth,getBluetoothEvent,getBluetooth,bleSpecQueue,localLog,DeviceEvent,getDevice,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,bleConnect,setupAppStateListener,setupBluetoothStatusListener,checkBluetoothIsEnabled,disconnect,bluetoothConnectionStatusChanged,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints,appName,Device,Service,initSpecifications,addLog,Bluetooth,bleSpecQueue,localLog,DeviceEvent,LogPage,addLog,bleSpecQueue,initSpecifications,EcoService,oneTrackReport,allTrackPoints};
|