support for starting the temperature service #113
This commit is contained in:
parent
2ab2535966
commit
23eefb28d2
@ -21,4 +21,13 @@ namespace bluetooth {
|
|||||||
void startLEDService() {
|
void startLEDService() {
|
||||||
new MicroBitLEDService(*uBit.ble, uBit.display);
|
new MicroBitLEDService(*uBit.ble, uBit.display);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts the temperature service
|
||||||
|
*/
|
||||||
|
//% help=bluetooth/start-temperature-service
|
||||||
|
//% blockId=bluetooth_start_temperature_service block="bluetooth temperature service"
|
||||||
|
void startTemperatureService() {
|
||||||
|
new MicroBitTemperatureService(*uBit.ble, uBit.thermometer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
7
libs/microbit-bluetooth/shims.d.ts
vendored
7
libs/microbit-bluetooth/shims.d.ts
vendored
@ -18,6 +18,13 @@ declare namespace bluetooth {
|
|||||||
//% help=bluetooth/start-led-service
|
//% help=bluetooth/start-led-service
|
||||||
//% blockId=bluetooth_start_led_service block="bluetooth led service" shim=bluetooth::startLEDService
|
//% blockId=bluetooth_start_led_service block="bluetooth led service" shim=bluetooth::startLEDService
|
||||||
function startLEDService(): void;
|
function startLEDService(): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts the temperature service
|
||||||
|
*/
|
||||||
|
//% help=bluetooth/start-led-service
|
||||||
|
//% blockId=bluetooth_start_temperature_service block="bluetooth temperature service" shim=bluetooth::startTemperatureService
|
||||||
|
function startTemperatureService(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Auto-generated. Do not edit. Really.
|
// Auto-generated. Do not edit. Really.
|
||||||
|
@ -614,6 +614,18 @@ namespace pxsim.pins {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace pxsim.bluetooth {
|
||||||
|
export function startIOPinService(): void {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
export function startLEDService(): void {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
export function startTemperatureService(): void {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace pxsim.images {
|
namespace pxsim.images {
|
||||||
export function createImage(img: Image) { return img }
|
export function createImage(img: Image) { return img }
|
||||||
export function createBigImage(img: Image) { return img }
|
export function createBigImage(img: Image) { return img }
|
||||||
|
Loading…
Reference in New Issue
Block a user