pxt-calliope/docs/examples/plot-light-level.md

11 lines
127 B
Markdown
Raw Normal View History

2017-02-09 14:57:38 -08:00
# Plot Light level
2017-02-09 14:44:56 -08:00
```blocks
basic.forever(() => {
led.plotBarGraph(
input.lightLevel(),
255
)
})
```