incyclist-devices 1.4.98 → 1.4.100

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.
Files changed (128) hide show
  1. package/LICENSE +0 -0
  2. package/lib/CyclingMode.d.ts +76 -76
  3. package/lib/CyclingMode.js +79 -79
  4. package/lib/Device.d.ts +92 -92
  5. package/lib/Device.js +71 -71
  6. package/lib/DeviceProtocol.d.ts +74 -74
  7. package/lib/DeviceProtocol.js +41 -41
  8. package/lib/DeviceRegistry.d.ts +8 -8
  9. package/lib/DeviceRegistry.js +33 -33
  10. package/lib/DeviceSupport.d.ts +34 -34
  11. package/lib/DeviceSupport.js +78 -78
  12. package/lib/ant/AntAdapter.d.ts +50 -50
  13. package/lib/ant/AntAdapter.js +109 -109
  14. package/lib/ant/AntScanner.d.ts +60 -60
  15. package/lib/ant/AntScanner.js +651 -651
  16. package/lib/ant/antfe/AntFEAdapter.d.ts +83 -83
  17. package/lib/ant/antfe/AntFEAdapter.js +652 -652
  18. package/lib/ant/antfe/ant-fe-adv-st-mode.d.ts +9 -9
  19. package/lib/ant/antfe/ant-fe-adv-st-mode.js +51 -51
  20. package/lib/ant/antfe/ant-fe-erg-mode.d.ts +6 -6
  21. package/lib/ant/antfe/ant-fe-erg-mode.js +14 -14
  22. package/lib/ant/antfe/ant-fe-st-mode.d.ts +5 -5
  23. package/lib/ant/antfe/ant-fe-st-mode.js +13 -13
  24. package/lib/ant/anthrm/AntHrmAdapter.d.ts +16 -16
  25. package/lib/ant/anthrm/AntHrmAdapter.js +130 -130
  26. package/lib/ant/antpwr/pwr-adapter.d.ts +49 -49
  27. package/lib/ant/antpwr/pwr-adapter.js +251 -251
  28. package/lib/ant/utils.d.ts +1 -1
  29. package/lib/ant/utils.js +23 -23
  30. package/lib/ble/ble-device.d.ts +63 -63
  31. package/lib/ble/ble-device.js +442 -442
  32. package/lib/ble/ble-erg-mode.d.ts +18 -18
  33. package/lib/ble/ble-erg-mode.js +132 -127
  34. package/lib/ble/ble-interface.d.ts +100 -99
  35. package/lib/ble/ble-interface.js +717 -712
  36. package/lib/ble/ble-peripheral.d.ts +36 -36
  37. package/lib/ble/ble-peripheral.js +200 -200
  38. package/lib/ble/ble-st-mode.d.ts +15 -15
  39. package/lib/ble/ble-st-mode.js +102 -102
  40. package/lib/ble/ble.d.ts +129 -129
  41. package/lib/ble/ble.js +86 -86
  42. package/lib/ble/consts.d.ts +14 -14
  43. package/lib/ble/consts.js +17 -17
  44. package/lib/ble/fm.d.ts +125 -125
  45. package/lib/ble/fm.js +739 -739
  46. package/lib/ble/hrm.d.ts +48 -48
  47. package/lib/ble/hrm.js +134 -134
  48. package/lib/ble/incyclist-protocol.d.ts +31 -31
  49. package/lib/ble/incyclist-protocol.js +147 -147
  50. package/lib/ble/pwr.d.ts +89 -89
  51. package/lib/ble/pwr.js +321 -321
  52. package/lib/ble/tacx.d.ts +90 -90
  53. package/lib/ble/tacx.js +731 -730
  54. package/lib/ble/wahoo-kickr.d.ts +98 -98
  55. package/lib/ble/wahoo-kickr.js +496 -496
  56. package/lib/calculations.d.ts +13 -13
  57. package/lib/calculations.js +150 -150
  58. package/lib/daum/DaumAdapter.d.ts +66 -66
  59. package/lib/daum/DaumAdapter.js +396 -396
  60. package/lib/daum/DaumPowerMeterCyclingMode.d.ts +8 -8
  61. package/lib/daum/DaumPowerMeterCyclingMode.js +21 -21
  62. package/lib/daum/ERGCyclingMode.d.ts +26 -26
  63. package/lib/daum/ERGCyclingMode.js +201 -201
  64. package/lib/daum/SmartTrainerCyclingMode.d.ts +41 -41
  65. package/lib/daum/SmartTrainerCyclingMode.js +344 -344
  66. package/lib/daum/classic/DaumClassicAdapter.d.ts +18 -18
  67. package/lib/daum/classic/DaumClassicAdapter.js +146 -146
  68. package/lib/daum/classic/DaumClassicCyclingMode.d.ts +13 -13
  69. package/lib/daum/classic/DaumClassicCyclingMode.js +97 -97
  70. package/lib/daum/classic/DaumClassicProtocol.d.ts +27 -27
  71. package/lib/daum/classic/DaumClassicProtocol.js +185 -185
  72. package/lib/daum/classic/bike.d.ts +64 -64
  73. package/lib/daum/classic/bike.js +456 -456
  74. package/lib/daum/classic/utils.d.ts +13 -13
  75. package/lib/daum/classic/utils.js +143 -143
  76. package/lib/daum/constants.d.ts +19 -19
  77. package/lib/daum/constants.js +22 -22
  78. package/lib/daum/premium/DaumClassicCyclingMode.d.ts +14 -14
  79. package/lib/daum/premium/DaumClassicCyclingMode.js +86 -86
  80. package/lib/daum/premium/DaumPremiumAdapter.d.ts +12 -12
  81. package/lib/daum/premium/DaumPremiumAdapter.js +131 -131
  82. package/lib/daum/premium/DaumPremiumProtocol.d.ts +32 -32
  83. package/lib/daum/premium/DaumPremiumProtocol.js +207 -207
  84. package/lib/daum/premium/bike.d.ts +123 -123
  85. package/lib/daum/premium/bike.js +894 -894
  86. package/lib/daum/premium/tcpserial.d.ts +33 -33
  87. package/lib/daum/premium/tcpserial.js +123 -123
  88. package/lib/daum/premium/utils.d.ts +62 -62
  89. package/lib/daum/premium/utils.js +376 -376
  90. package/lib/kettler/comms.d.ts +59 -59
  91. package/lib/kettler/comms.js +242 -242
  92. package/lib/kettler/ergo-racer/ERGCyclingMode.d.ts +25 -25
  93. package/lib/kettler/ergo-racer/ERGCyclingMode.js +144 -145
  94. package/lib/kettler/ergo-racer/adapter.d.ts +101 -101
  95. package/lib/kettler/ergo-racer/adapter.js +639 -639
  96. package/lib/kettler/ergo-racer/protocol.d.ts +41 -41
  97. package/lib/kettler/ergo-racer/protocol.js +203 -203
  98. package/lib/modes/power-base.d.ts +20 -20
  99. package/lib/modes/power-base.js +70 -70
  100. package/lib/modes/power-meter.d.ts +20 -20
  101. package/lib/modes/power-meter.js +78 -78
  102. package/lib/modes/simulator.d.ts +29 -29
  103. package/lib/modes/simulator.js +140 -140
  104. package/lib/simulator/Simulator.d.ts +69 -69
  105. package/lib/simulator/Simulator.js +288 -288
  106. package/lib/types/command.d.ts +8 -8
  107. package/lib/types/command.js +2 -2
  108. package/lib/types/route.d.ts +24 -24
  109. package/lib/types/route.js +9 -9
  110. package/lib/types/user.d.ts +11 -11
  111. package/lib/types/user.js +9 -9
  112. package/lib/utils.d.ts +14 -14
  113. package/lib/utils.js +114 -114
  114. package/package.json +46 -46
  115. package/lib/ant/antfe/ant-fe-st-mode copy.d.ts +0 -7
  116. package/lib/ant/antfe/ant-fe-st-mode copy.js +0 -54
  117. package/lib/ant/antpwr/AntPWRAdapter.d.ts +0 -24
  118. package/lib/ant/antpwr/AntPWRAdapter.js +0 -252
  119. package/lib/daum/PowerMeterCyclingMode.d.ts +0 -18
  120. package/lib/daum/PowerMeterCyclingMode.js +0 -78
  121. package/lib/daum/classic/ERGCyclingMode.d.ts +0 -23
  122. package/lib/daum/classic/ERGCyclingMode.js +0 -171
  123. package/lib/daum/indoorbike.d.ts +0 -24
  124. package/lib/daum/indoorbike.js +0 -178
  125. package/lib/kettler/ergo-racer/modes/power-meter.d.ts +0 -18
  126. package/lib/kettler/ergo-racer/modes/power-meter.js +0 -86
  127. package/lib/simulator/simulator-mode.d.ts +0 -28
  128. package/lib/simulator/simulator-mode.js +0 -120
