pxt-calliope/docs/reference/led/set-display-mode.md
Chase Mortensen 1eec659894
Fix Black and White Typo (#2138)
* Fixed typo: Back->Black

* Added Upgrade Rules to fix spelling

* Removed extra isEmpty

* Added previous BackAndWhite to allow for compilation of old scripts
2019-06-07 15:54:58 -07:00

820 B

set Display Mode

Set the display mode to either black and white or greyscale for rendering LEDs.

led.setDisplayMode(DisplayMode.Greyscale)

The LED screen can create a sense of color depth with the display mode setting. Color depth is the difference in darkness between the pixels in the display. The greyscale mode makes the pixels appear to have some amount of brightness to represent the grey value of real color. The black and white mode just shows an image on the pixels with the LEDs either on or off.

Parameters

  • mode the display mode type. This is either BlackAndWhite or GreyScale.

Example

Set the display mode to black and white.

led.setDisplayMode(DisplayMode.BlackAndWhite)

See also

set brightness