pxt-calliope/libs/microbit/input.ts

48 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-03-10 23:01:04 +01:00
//% color=300 weight=99
namespace input {
/**
* Attaches code to run when the screen is facing up.
* @param body TODO
*/
2016-03-22 06:13:39 +01:00
//% help=input/on-screen-up
2016-03-10 23:01:04 +01:00
export function onScreenUp(body: Action): void {
onGesture(Gesture.ScreenUp, body);
2016-03-10 23:01:04 +01:00
}
/**
* Attaches code to run when the screen is facing down.
* @param body TODO
*/
2016-03-22 06:13:39 +01:00
//% help=input/on-screen-down
2016-03-10 23:01:04 +01:00
export function onScreenDown(body: Action): void {
onGesture(Gesture.ScreenDown, body);
2016-03-10 23:01:04 +01:00
}
/**
* Attaches code to run when the device is shaken.
* @param body TODO
*/
2016-03-22 06:13:39 +01:00
//% help=input/on-shake
2016-03-10 23:01:04 +01:00
export function onShake(body: Action): void {
onGesture(Gesture.Shake, body);
2016-03-10 23:01:04 +01:00
}
/**
* Attaches code to run when the logo is oriented upwards and the board is vertical.
* @param body TODO
*/
2016-03-22 06:13:39 +01:00
//% help=input/on-logo-up
2016-03-10 23:01:04 +01:00
export function onLogoUp(body: Action): void {
onGesture(Gesture.LogoUp, body);
2016-03-10 23:01:04 +01:00
}
/**
* Attaches code to run when the logo is oriented downwards and the board is vertical.
* @param body TODO
*/
2016-03-22 06:13:39 +01:00
//% help=input/on-logo-down
2016-03-10 23:01:04 +01:00
export function onLogoDown(body: Action): void {
onGesture(Gesture.LogoDown, body);
2016-03-10 23:01:04 +01:00
}
}