pxt-calliope/libs/microbit/control.ts
2016-03-21 22:13:39 -07:00

14 lines
359 B
TypeScript

namespace control {
/**
* Schedules code that run in the background.
//% help=control/in-background shim=micro_bit::runInBackground
*/
export function inBackground(body: Action): void { }
/**
* Resets the BBC micro:bit.
*/
//% weight=1 shim=uBit.reset async help=control/reset
export function reset() : void { }
}