missing block annotation on led.enable
This commit is contained in:
parent
bb2e8d0aef
commit
354196e01e
@ -131,6 +131,7 @@
|
|||||||
"input.temperature|block": "temperature (°C)",
|
"input.temperature|block": "temperature (°C)",
|
||||||
"input|block": "input",
|
"input|block": "input",
|
||||||
"led.brightness|block": "brightness",
|
"led.brightness|block": "brightness",
|
||||||
|
"led.enable|block": "led enable %on",
|
||||||
"led.plotBarGraph|block": "plot bar graph of %value |up to %high",
|
"led.plotBarGraph|block": "plot bar graph of %value |up to %high",
|
||||||
"led.plot|block": "plot|x %x|y %y",
|
"led.plot|block": "plot|x %x|y %y",
|
||||||
"led.point|block": "point|x %x|y %y",
|
"led.point|block": "point|x %x|y %y",
|
||||||
|
@ -95,7 +95,7 @@ namespace led {
|
|||||||
/**
|
/**
|
||||||
* Turns on or off the display
|
* Turns on or off the display
|
||||||
*/
|
*/
|
||||||
//% help=led/enable blockId=device_led_enable icon="\uf04d"
|
//% help=led/enable blockId=device_led_enable block="led enable %on" icon="\uf04d"
|
||||||
//% advanced=true parts="ledmatrix"
|
//% advanced=true parts="ledmatrix"
|
||||||
void enable(bool on) {
|
void enable(bool on) {
|
||||||
if (on) uBit.display.enable();
|
if (on) uBit.display.enable();
|
||||||
|
2
libs/core/shims.d.ts
vendored
2
libs/core/shims.d.ts
vendored
@ -497,7 +497,7 @@ declare namespace led {
|
|||||||
/**
|
/**
|
||||||
* Turns on or off the display
|
* Turns on or off the display
|
||||||
*/
|
*/
|
||||||
//% help=led/enable blockId=device_led_enable icon="\uf04d"
|
//% help=led/enable blockId=device_led_enable block="led enable %on" icon="\uf04d"
|
||||||
//% advanced=true parts="ledmatrix" shim=led::enable
|
//% advanced=true parts="ledmatrix" shim=led::enable
|
||||||
function enable(on: boolean): void;
|
function enable(on: boolean): void;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user