Core51822 module helloworld. BLE disable version.

Dependencies:   microbit_ble_disable

Fork of microbit-samples by BBC

Core51822モジュールでmicro:bitのDAL(Device Abstraction Layer)を使います。

注意

BLE(Bluetooth Low Energy)は無効にしています。

Committer:
va009039
Date:
Sun May 08 09:57:04 2016 +0000
Revision:
8:781a3570993b
use BLE disabled microbit library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 8:781a3570993b 1 #include "MicroBit.h"
va009039 8:781a3570993b 2
va009039 8:781a3570993b 3 MicroBit microbit;
va009039 8:781a3570993b 4
va009039 8:781a3570993b 5 int main() {
va009039 8:781a3570993b 6 microbit.init();
va009039 8:781a3570993b 7 for(;;) {
va009039 8:781a3570993b 8 microbit.display.scroll("Hello,world!");
va009039 8:781a3570993b 9 }
va009039 8:781a3570993b 10 }