-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47594f1
commit bb2eb6b
Showing
8 changed files
with
324 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
import { MagnetometerData, MagnetometerDataEvent } from "./magnetometer.js"; | ||
import { Service } from "./bluetooth-device-wrapper.js"; | ||
import { profile } from "./bluetooth-profile.js"; | ||
import { BackgroundErrorEvent, DeviceError } from "./device.js"; | ||
import { | ||
CharacteristicDataTarget, | ||
TypedServiceEvent, | ||
TypedServiceEventDispatcher, | ||
} from "./service-events.js"; | ||
|
||
export class MagnetometerService implements Service { | ||
constructor( | ||
private magnetometerDataCharacteristic: BluetoothRemoteGATTCharacteristic, | ||
private magnetometerPeriodCharacteristic: BluetoothRemoteGATTCharacteristic, | ||
private magnetometerBearingCharacteristic: BluetoothRemoteGATTCharacteristic, | ||
private magnetometerCalibrationCharacteristic: BluetoothRemoteGATTCharacteristic, | ||
private dispatchTypedEvent: TypedServiceEventDispatcher, | ||
private queueGattOperation: <R>(action: () => Promise<R>) => Promise<R>, | ||
) { | ||
this.magnetometerDataCharacteristic.addEventListener( | ||
"characteristicvaluechanged", | ||
(event: Event) => { | ||
const target = event.target as CharacteristicDataTarget; | ||
const data = this.dataViewToData(target.value); | ||
this.dispatchTypedEvent( | ||
"magnetometerdatachanged", | ||
new MagnetometerDataEvent(data), | ||
); | ||
}, | ||
); | ||
} | ||
|
||
static async createService( | ||
gattServer: BluetoothRemoteGATTServer, | ||
dispatcher: TypedServiceEventDispatcher, | ||
queueGattOperation: <R>(action: () => Promise<R>) => Promise<R>, | ||
listenerInit: boolean, | ||
): Promise<MagnetometerService | undefined> { | ||
let magnetometerService: BluetoothRemoteGATTService; | ||
try { | ||
magnetometerService = await gattServer.getPrimaryService( | ||
profile.magnetometer.id, | ||
); | ||
} catch (err) { | ||
if (listenerInit) { | ||
dispatcher("backgrounderror", new BackgroundErrorEvent(err as string)); | ||
return; | ||
} else { | ||
throw new DeviceError({ | ||
code: "service-missing", | ||
message: err as string, | ||
}); | ||
} | ||
} | ||
const magnetometerDataCharacteristic = | ||
await magnetometerService.getCharacteristic( | ||
profile.magnetometer.characteristics.data.id, | ||
); | ||
const magnetometerPeriodCharacteristic = | ||
await magnetometerService.getCharacteristic( | ||
profile.magnetometer.characteristics.period.id, | ||
); | ||
const magnetometerBearingCharacteristic = | ||
await magnetometerService.getCharacteristic( | ||
profile.magnetometer.characteristics.bearing.id, | ||
); | ||
const magnetometerCalibrationCharacteristic = | ||
await magnetometerService.getCharacteristic( | ||
profile.magnetometer.characteristics.calibration.id, | ||
); | ||
return new MagnetometerService( | ||
magnetometerDataCharacteristic, | ||
magnetometerPeriodCharacteristic, | ||
magnetometerBearingCharacteristic, | ||
magnetometerCalibrationCharacteristic, | ||
dispatcher, | ||
queueGattOperation, | ||
); | ||
} | ||
|
||
private dataViewToData(dataView: DataView): MagnetometerData { | ||
return { | ||
x: dataView.getInt16(0, true), | ||
y: dataView.getInt16(2, true), | ||
z: dataView.getInt16(4, true), | ||
}; | ||
} | ||
|
||
async getData(): Promise<MagnetometerData> { | ||
const dataView = await this.queueGattOperation(() => | ||
this.magnetometerDataCharacteristic.readValue(), | ||
); | ||
return this.dataViewToData(dataView); | ||
} | ||
|
||
async getPeriod(): Promise<number> { | ||
const dataView = await this.queueGattOperation(() => | ||
this.magnetometerPeriodCharacteristic.readValue(), | ||
); | ||
return dataView.getUint16(0, true); | ||
} | ||
|
||
async setPeriod(value: number): Promise<void> { | ||
if (value === 0) { | ||
// Writing 0 causes the device to crash. | ||
return; | ||
} | ||
// Allowed values: 10, 20, 50, 100 | ||
// Values passed are rounded up to the allowed values on device. | ||
// Documentation for allowed values looks wrong. | ||
// https://lancaster-university.github.io/microbit-docs/ble/profile/#about-the-magnetometer-service | ||
const dataView = new DataView(new ArrayBuffer(2)); | ||
dataView.setUint16(0, value, true); | ||
return this.queueGattOperation(() => | ||
this.magnetometerPeriodCharacteristic.writeValue(dataView), | ||
); | ||
} | ||
|
||
async getBearing(): Promise<number> { | ||
const dataView = await this.queueGattOperation(() => | ||
this.magnetometerBearingCharacteristic.readValue(), | ||
); | ||
return dataView.getUint16(0, true); | ||
} | ||
|
||
async triggerCalibration(): Promise<void> { | ||
const dataView = new DataView(new ArrayBuffer(1)); | ||
dataView.setUint8(0, 1); | ||
return this.queueGattOperation(() => | ||
this.magnetometerCalibrationCharacteristic.writeValue(dataView), | ||
); | ||
} | ||
|
||
async startNotifications(type: TypedServiceEvent): Promise<void> { | ||
await this.characteristicForEvent(type)?.startNotifications(); | ||
} | ||
|
||
async stopNotifications(type: TypedServiceEvent): Promise<void> { | ||
await this.characteristicForEvent(type)?.stopNotifications(); | ||
} | ||
|
||
private characteristicForEvent(type: TypedServiceEvent) { | ||
switch (type) { | ||
case "magnetometerdatachanged": { | ||
return this.magnetometerDataCharacteristic; | ||
} | ||
default: { | ||
return undefined; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export interface MagnetometerData { | ||
x: number; | ||
y: number; | ||
z: number; | ||
} | ||
|
||
export class MagnetometerDataEvent extends Event { | ||
constructor(public readonly data: MagnetometerData) { | ||
super("magnetometerdatachanged"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.