pxt-calliope/libs/microbit/control.ts
2016-03-10 14:01:04 -08:00

14 lines
363 B
TypeScript

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