You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Joe Finney 5d4c397311
Remove redundant Matrix4 Class.
5 years ago
inc Remove redundant Matrix4 Class. 5 years ago
source Remove redundant Matrix4 Class. 5 years ago
.gitignore Refactor Accelerometer/Magnetometer code to enable new drivers 5 years ago
AUTHORS microbit-dal: Added AUTHORS, and removed unused CHANGES.md file 7 years ago
LICENSE microbit-dal: Added MIT license information. 7 years ago
README.md Update README.md 7 years ago
module.json Bump to microbit-dal v2.0.0-rc9 6 years ago

README.md

microbit-dal

The core set of drivers, mechanisms and types that make up the micro:bit runtime.

Overview

The micro:bit runtime provides an easy to use environment for programming the BBC micro:bit in the C/C++ language, written by Lancaster University. It contains device drivers for all the hardware capabilities of the micro:bit, and also a suite of runtime mechanisms to make programming the micro:bit easier and more flexible. These range from control of the LED matrix display to peer-to-peer radio communication and secure Bluetooth Low Energy services. The micro:bit runtime is proudly built on the ARM mbed and Nordic nrf51 platforms.

In addition to supporting development in C/C++, the runtime is also designed specifically to support higher level languages provided by our partners that target the micro:bit. It is currently used as a support library for all the languages on the BBC www.microbit.co.uk website, including the Microsoft Block Editor, Microsoft Touch Develop, Code Kingdoms JavaScript and Micropython languages.

micro:bit runtime docs | uBit | samples

Build Environments

Build Environment Documentation
ARM mbed online http://lancaster-university.github.io/microbit-docs/online-toolchains/#mbed
yotta http://lancaster-university.github.io/microbit-docs/offline-toolchains/#yotta

Hello World!

#include "MicroBitDisplay.h"

MicroBitDisplay display;

int main()
{
    display.scroll("Hello world!");
}

BBC Community Guidelines

BBC Community Guidelines