Can not retrieve human readable device type from devices. Updated web bluetooth example
This commit is contained in:
parent
5fde49c0c2
commit
ea20b1bee0
@ -81,6 +81,10 @@ export class Device extends EventEmitter {
|
||||
return this._type;
|
||||
}
|
||||
|
||||
public get typeName () {
|
||||
return Consts.DeviceTypeNames[this.type];
|
||||
}
|
||||
|
||||
public get mode () {
|
||||
return this._mode;
|
||||
}
|
||||
|
@ -139,6 +139,8 @@ export class LPF2Hub extends BaseHub {
|
||||
const callback = this._propertyRequestCallbacks[property];
|
||||
if (callback) {
|
||||
callback(message);
|
||||
} else {
|
||||
this._parseHubPropertyResponse(message);
|
||||
}
|
||||
delete this._propertyRequestCallbacks[property];
|
||||
break;
|
||||
@ -193,6 +195,7 @@ export class LPF2Hub extends BaseHub {
|
||||
|
||||
// Button press reports
|
||||
if (message[3] === 0x02) {
|
||||
console.log("BUTTON PRESS", message);
|
||||
if (message[5] === 1) {
|
||||
/**
|
||||
* Emits when a button is pressed.
|
||||
|
Loading…
x
Reference in New Issue
Block a user