Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MicroBitDALImageRewrite by
Diff: inc/MicroBit.h
- Revision:
- 1:3e0360107f98
- Parent:
- 0:47d8ba08580f
- Child:
- 2:6597fe50dc94
--- a/inc/MicroBit.h Sun Apr 12 17:38:56 2015 +0000 +++ b/inc/MicroBit.h Thu Apr 16 13:50:24 2015 +0000 @@ -8,6 +8,7 @@ #define MICROBIT_H #include "mbed.h" +#include "MicroBitMessageBus.h" #include "MicroBitButton.h" #include "MicroBitDisplay.h" #include "MicroBitImage.h" @@ -34,31 +35,23 @@ #define MICROBIT_PIN_USER_LED P0_18 -struct MicroBitEvent -{ - int source; // ID of the component sending the event. - int value; // context specific value. - void *context; // context specific data. -}; - class MicroBit { - static void (*messageBus)(MicroBitEvent *); // Message Bus Handle - void init(); // Internal constructor. ARM compiler doesn't seem to support constructor chaining... + // Internal constructor. The ARM compiler doesn't seem to support constructor chaining... + void init(); public: - + static MicroBitMessageBus MessageBus; // // Add member variables to represent each of the core components on the device. // - MicroBitLED userLED; MicroBitDisplay display; - + MicroBitButton leftButton; /* - MicroBitButton leftButton; MicroBitButton rightButton; + MicroBitIO pins[MICROBIT_IO_PINS]; */ @@ -67,7 +60,7 @@ * Create a representation of a MicroBit device. * @param messageBus callback function to receive MicroBitMessageBus events. */ - MicroBit(void (*messageBus)(MicroBitEvent *)); + MicroBit(); }; #endif