pxt-ev3/docs/reference/brick/show-value.md
Peli de Halleux ea956f1a73
Buttons rename (#287)
* renaming up/down/click to released/pressed/bump

* missing images

* fixing signature issue

* updated strings

* white lego logo
2018-01-31 08:28:00 -08:00

879 B

show Value

Show a name-value-pair on the screen at the line you select.

brick.showValue("item", 0, 1);

Name-value-pairs are used to report data values to the screen. If you want to show the current temperature on the screen, you might use "temp" as the data name for the the value.

Parameters

  • name: a string which is the name of the data value.
  • value: a number to show on the brick's screen.
  • line: The line number on the screen where the value is displayed. The line numbers for the screen start with line 1.

Example

Show the current amount of ambient light detected by sensor 2.

brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
    brick.showValue("color", sensors.color2.light(LightIntensityMode.Ambient), 1)
})

See also

show number