fixing color, help of io pin service

This commit is contained in:
Peli de Halleux 2016-06-14 06:40:44 -07:00
parent 655fa0fde8
commit fe39eec686
2 changed files with 6 additions and 6 deletions

View File

@ -2,13 +2,13 @@
#include "MESEvents.h"
using namespace pxt;
//% color=156 weight=79
//% color=#0082FB weight=2
namespace bluetooth {
/**
* Starts the Bluetooth IO pin service
*/
//% help=reference/bluetooth/io-pin-service
//% blockId=bluetooth-io-pin-service block="start io pin service"
//% help=bluetooth/io-pin-service
//% blockId=bluetooth-io-pin-service block="bluetooth io pin service"
void startIOPinService() {
new MicroBitIOPinService(*uBit.ble, uBit.io);
}

View File

@ -2,14 +2,14 @@
//% color=156 weight=79
//% color=#0082FB weight=2
declare namespace bluetooth {
/**
* Starts the Bluetooth IO pin service
*/
//% help=reference/bluetooth/io-pin-service
//% blockId=bluetooth-io-pin-service block="start io pin service" shim=bluetooth::startIOPinService
//% help=bluetooth/io-pin-service
//% blockId=bluetooth-io-pin-service block="bluetooth io pin service" shim=bluetooth::startIOPinService
function startIOPinService(): void;
}