2018-01-31 02:02:22 +01:00
|
|
|
# show Image
|
|
|
|
|
|
|
|
Show an image on the brick's display.
|
|
|
|
|
|
|
|
```sig
|
|
|
|
brick.showImage(images.expressionsBigSmile);
|
|
|
|
```
|
|
|
|
You can choose one of several images to show on the display.
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
**image**: A image to show on the brick's display. Use the image picker to choose the image you want to show.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
Show a sleeping image on the brick's display.
|
|
|
|
|
|
|
|
```blocks
|
2018-01-31 05:58:18 +01:00
|
|
|
brick.showImage(images.expressionsZzz)
|
2018-01-31 02:02:22 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## See also
|
|
|
|
|
|
|
|
[show image](/reference/brick/show-mood)
|