pxt-calliope/docs/examples/plot-light-level.md
Peli de Halleux 45c82767d0 fixed titles
2017-02-09 14:57:38 -08:00

11 lines
127 B
Markdown

# Plot Light level
```blocks
basic.forever(() => {
led.plotBarGraph(
input.lightLevel(),
255
)
})
```