bundling and fixing microbit-devices

This commit is contained in:
Peli de Halleux 2016-06-07 14:06:13 -07:00
parent 3051e09bcf
commit f085253306
2 changed files with 4 additions and 6 deletions

View File

@ -188,7 +188,7 @@ namespace devices {
static void initSignalStrength() { static void initSignalStrength() {
if (_signalStrength < 0) { if (_signalStrength < 0) {
_signalStrength = 0; _signalStrength = 0;
uBit.MessageBus.listen(MES_SIGNAL_STRENGTH_ID, MICROBIT_EVT_ANY, signalStrengthHandler); uBit.messageBus.listen(MES_SIGNAL_STRENGTH_ID, MICROBIT_EVT_ANY, signalStrengthHandler);
} }
} }

View File

@ -5,7 +5,9 @@
"corepkg": "microbit", "corepkg": "microbit",
"bundleddirs": [ "bundleddirs": [
"libs/microbit", "libs/microbit",
"libs/microbit-radio" "libs/microbit-radio",
"libs/microbit-devices",
"libs/neopixel"
], ],
"cloud": { "cloud": {
"workspace": false, "workspace": false,
@ -105,10 +107,6 @@
{ {
"name": "Lessons", "name": "Lessons",
"path": "/lessons" "path": "/lessons"
},
{
"name": "Device",
"path": "/device"
} }
], ],
"sideDoc": "getting-started" "sideDoc": "getting-started"