Skip to content

Commit

Permalink
Merge pull request #158 from cafjs/master
Browse files Browse the repository at this point in the history
Fix for #157 (and possibly #131)
  • Loading branch information
nathankellenicki committed Apr 26, 2024
2 parents 69ee57e + 333d300 commit 505bbdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/poweredup-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ export class PoweredUP extends EventEmitter {


private _determineLPF2HubType (device: IBLEAbstraction): Promise<Consts.HubType> {
return new Promise((resolve) => {
return new Promise(async (resolve) => {
let buf: Buffer = Buffer.alloc(0);
device.subscribeToCharacteristic(Consts.BLECharacteristic.LPF2_ALL, (data: Buffer) => {
await device.subscribeToCharacteristic(Consts.BLECharacteristic.LPF2_ALL, (data: Buffer) => {
buf = Buffer.concat([buf, data]);
while (buf[0] <= buf.length) {
const len = buf[0];
Expand Down
4 changes: 2 additions & 2 deletions src/webbleabstraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class WebBLEDevice extends EventEmitter implements IBLEAbstraction {
}


public subscribeToCharacteristic (uuid: string, callback: (data: Buffer) => void) {
public subscribeToCharacteristic (uuid: string, callback: (data: Buffer) => void): Promise<any> {
if (this._listeners[uuid]) {
this._characteristics[uuid].removeEventListener("characteristicvaluechanged", this._listeners[uuid]);
}
Expand All @@ -108,7 +108,7 @@ export class WebBLEDevice extends EventEmitter implements IBLEAbstraction {
callback(data);
}

this._characteristics[uuid].startNotifications();
return this._characteristics[uuid].startNotifications();
}


Expand Down

0 comments on commit 505bbdc

Please sign in to comment.