From fe39eec6868ce249be7f5bbfd9cb2385915b85ac Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Tue, 14 Jun 2016 06:40:44 -0700 Subject: [PATCH] fixing color, help of io pin service --- libs/microbit-bluetooth/bluetooth.cpp | 6 +++--- libs/microbit-bluetooth/shims.d.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/microbit-bluetooth/bluetooth.cpp b/libs/microbit-bluetooth/bluetooth.cpp index 692e5466..1eed2f05 100644 --- a/libs/microbit-bluetooth/bluetooth.cpp +++ b/libs/microbit-bluetooth/bluetooth.cpp @@ -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); } diff --git a/libs/microbit-bluetooth/shims.d.ts b/libs/microbit-bluetooth/shims.d.ts index 62e7917f..09260a0f 100644 --- a/libs/microbit-bluetooth/shims.d.ts +++ b/libs/microbit-bluetooth/shims.d.ts @@ -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; }