pxt-calliope/libs/core/basic.cpp

134 lines
3.9 KiB
C++
Raw Permalink Normal View History

2016-11-30 06:55:37 +01:00
#include "pxt.h"
2016-03-30 02:11:17 +02:00
2016-03-10 23:01:04 +01:00
/**
* Provides access to basic micro:bit functionality.
*/
//% color=#1E90FF weight=116 icon="\uf00a"
2016-03-10 23:01:04 +01:00
namespace basic {
/**
2016-10-11 20:41:51 +02:00
* Sets the color on the build-in LED. Set to 0 to turn off.
*/
//% blockId=device_set_led_color
//% block="set led to %color=colorNumberPicker"
2016-10-11 20:41:51 +02:00
//% weight=50
void setLedColor(int color) {
if (!color) {
2016-10-12 17:54:25 +02:00
uBit.rgb.off();
2016-10-11 20:41:51 +02:00
return;
}
int w = (color >> 24) & 0xFF;
int r = (color >> 16) & 0xFF;
int g = (color >> 8) & 0xFF;
int b = (color) & 0xFF;
2016-10-12 17:54:25 +02:00
uBit.rgb.setColour(r,g,b,w);
2016-10-11 20:41:51 +02:00
}
2016-03-10 23:01:04 +01:00
2016-03-10 23:01:04 +01:00
/**
* Sets the color on the build-in LED. Set to 0 to turn off.
*/
//% blockId=device_turn_rgb_led_off block="turn build-in LED off"
//% weight=50
void turnRgbLedOff() {
uBit.rgb.off();
2016-03-30 02:11:17 +02:00
}
2016-03-10 23:01:04 +01:00
/**
* Draws an image on the LED screen.
2016-06-14 15:30:07 +02:00
* @param leds the pattern of LED to turn on/off
* @param interval time in milliseconds to pause after drawing
2016-03-10 23:01:04 +01:00
*/
//% help=basic/show-leds
2016-03-10 23:01:04 +01:00
//% weight=95 blockGap=8
//% imageLiteral=1 async
//% blockId=device_show_leds
//% block="show leds" icon="\uf00a"
//% parts="ledmatrix"
void showLeds(ImageLiteral_ leds, int interval = 400) {
2016-04-02 22:44:29 +02:00
uBit.display.print(MicroBitImage(imageBytes(leds)), 0, 0, 0, interval);
2016-03-30 02:11:17 +02:00
}
2016-03-10 23:01:04 +01:00
/**
* Display text on the display, one character at a time. If the string fits on the screen (i.e. is one letter), does not scroll.
* @param text the text to scroll on the screen, eg: "hi!"
2016-03-10 23:01:04 +01:00
* @param interval how fast to shift characters; eg: 150, 100, 200, -100
*/
//% help=basic/show-string
//% weight=87 blockGap=16
//% block="show|string %text"
2016-03-10 23:01:04 +01:00
//% async
//% blockId=device_print_message
//% parts="ledmatrix"
//% text.shadowOptions.toString=true
void showString(String text, int interval = 150) {
if (interval <= 0)
interval = 1;
int l = text ? text->getUTF8Size() : 0;
2016-03-30 02:11:17 +02:00
if (l == 0) {
uBit.display.clear();
fiber_sleep(interval * 5);
2016-03-30 02:11:17 +02:00
} else if (l > 1) {
uBit.display.scroll(MSTR(text), interval);
2016-03-30 02:11:17 +02:00
} else {
uBit.display.printChar(text->getUTF8Data()[0], interval * 5);
2016-03-30 02:11:17 +02:00
}
}
2016-03-10 23:01:04 +01:00
/**
* Turn off all LEDs
*/
2016-03-22 06:13:39 +01:00
//% help=basic/clear-screen weight=79
2017-01-20 05:55:31 +01:00
//% blockId=device_clear_display block="clear screen"
//% parts="ledmatrix"
//% advanced=true
2016-03-30 02:11:17 +02:00
void clearScreen() {
uBit.display.image.clear();
}
2016-03-10 23:01:04 +01:00
/**
* Shows a sequence of LED screens as an animation.
2016-06-14 15:30:07 +02:00
* @param leds pattern of LEDs to turn on/off
* @param interval time in milliseconds between each redraw
2016-03-10 23:01:04 +01:00
*/
2016-04-02 06:26:06 +02:00
//% help=basic/show-animation imageLiteral=1 async
//% parts="ledmatrix"
void showAnimation(ImageLiteral_ leds, int interval = 400) {
uBit.display.animate(MicroBitImage(imageBytes(leds)), interval, 5, 0, 0);
2016-03-30 02:11:17 +02:00
}
2016-03-10 23:01:04 +01:00
/**
* Draws an image on the LED screen.
2016-06-14 15:30:07 +02:00
* @param leds pattern of LEDs to turn on/off
2016-03-10 23:01:04 +01:00
*/
2016-04-02 06:26:06 +02:00
//% help=basic/plot-leds weight=80
//% parts="ledmatrix"
void plotLeds(ImageLiteral_ leds) {
2016-04-02 22:44:29 +02:00
MicroBitImage i(imageBytes(leds));
2016-03-30 02:11:17 +02:00
uBit.display.print(i, 0, 0, 0, 0);
}
2016-03-10 23:01:04 +01:00
/**
* Repeats the code forever in the background. On each iteration, allows other codes to run.
2016-06-14 15:30:07 +02:00
* @param body code to execute
2016-03-10 23:01:04 +01:00
*/
//% help=basic/forever weight=55 blockGap=16 blockAllowMultiple=1 afterOnStart=true
//% blockId=device_forever block="forever" icon="\uf01e"
2016-03-30 02:11:17 +02:00
void forever(Action a) {
runForever(a);
2016-03-30 02:11:17 +02:00
}
2016-03-10 23:01:04 +01:00
/**
* Pause for the specified time in milliseconds
* @param ms how long to pause for, eg: 100, 200, 500, 1000, 2000
*/
2016-03-22 06:13:39 +01:00
//% help=basic/pause weight=54
//% async block="pause (ms) %pause" blockGap=16
//% blockId=device_pause icon="\uf110"
//% pause.shadow=timePicker
2016-03-30 02:11:17 +02:00
void pause(int ms) {
fiber_sleep(ms);
2016-03-30 02:11:17 +02:00
}
}