@@ -1,102 +1,102 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const CyclingMode_1 = require("../CyclingMode");
7
- const power_base_1 = __importDefault(require("../modes/power-base"));
8
- const config = {
9
- name: "Smart Trainer",
10
- description: "Calculates speed based on power and slope. Slope is set to the device",
11
- properties: [
12
- { key: 'bikeType', name: 'Bike Type', description: '', type: CyclingMode_1.CyclingModeProperyType.SingleSelect, options: ['Race', 'Mountain', 'Triathlon'], default: 'Race' }
13
- ]
14
- };
15
- const MIN_SPEED = 10;
16
- class FtmsCyclingMode extends power_base_1.default {
17
- constructor(adapter, props) {
18
- super(adapter, props);
19
- this.hasBikeUpdate = false;
20
- this.initLogger('FtmsMode');
21
- }
22
- getName() {
23
- return config.name;
24
- }
25
- getDescription() {
26
- return config.description;
27
- }
28
- getProperties() {
29
- return config.properties;
30
- }
31
- getProperty(name) {
32
- return config.properties.find(p => p.name === name);
33
- }
34
- getBikeInitRequest() {
35
- return { slope: 0 };
36
- }
37
- sendBikeUpdate(request) {
38
- const getData = () => {
39
- if (!this.data)
40
- return {};
41
- const { gear, pedalRpm, slope, power, speed } = this.data;
42
- return { gear, pedalRpm, slope, power, speed };
43
- };
44
- const event = {};
45
- if (this.data === undefined)
46
- event.noData = true;
47
- if (request.slope !== undefined && (event.noData || Math.abs(request.slope - this.data.slope) >= 0.1))
48
- event.slopeUpdate = true;
49
- if (this.prevRequest === undefined)
50
- event.initialCall = true;
51
- this.logger.logEvent({ message: "processing update request", request, prev: this.prevRequest, data: getData(), event });
52
- let newRequest = {};
53
- if (request.slope === undefined && request.refresh && this.prevRequest) {
54
- return this.prevRequest;
55
- }
56
- if (request.slope !== undefined) {
57
- newRequest.slope = parseFloat(request.slope.toFixed(1));
58
- this.data.slope = newRequest.slope;
59
- }
60
- this.prevRequest = JSON.parse(JSON.stringify(newRequest));
61
- return newRequest;
62
- }
63
- updateData(bikeData) {
64
- const prevData = JSON.parse(JSON.stringify(this.data || {}));
65
- const prevSpeed = prevData.speed;
66
- const prevRequest = this.prevRequest || {};
67
- const data = this.data || {};
68
- const bikeType = this.getSetting('bikeType').toLowerCase();
69
- try {
70
- let power = bikeData.power || 0;
71
- const slope = (prevData.slope !== undefined ? prevData.slope : prevRequest.slope || 0);
72
- const distanceInternal = prevData.distanceInternal || 0;
73
- const m = this.getWeight();
74
- const t = this.getTimeSinceLastUpdate();
75
- const { speed, distance } = this.calculateSpeedAndDistance(power, slope, m, t, { bikeType });
76
- if (power === 0 && speed < MIN_SPEED) {
77
- data.speed = Math.round(prevData.speed - 1) < 0 ? 0 : Math.round(prevData.speed - 1);
78
- data.distanceInternal = distanceInternal + data.speed / 3.6 * t;
79
- }
80
- else {
81
- data.speed = (power === 0 && speed < MIN_SPEED) ? 0 : speed;
82
- data.distanceInternal = (power === 0 && speed < MIN_SPEED) ? distanceInternal : distanceInternal + distance;
83
- }
84
- data.power = Math.round(power);
85
- data.slope = slope;
86
- data.pedalRpm = bikeData.pedalRpm || 0;
87
- if (data.time !== undefined)
88
- data.time += t;
89
- else
90
- data.time = 0;
91
- data.heartrate = bikeData.heartrate;
92
- data.isPedalling = bikeData.isPedalling;
93
- }
94
- catch (err) {
95
- this.logger.logEvent({ message: 'error', fn: 'updateData()', error: err.message || err });
96
- }
97
- this.logger.logEvent({ message: "updateData result", data, bikeData, prevRequest, prevSpeed });
98
- this.data = data;
99
- return data;
100
- }
101
- }
102
- exports.default = FtmsCyclingMode;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const CyclingMode_1 = require("../CyclingMode");
7
+ const power_base_1 = __importDefault(require("../modes/power-base"));
8
+ const config = {
9
+ name: "Smart Trainer",
10
+ description: "Calculates speed based on power and slope. Slope is set to the device",
11
+ properties: [
12
+ { key: 'bikeType', name: 'Bike Type', description: '', type: CyclingMode_1.CyclingModeProperyType.SingleSelect, options: ['Race', 'Mountain', 'Triathlon'], default: 'Race' }
13
+ ]
14
+ };
15
+ const MIN_SPEED = 10;
16
+ class FtmsCyclingMode extends power_base_1.default {
17
+ constructor(adapter, props) {
18
+ super(adapter, props);
19
+ this.hasBikeUpdate = false;
20
+ this.initLogger('FtmsMode');
21
+ }
22
+ getName() {
23
+ return config.name;
24
+ }
25
+ getDescription() {
26
+ return config.description;
27
+ }
28
+ getProperties() {
29
+ return config.properties;
30
+ }
31
+ getProperty(name) {
32
+ return config.properties.find(p => p.name === name);
33
+ }
34
+ getBikeInitRequest() {
35
+ return { slope: 0 };
36
+ }
37
+ sendBikeUpdate(request) {
38
+ const getData = () => {
39
+ if (!this.data)
40
+ return {};
41
+ const { gear, pedalRpm, slope, power, speed } = this.data;
42
+ return { gear, pedalRpm, slope, power, speed };
43
+ };
44
+ const event = {};
45
+ if (this.data === undefined)
46
+ event.noData = true;
47
+ if (request.slope !== undefined && (event.noData || Math.abs(request.slope - this.data.slope) >= 0.1))
48
+ event.slopeUpdate = true;
49
+ if (this.prevRequest === undefined)
50
+ event.initialCall = true;
51
+ this.logger.logEvent({ message: "processing update request", request, prev: this.prevRequest, data: getData(), event });
52
+ let newRequest = {};
53
+ if (request.slope === undefined && request.refresh && this.prevRequest) {
54
+ return this.prevRequest;
55
+ }
56
+ if (request.slope !== undefined) {
57
+ newRequest.slope = parseFloat(request.slope.toFixed(1));
58
+ this.data.slope = newRequest.slope;
59
+ }
60
+ this.prevRequest = JSON.parse(JSON.stringify(newRequest));
61
+ return newRequest;
62
+ }
63
+ updateData(bikeData) {
64
+ const prevData = JSON.parse(JSON.stringify(this.data || {}));
65
+ const prevSpeed = prevData.speed;
66
+ const prevRequest = this.prevRequest || {};
67
+ const data = this.data || {};
68
+ const bikeType = this.getSetting('bikeType').toLowerCase();
69
+ try {
70
+ let power = bikeData.power || 0;
71
+ const slope = (prevData.slope !== undefined ? prevData.slope : prevRequest.slope || 0);
72
+ const distanceInternal = prevData.distanceInternal || 0;
73
+ const m = this.getWeight();
74
+ const t = this.getTimeSinceLastUpdate();
75
+ const { speed, distance } = this.calculateSpeedAndDistance(power, slope, m, t, { bikeType });
76
+ if (power === 0 && speed < MIN_SPEED) {
77
+ data.speed = Math.round(prevData.speed - 1) < 0 ? 0 : Math.round(prevData.speed - 1);
78
+ data.distanceInternal = distanceInternal + data.speed / 3.6 * t;
79
+ }
80
+ else {
81
+ data.speed = (power === 0 && speed < MIN_SPEED) ? 0 : speed;
82
+ data.distanceInternal = (power === 0 && speed < MIN_SPEED) ? distanceInternal : distanceInternal + distance;
83
+ }
84
+ data.power = Math.round(power);
85
+ data.slope = slope;
86
+ data.pedalRpm = bikeData.pedalRpm || 0;
87
+ if (data.time !== undefined)
88
+ data.time += t;
89
+ else
90
+ data.time = 0;
91
+ data.heartrate = bikeData.heartrate;
92
+ data.isPedalling = bikeData.isPedalling;
93
+ }
94
+ catch (err) {
95
+ this.logger.logEvent({ message: 'error', fn: 'updateData()', error: err.message || err });
96
+ }
97
+ this.logger.logEvent({ message: "updateData result", data, bikeData, prevRequest, prevSpeed });
98
+ this.data = data;
99
+ return data;
100
+ }
101
+ }
102
+ exports.default = FtmsCyclingMode;
package/lib/ble/ble.d.ts CHANGED
@@ -1,129 +1,129 @@
1
- /// <reference types="node" />
2
- import EventEmitter from "events";
3
- import BlePeripheralConnector from "./ble-peripheral";
4
- export declare type ConnectProps = {
5
- timeout?: number;
6
- reconnect?: boolean;
7
- };
8
- export interface BleDeviceIdentifier {
9
- id?: string;
10
- address?: string;
11
- name?: string;
12
- }
13
- export interface ConnectState {
14
- isConnecting: boolean;
15
- isConnected: boolean;
16
- isDisconnecting: boolean;
17
- }
18
- export declare type BleDeviceInfo = {
19
- manufacturer?: string;
20
- hwRevision?: string;
21
- swRevision?: string;
22
- fwRevision?: string;
23
- model?: string;
24
- serialNo?: string;
25
- };
26
- export interface BleDeviceDescription {
27
- id?: string;
28
- address: string;
29
- name?: string;
30
- profile: string;
31
- }
32
- export declare abstract class BleDeviceClass extends EventEmitter {
33
- static services: string[];
34
- id?: string;
35
- address?: string;
36
- name?: string;
37
- peripheral?: BlePeripheral;
38
- connectState: ConnectState;
39
- getConnectState(): ConnectState;
40
- isConnected(): boolean;
41
- abstract getProfile(): string;
42
- abstract getServiceUUids(): string[];
43
- abstract connect(props?: ConnectProps): Promise<boolean>;
44
- abstract disconnect(): Promise<boolean>;
45
- abstract getDeviceInfo(): Promise<BleDeviceInfo>;
46
- abstract getServices(): string[];
47
- setCharacteristicUUIDs(uuids: string[]): void;
48
- }
49
- export interface BleWriteProps {
50
- withoutResponse?: boolean;
51
- timeout?: number;
52
- }
53
- export interface BleBinding extends EventEmitter {
54
- startScanning(serviceUUIDs?: string[], allowDuplicates?: boolean, callback?: (error?: Error) => void): void;
55
- stopScanning(callback?: () => void): void;
56
- _bindings: any;
57
- state: string;
58
- }
59
- export declare type ScanProps = {
60
- timeout?: number;
61
- deviceTypes?: (typeof BleDeviceClass)[];
62
- requested?: BleDeviceClass | BleDeviceDescription;
63
- isBackgroundScan?: boolean;
64
- };
65
- export declare class BleBindingWrapper {
66
- protected binding: BleBinding;
67
- constructor(binding: BleBinding);
68
- open(): {
69
- err: Error;
70
- opened: boolean;
71
- };
72
- get(): BleBinding;
73
- }
74
- export declare abstract class BleInterfaceClass extends EventEmitter {
75
- binding: BleBinding;
76
- constructor(props?: {
77
- binding?: BleBinding;
78
- });
79
- abstract connect(props: ConnectProps): Promise<boolean>;
80
- abstract scan(props: ScanProps): Promise<BleDeviceClass[]>;
81
- abstract stopScan(): Promise<boolean>;
82
- abstract disconnect(): Promise<boolean>;
83
- abstract onDisconnect(peripheral: BlePeripheral): void;
84
- abstract isScanning(): boolean;
85
- abstract addConnectedDevice(device: BleDeviceClass): void;
86
- abstract removeConnectedDevice(device: BleDeviceClass): void;
87
- abstract findConnected(device: BleDeviceClass | BlePeripheral): BleDeviceClass;
88
- abstract getConnector(peripheral: BlePeripheral): BlePeripheralConnector;
89
- abstract findPeripheral(peripheral: BlePeripheral | {
90
- id?: string;
91
- address?: string;
92
- name?: string;
93
- }): BlePeripheral;
94
- getBinding(): BleBinding;
95
- setBinding(binding: BleBinding): void;
96
- }
97
- export interface BlePeripheral extends EventEmitter, BleDeviceIdentifier {
98
- services: string[];
99
- advertisement: any;
100
- state: string;
101
- connectAsync(): Promise<void>;
102
- disconnect(cb: (err?: Error) => void): Promise<void>;
103
- discoverSomeServicesAndCharacteristicsAsync(serviceUUIDs: string[], characteristicUUIDs: string[]): Promise<any>;
104
- }
105
- export interface BleCharacteristic extends EventEmitter {
106
- uuid: string;
107
- properties: string[];
108
- subscribe(callback: (err: Error) => void): void;
109
- read(callback: (err: Error, data: Buffer) => void): void;
110
- write(data: Buffer, withoutResponse: boolean, callback?: (err: Error) => void): void;
111
- }
112
- export declare type BleDeviceProps = {
113
- id?: string;
114
- address?: string;
115
- name?: string;
116
- services?: string[];
117
- ble: BleInterfaceClass;
118
- peripheral?: BlePeripheral;
119
- };
120
- export declare enum BleState {
121
- UNKNOWN = "unknown",
122
- RESETTING = "resetting",
123
- UNSUPPORTED = "unsupported",
124
- UNAUTHORIZED = "unauthorized",
125
- POWERED_OFF = "poweredOff",
126
- POWERED_ON = "poweredOn"
127
- }
128
- export declare const uuid: (s: any) => any;
129
- export declare const matches: (uuid1: any, uuid2: any) => boolean;
1
+ /// <reference types="node" />
2
+ import EventEmitter from "events";
3
+ import BlePeripheralConnector from "./ble-peripheral";
4
+ export declare type ConnectProps = {
5
+ timeout?: number;
6
+ reconnect?: boolean;
7
+ };
8
+ export interface BleDeviceIdentifier {
9
+ id?: string;
10
+ address?: string;
11
+ name?: string;
12
+ }
13
+ export interface ConnectState {
14
+ isConnecting: boolean;
15
+ isConnected: boolean;
16
+ isDisconnecting: boolean;
17
+ }
18
+ export declare type BleDeviceInfo = {
19
+ manufacturer?: string;
20
+ hwRevision?: string;
21
+ swRevision?: string;
22
+ fwRevision?: string;
23
+ model?: string;
24
+ serialNo?: string;
25
+ };
26
+ export interface BleDeviceDescription {
27
+ id?: string;
28
+ address: string;
29
+ name?: string;
30
+ profile: string;
31
+ }
32
+ export declare abstract class BleDeviceClass extends EventEmitter {
33
+ static services: string[];
34
+ id?: string;
35
+ address?: string;
36
+ name?: string;
37
+ peripheral?: BlePeripheral;
38
+ connectState: ConnectState;
39
+ getConnectState(): ConnectState;
40
+ isConnected(): boolean;
41
+ abstract getProfile(): string;
42
+ abstract getServiceUUids(): string[];
43
+ abstract connect(props?: ConnectProps): Promise<boolean>;
44
+ abstract disconnect(): Promise<boolean>;
45
+ abstract getDeviceInfo(): Promise<BleDeviceInfo>;
46
+ abstract getServices(): string[];
47
+ setCharacteristicUUIDs(uuids: string[]): void;
48
+ }
49
+ export interface BleWriteProps {
50
+ withoutResponse?: boolean;
51
+ timeout?: number;
52
+ }
53
+ export interface BleBinding extends EventEmitter {
54
+ startScanning(serviceUUIDs?: string[], allowDuplicates?: boolean, callback?: (error?: Error) => void): void;
55
+ stopScanning(callback?: () => void): void;
56
+ _bindings: any;
57
+ state: string;
58
+ }
59
+ export declare type ScanProps = {
60
+ timeout?: number;
61
+ deviceTypes?: (typeof BleDeviceClass)[];
62
+ requested?: BleDeviceClass | BleDeviceDescription;
63
+ isBackgroundScan?: boolean;
64
+ };
65
+ export declare class BleBindingWrapper {
66
+ protected binding: BleBinding;
67
+ constructor(binding: BleBinding);
68
+ open(): {
69
+ err: Error;
70
+ opened: boolean;
71
+ };
72
+ get(): BleBinding;
73
+ }
74
+ export declare abstract class BleInterfaceClass extends EventEmitter {
75
+ binding: BleBinding;
76
+ constructor(props?: {
77
+ binding?: BleBinding;
78
+ });
79
+ abstract connect(props: ConnectProps): Promise<boolean>;
80
+ abstract scan(props: ScanProps): Promise<BleDeviceClass[]>;
81
+ abstract stopScan(): Promise<boolean>;
82
+ abstract disconnect(): Promise<boolean>;
83
+ abstract onDisconnect(peripheral: BlePeripheral): void;
84
+ abstract isScanning(): boolean;
85
+ abstract addConnectedDevice(device: BleDeviceClass): void;
86
+ abstract removeConnectedDevice(device: BleDeviceClass): void;
87
+ abstract findConnected(device: BleDeviceClass | BlePeripheral): BleDeviceClass;
88
+ abstract getConnector(peripheral: BlePeripheral): BlePeripheralConnector;
89
+ abstract findPeripheral(peripheral: BlePeripheral | {
90
+ id?: string;
91
+ address?: string;
92
+ name?: string;
93
+ }): BlePeripheral;
94
+ getBinding(): BleBinding;
95
+ setBinding(binding: BleBinding): void;
96
+ }
97
+ export interface BlePeripheral extends EventEmitter, BleDeviceIdentifier {
98
+ services: string[];
99
+ advertisement: any;
100
+ state: string;
101
+ connectAsync(): Promise<void>;
102
+ disconnect(cb: (err?: Error) => void): Promise<void>;
103
+ discoverSomeServicesAndCharacteristicsAsync(serviceUUIDs: string[], characteristicUUIDs: string[]): Promise<any>;
104
+ }
105
+ export interface BleCharacteristic extends EventEmitter {
106
+ uuid: string;
107
+ properties: string[];
108
+ subscribe(callback: (err: Error) => void): void;
109
+ read(callback: (err: Error, data: Buffer) => void): void;
110
+ write(data: Buffer, withoutResponse: boolean, callback?: (err: Error) => void): void;
111
+ }
112
+ export declare type BleDeviceProps = {
113
+ id?: string;
114
+ address?: string;
115
+ name?: string;
116
+ services?: string[];
117
+ ble: BleInterfaceClass;
118
+ peripheral?: BlePeripheral;
119
+ };
120
+ export declare enum BleState {
121
+ UNKNOWN = "unknown",
122
+ RESETTING = "resetting",
123
+ UNSUPPORTED = "unsupported",
124
+ UNAUTHORIZED = "unauthorized",
125
+ POWERED_OFF = "poweredOff",
126
+ POWERED_ON = "poweredOn"
127
+ }
128
+ export declare const uuid: (s: any) => any;
129
+ export declare const matches: (uuid1: any, uuid2: any) => boolean;
package/lib/ble/ble.js CHANGED
@@ -1,86 +1,86 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.matches = exports.uuid = exports.BleState = exports.BleInterfaceClass = exports.BleBindingWrapper = exports.BleDeviceClass = void 0;
7
- const events_1 = __importDefault(require("events"));
8
- class BleDeviceClass extends events_1.default {
9
- constructor() {
10
- super(...arguments);
11
- this.connectState = { isConnecting: false, isConnected: false, isDisconnecting: false };
12
- }
13
- getConnectState() {
14
- return this.connectState;
15
- }
16
- isConnected() {
17
- return this.connectState.isConnected;
18
- }
19
- setCharacteristicUUIDs(uuids) { }
20
- }
21
- exports.BleDeviceClass = BleDeviceClass;
22
- BleDeviceClass.services = [];
23
- class BleBindingWrapper {
24
- constructor(binding) {
25
- this.binding = binding;
26
- this.binding = binding;
27
- }
28
- open() {
29
- const binding = this.binding._bindings;
30
- const binding_init = binding.init.bind(binding);
31
- try {
32
- binding_init();
33
- return { err: null, opened: true };
34
- }
35
- catch (err) {
36
- const error = err;
37
- const opened = false;
38
- return { err: error, opened };
39
- }
40
- }
41
- get() {
42
- return this.binding;
43
- }
44
- }
45
- exports.BleBindingWrapper = BleBindingWrapper;
46
- class BleInterfaceClass extends events_1.default {
47
- constructor(props = {}) {
48
- super();
49
- this.setBinding(props.binding);
50
- }
51
- getBinding() { return this.binding; }
52
- setBinding(binding) { this.binding = binding; }
53
- }
54
- exports.BleInterfaceClass = BleInterfaceClass;
55
- var BleState;
56
- (function (BleState) {
57
- BleState["UNKNOWN"] = "unknown";
58
- BleState["RESETTING"] = "resetting";
59
- BleState["UNSUPPORTED"] = "unsupported";
60
- BleState["UNAUTHORIZED"] = "unauthorized";
61
- BleState["POWERED_OFF"] = "poweredOff";
62
- BleState["POWERED_ON"] = "poweredOn";
63
- })(BleState = exports.BleState || (exports.BleState = {}));
64
- const uuid = (s) => {
65
- if (s) {
66
- if (s.includes('-')) {
67
- const parts = s.split('-');
68
- const uuidNo = parseInt('0x' + parts[0]);
69
- return uuidNo.toString(16).toLowerCase();
70
- }
71
- return s;
72
- }
73
- };
74
- exports.uuid = uuid;
75
- const matches = (uuid1, uuid2) => {
76
- const ul1 = uuid1.toLowerCase();
77
- const ul2 = uuid2.toLowerCase();
78
- if ((0, exports.uuid)(ul1) === (0, exports.uuid)(ul2))
79
- return true;
80
- if (ul1.length < ul2.length && ul2.startsWith(ul1))
81
- return true;
82
- if (ul1.length > ul2.length && ul1.startsWith(ul2))
83
- return true;
84
- return false;
85
- };
86
- exports.matches = matches;
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.matches = exports.uuid = exports.BleState = exports.BleInterfaceClass = exports.BleBindingWrapper = exports.BleDeviceClass = void 0;
7
+ const events_1 = __importDefault(require("events"));
8
+ class BleDeviceClass extends events_1.default {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.connectState = { isConnecting: false, isConnected: false, isDisconnecting: false };
12
+ }
13
+ getConnectState() {
14
+ return this.connectState;
15
+ }
16
+ isConnected() {
17
+ return this.connectState.isConnected;
18
+ }
19
+ setCharacteristicUUIDs(uuids) { }
20
+ }
21
+ exports.BleDeviceClass = BleDeviceClass;
22
+ BleDeviceClass.services = [];
23
+ class BleBindingWrapper {
24
+ constructor(binding) {
25
+ this.binding = binding;
26
+ this.binding = binding;
27
+ }
28
+ open() {
29
+ const binding = this.binding._bindings;
30
+ const binding_init = binding.init.bind(binding);
31
+ try {
32
+ binding_init();
33
+ return { err: null, opened: true };
34
+ }
35
+ catch (err) {
36
+ const error = err;
37
+ const opened = false;
38
+ return { err: error, opened };
39
+ }
40
+ }
41
+ get() {
42
+ return this.binding;
43
+ }
44
+ }
45
+ exports.BleBindingWrapper = BleBindingWrapper;
46
+ class BleInterfaceClass extends events_1.default {
47
+ constructor(props = {}) {
48
+ super();
49
+ this.setBinding(props.binding);
50
+ }
51
+ getBinding() { return this.binding; }
52
+ setBinding(binding) { this.binding = binding; }
53
+ }
54
+ exports.BleInterfaceClass = BleInterfaceClass;
55
+ var BleState;
56
+ (function (BleState) {
57
+ BleState["UNKNOWN"] = "unknown";
58
+ BleState["RESETTING"] = "resetting";
59
+ BleState["UNSUPPORTED"] = "unsupported";
60
+ BleState["UNAUTHORIZED"] = "unauthorized";
61
+ BleState["POWERED_OFF"] = "poweredOff";
62
+ BleState["POWERED_ON"] = "poweredOn";
63
+ })(BleState = exports.BleState || (exports.BleState = {}));
64
+ const uuid = (s) => {
65
+ if (s) {
66
+ if (s.includes('-')) {
67
+ const parts = s.split('-');
68
+ const uuidNo = parseInt('0x' + parts[0]);
69
+ return uuidNo.toString(16).toLowerCase();
70
+ }
71
+ return s;
72
+ }
73
+ };
74
+ exports.uuid = uuid;
75
+ const matches = (uuid1, uuid2) => {
76
+ const ul1 = uuid1.toLowerCase();
77
+ const ul2 = uuid2.toLowerCase();
78
+ if ((0, exports.uuid)(ul1) === (0, exports.uuid)(ul2))
79
+ return true;
80
+ if (ul1.length < ul2.length && ul2.startsWith(ul1))
81
+ return true;
82
+ if (ul1.length > ul2.length && ul1.startsWith(ul2))
83
+ return true;
84
+ return false;
85
+ };
86
+ exports.matches = matches;
@@ -1,14 +1,14 @@
1
- export declare const TACX_FE_C_BLE = "6e40fec1";
2
- export declare const TACX_FE_C_RX = "6e40fec2";
3
- export declare const TACX_FE_C_TX = "6e40fec3";
4
- export declare const FTMS = "1826";
5
- export declare const FTMS_CP = "2ad9";
6
- export declare const FTMS_STATUS = "2ada";
7
- export declare const INDOOR_BIKE_DATA = "2ad2";
8
- export declare const CSP = "1818";
9
- export declare const CSP_MEASUREMENT = "2a63";
10
- export declare const CSP_FEATURE = "2a65";
11
- export declare const CSC = "1816";
12
- export declare const CSC_MEASUREMENT = "2a5b";
13
- export declare const WAHOO_ADVANCED_TRAINER_CP = "a026e005";
14
- export declare const WAHOO_ADVANCED_TRAINER_CP_FULL = "A026E005-0A7D-4AB3-97FA-F1500F9FEB8B";
1
+ export declare const TACX_FE_C_BLE = "6e40fec1";
2
+ export declare const TACX_FE_C_RX = "6e40fec2";
3
+ export declare const TACX_FE_C_TX = "6e40fec3";
4
+ export declare const FTMS = "1826";
5
+ export declare const FTMS_CP = "2ad9";
6
+ export declare const FTMS_STATUS = "2ada";
7
+ export declare const INDOOR_BIKE_DATA = "2ad2";
8
+ export declare const CSP = "1818";
9
+ export declare const CSP_MEASUREMENT = "2a63";
10
+ export declare const CSP_FEATURE = "2a65";
11
+ export declare const CSC = "1816";
12
+ export declare const CSC_MEASUREMENT = "2a5b";
13
+ export declare const WAHOO_ADVANCED_TRAINER_CP = "a026e005";
14
+ export declare const WAHOO_ADVANCED_TRAINER_CP_FULL = "A026E005-0A7D-4AB3-97FA-F1500F9FEB8B";